diff --git a/app/Home.py b/app/Home.py index 304a4d5..1aa91c9 100644 --- a/app/Home.py +++ b/app/Home.py @@ -49,103 +49,99 @@ def fetch_and_update_data(bypass_cash=False): cameras = fetch_and_update_data(bypass_cash=True) st.success("Data updated successfully!") -cameras_attr, cameras_identifications = treat_data(cameras) -col1, col2 = st.columns(2) - -with col1: - objects = cameras_identifications["object"].unique().tolist() - objects.sort() - # dropdown to filter by object - object_filter = st.selectbox( - "Filtrar por objeto", - objects, - index=objects.index(DEFAULT_OBJECT), - ) +cameras_identifications = treat_data(cameras) +if len(cameras_identifications) > 0: -with col2: - labels = ( - cameras_identifications[ - cameras_identifications["object"] == object_filter - ][ # noqa - "label" - ] - .dropna() - .unique() - .tolist() - ) - labels_default = labels.copy() - - # if object_filter == "road_blockade": - # labels_default.remove("normal") - # dropdown to select label given selected object - label_filter = st.multiselect( - "Filtrar por label", - labels, - # if object_filter return minor and major, else return all labels - default=labels_default, - ) - - -( - cameras_identifications_merged, - cameras_filter, - cameras_identifications_filter, -) = get_filted_cameras_objects( - cameras_attr, cameras_identifications, object_filter, label_filter -) + col1, col2 = st.columns(2) - -# make two cols -col1, col2 = st.columns(2) -folium_map = create_map(cameras_identifications_merged.reset_index()) - -with col1: - selected_cols = [ - "index", - "id", - "object", - "label", - "timestamp", - "snapshot_timestamp", - "bairro", - "old_snapshot", - ] - aggrid_table = cameras_identifications_merged.reset_index() - - aggrid_table["index"] = aggrid_table["label"].apply( - lambda label: get_icon_color(label=label, type="emoji") - ) - aggrid_table = aggrid_table[selected_cols] - # aggrid_table = aggrid_table[selected_cols] - st.markdown("### 📈 Identificações") - selected_row = display_agrid_table(aggrid_table) # noqa - -with col2: - if selected_row: - camera_id = selected_row[0]["id"] - row = cameras_filter.loc[camera_id] - - camera_location = [row["latitude"], row["longitude"]] - folium_map = create_map( - cameras_identifications_merged.reset_index(), - location=camera_location, # noqa + with col1: + objects = cameras_identifications["object"].unique().tolist() + objects.sort() + # dropdown to filter by object + object_filter = st.selectbox( + "Filtrar por objeto", + objects, + index=objects.index(DEFAULT_OBJECT), ) - display_camera_details( - row=row, cameras_identifications=cameras_identifications - ) # noqa - else: - st.markdown( - """ - ### 📷 Câmera snapshot - Selecione uma Câmera na tabela para visualizar mais detalhes. - """ + with col2: + labels = ( + cameras_identifications[ + cameras_identifications["object"] == object_filter + ][ # noqa + "label" + ] + .dropna() + .unique() + .tolist() + ) + labels_default = labels.copy() + + # if object_filter == "road_blockade": + # labels_default.remove("normal") + # dropdown to select label given selected object + label_filter = st.multiselect( + "Filtrar por label", + labels, + # if object_filter return minor and major, else return all labels + default=labels_default, ) -with col1: - st.markdown("### 📍 Mapa") - st_folium(folium_map, key="fig1", height=600, width="100%") + cameras_identifications_filter = get_filted_cameras_objects( + cameras_identifications, object_filter, label_filter + ) + # make two cols + col1, col2 = st.columns(2) + folium_map = create_map(cameras_identifications_filter) + + with col1: + selected_cols = [ + "index", + "id", + "object", + "label", + "timestamp", + "snapshot_timestamp", + "bairro", + ] + aggrid_table = cameras_identifications_filter.copy() + aggrid_table["index"] = aggrid_table["label"].apply( + lambda label: get_icon_color(label=label, type="emoji") + ) + aggrid_table = aggrid_table[selected_cols] + # aggrid_table = aggrid_table[selected_cols] + st.markdown("### 📈 Identificações") + selected_row = display_agrid_table(aggrid_table) # noqa + + with col2: + if selected_row: + camera_id = selected_row[0]["id"] + row = cameras_identifications_filter[ + cameras_identifications_filter["id"] == camera_id + ] + # get first row + row = row.head(1).to_dict("records")[0] + camera_location = [row["latitude"], row["longitude"]] + folium_map = create_map( + cameras_identifications_filter, + location=camera_location, # noqa + ) + + display_camera_details( + row=row, cameras_identifications=cameras_identifications + ) # noqa + else: + st.markdown( + """ + ### 📷 Câmera snapshot + Selecione uma Câmera na tabela para visualizar mais detalhes. + """ + ) + + with col1: + st.markdown("### 📍 Mapa") + st_folium(folium_map, key="fig1", height=600, width="100%") # for camera_id in cameras_identifications_filter.index: # row = cameras_filter.loc[camera_id] @@ -153,3 +149,5 @@ def fetch_and_update_data(bypass_cash=False): # row=row, cameras_identifications=cameras_identifications # ) # time.sleep(2) +else: + st.error("No cameras with identifications") diff --git a/app/utils/utils.py b/app/utils/utils.py index ad22b81..1896fd3 100644 --- a/app/utils/utils.py +++ b/app/utils/utils.py @@ -4,7 +4,6 @@ from typing import Union import folium -import numpy as np import pandas as pd import streamlit as st from st_aggrid import GridOptionsBuilder # noqa @@ -137,20 +136,18 @@ def get_prompts_cache(page_size=100, timeout=120): def treat_data(response): cameras_aux = pd.read_csv("./data/database/cameras_aux.csv", dtype=str) - cameras_aux = cameras_aux.rename(columns={"id_camera": "id"}).set_index( - "id" - ) # noqa - # To dataframe - cameras = pd.DataFrame(response).set_index("id") + + cameras_aux = cameras_aux.rename(columns={"id_camera": "camera_id"}) + cameras = pd.DataFrame(response) + cameras = cameras.rename(columns={"id": "camera_id"}) cameras = cameras[cameras["identifications"].apply(lambda x: len(x) > 0)] - cameras["snapshot_timestamp"] = pd.to_datetime( - cameras["snapshot_timestamp"] - ).dt.tz_convert("America/Sao_Paulo") + if len(cameras) == 0: + return None, None + cameras = cameras.merge(cameras_aux, on="camera_id", how="left") - cameras = cameras.sort_values(by=["snapshot_timestamp"]) - cameras = cameras.merge(cameras_aux, on="id", how="left") cameras_attr = cameras[ [ + "camera_id", "bairro", "subprefeitura", "name", @@ -158,8 +155,8 @@ def treat_data(response): # "update_interval", "latitude", "longitude", - "snapshot_url", - "snapshot_timestamp", + "identifications", + # "snapshot_url", # "id_h3", # "id_bolsao", # "bolsao_latitude", @@ -170,19 +167,38 @@ def treat_data(response): # "geometry_bolsao_buffer_0.002", ] ] - exploded_df = cameras.explode("identifications") - cameras_identifications = pd.DataFrame( - exploded_df["identifications"].tolist(), index=exploded_df.index + + cameras_identifications_explode = explode_df( + cameras_attr, "identifications" + ) # noqa + + cameras_identifications_explode = cameras_identifications_explode.rename( + columns={"id": "object_id"} + ).rename(columns={"camera_id": "id"}) + cameras_identifications_explode = cameras_identifications_explode.rename( + columns={ + "snapshot.id": "snapshot_id", + "snapshot.camera_id": "snapshot_camera_id", + "snapshot.image_url": "snapshot_url", + "snapshot.timestamp": "snapshot_timestamp", + } ) - cameras_identifications["timestamp"] = pd.to_datetime( - cameras_identifications["timestamp"] + cameras_identifications_explode["timestamp"] = pd.to_datetime( + cameras_identifications_explode["timestamp"] + ).dt.tz_convert("America/Sao_Paulo") + + cameras_identifications_explode["snapshot_timestamp"] = pd.to_datetime( + cameras_identifications_explode["snapshot_timestamp"] ).dt.tz_convert("America/Sao_Paulo") - cameras_identifications = cameras_identifications.sort_values( - ["timestamp", "label"], ascending=False + + cameras_identifications_explode = ( + cameras_identifications_explode.sort_values( # noqa + ["timestamp", "label"], ascending=False + ) ) - return cameras_attr, cameras_identifications + return cameras_identifications_explode def explode_df(dataframe, column_to_explode, prefix=None): @@ -212,40 +228,20 @@ def get_objetcs_labels_df(objects, keep_null=False): def get_filted_cameras_objects( - cameras_attr, cameras_identifications, object_filter, label_filter -): + cameras_identifications, object_filter, label_filter +): # noqa # filter both dfs by object and label - cameras_filter = cameras_attr[ - cameras_attr.index.isin( - cameras_identifications[ - cameras_identifications["object"] == object_filter - ].index - ) - ] cameras_identifications_filter = cameras_identifications[ (cameras_identifications["object"] == object_filter) & (cameras_identifications["label"].isin(label_filter)) ] - # show cameras dfs - cameras_identifications_merged = pd.merge( - cameras_filter, cameras_identifications_filter, on="id" - ) - cameras_identifications_merged = cameras_identifications_merged.sort_values( # noqa + cameras_identifications_filter = cameras_identifications_filter.sort_values( # noqa by=["timestamp", "label"], ascending=False ) - cameras_identifications_merged["old_snapshot"] = np.where( - cameras_identifications_merged["snapshot_timestamp"] - > cameras_identifications_merged["timestamp"], - "Sim", - "Não", - ) - return ( - cameras_identifications_merged, - cameras_filter, - cameras_identifications_filter, - ) + + return cameras_identifications_filter def get_icon_color(label: Union[bool, None], type=None): @@ -335,10 +331,10 @@ def create_map(chart_data, location=None): def display_camera_details(row, cameras_identifications): - camera_id = row.name + camera_id = row["id"] image_url = row["snapshot_url"] camera_name = row["name"] - snapshot_timestamp = row["snapshot_timestamp"].strftime("%d/%m/%Y %H:%M") # noqa + # snapshot_timestamp = row["snapshot_timestamp"].strftime("%d/%m/%Y %H:%M") # noqa st.markdown(f"### 📷 Camera snapshot") # noqa st.markdown(f"Endereço: {camera_name}") @@ -355,8 +351,10 @@ def display_camera_details(row, cameras_identifications): st.markdown("
", unsafe_allow_html=True) st.markdown("### 📃 Detalhes") + camera_identifications = cameras_identifications[ + cameras_identifications["id"] == camera_id + ] # noqa - camera_identifications = cameras_identifications.loc[camera_id] # noqa camera_identifications = camera_identifications.reset_index(drop=True) camera_identifications[""] = camera_identifications["label"].apply( @@ -411,7 +409,7 @@ def display_agrid_table(table): wrapText=True, hide=True, ) - gb.configure_column("old_snapshot", header_name="Predição Desatualizada") + # gb.configure_column("old_snapshot", header_name="Predição Desatualizada") gb.configure_side_bar() gb.configure_selection("single", use_checkbox=False) gb.configure_grid_options(enableCellTextSelection=True) diff --git a/data/temp/mock_api_data.json b/data/temp/mock_api_data.json index 3bfdf62..de60ac1 100644 --- a/data/temp/mock_api_data.json +++ b/data/temp/mock_api_data.json @@ -1 +1 @@ -[{"id": "000001", "name": "AV. PRES. VARGAS X RUA 1\u00ba DE MAR\u00c7O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.900259, "longitude": -43.177031, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000002", "name": "AV. PRES. VARGAS X AV. RIO BRANCO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901392, "longitude": -43.179391, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000002.png", "snapshot_timestamp": "2024-02-10T00:55:35.896041+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "traffic_ease_vehicle", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:55:51.327614+00:00", "label": "false", "label_explanation": "There is no water visible on the road. The road surface is dry and clear."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:52.007095+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road. The road is clear and free of any blockages."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:50.877006+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear accurate, and there are no large areas of uniform color. There is some motion blur in the image, but it does not significantly affect the overall quality."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:51.807242+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are no obstructions on the road, and the traffic flow is likely to be smooth."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:51.085736+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road at night. The road is divided into multiple lanes, separated by a median. There are trees and buildings on either side of the road. The road is lit by streetlights. There are no cars or people visible in the image."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:51.581661+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road, so the water level is low."}]}, {"id": "000003", "name": "AV. PRES. VARGAS X P\u00c7A DA REP\u00daBLICA", "rtsp_url": "rtsp://admin2:7lanmstr@10.52.16.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904902, "longitude": -43.190353, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000005", "name": "AV. RIO BRANCO X AV. BEIRA MAR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913741, "longitude": -43.174155, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000006", "name": "AV. RIO BRANCO X AV. ALMIRANTE BARROSO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908029, "longitude": -43.176985, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000007", "name": "AV. 20 DE JANEIRO X BASE DA GUARDA MUNICIPAL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.815593, "longitude": -43.242096, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000008", "name": "R. VISCONDE DO RIO BRANCO X R. DOS INV\u00c1LIDOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908246, "longitude": -43.186069, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000009", "name": "AV. PRES. ANT\u00d4NIO CARLOS X AV. ALMIRATE BARROSO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906766, "longitude": -43.172901, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000010", "name": "RUA SANTANA X RUA FREI CANECA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911155, "longitude": -43.193351, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000010.png", "snapshot_timestamp": "2024-02-10T00:55:22.182647+00:00", "objects": ["water_in_road", "image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:55:38.302520+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:38.024593+00:00", "label": "null", "label_explanation": "The image shows a busy intersection in Rio de Janeiro at night. There are cars, motorcycles, and people crossing the intersection. The traffic lights are green for both directions. There is a yellow taxi in the foreground, and a police officer is directing traffic. There are also some trees and buildings in the background."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:53.337477+00:00", "label": "free", "label_explanation": "The road is completely free of obstructions, with no blockages or disruptions to traffic flow."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:44.987787+00:00", "label": "easy", "label_explanation": "The road is dry and free of obstructions, allowing for easy vehicle movement."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:37.631236+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:38.502249+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}]}, {"id": "000011", "name": "LARGO DO EST\u00c1CIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913996, "longitude": -43.204558, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000012", "name": "RUA DAS LARANJEIRAS X RUA SOARES CABRAL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93456, "longitude": -43.187492, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000013", "name": "PRAIA DE BOTAGO X VIADUTO SANTIAGO DANTAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.943196, "longitude": -43.18166, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000014", "name": "RUA S\u00c3O CLEMENTE X RUA MUNIZ DE BARRETO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94935, "longitude": -43.184177, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000015", "name": "RUA S\u00c3O CLEMENTE X CONSULADO PORTUGU\u00caS", "rtsp_url": "rtsp://admin:cor12345@10.52.11.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952073, "longitude": -43.19582, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000016", "name": "RUA JARDIM BOT\u00c2NICO (PR\u00d3XIMO AO PARQUE LAGE)", "rtsp_url": "rtsp://10.52.37.131/016-VIDEO", "update_interval": 120, "latitude": -22.961257, "longitude": -43.212939, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000017", "name": "AV. BORGES DE MEDEIROS X AV. EPIT\u00c1CIO PESSOA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963021, "longitude": -43.204446, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000018", "name": "RUA M\u00c1RIO RIBEIRO X AV. BORGES DE MEDEIROS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976902, "longitude": -43.21908, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000019", "name": "RUA VOLUNT\u00c1RIOS DA P\u00c1TRIA X RUA REAL GRANDEZA", "rtsp_url": "rtsp://user:7lanmstr@10.52.210.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954405, "longitude": -43.192948, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000020", "name": "ATERRO X AV. OSWALDO CRUZ", "rtsp_url": "rtsp://admin:admin@10.52.35.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.942467, "longitude": -43.178155, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000021", "name": "PRA\u00c7A DA BANDEIRA", "rtsp_url": "rtsp://admin:admin@10.52.36.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910919, "longitude": -43.213874, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000022", "name": "AV. REI PEL\u00c9 X RUA RADIALISTA WALDIR AMARAL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910177, "longitude": -43.233605, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000023", "name": "RUA BARATA RIBEIRO X RUA DUVIVIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963906, "longitude": -43.178505, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000024", "name": "AV. NOSSA SRA. DE COPACABANA X RUA RONALD DE CARVALHO", "rtsp_url": "rtsp://10.52.23.132/024-VIDEO", "update_interval": 120, "latitude": -22.965117, "longitude": -43.176944, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000025", "name": "AV. ATL\u00c2NTICA X AV. PRINCESA ISABEL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964967, "longitude": -43.173588, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000026", "name": "AV. ATL\u00c2NTICA X RUA FIGUEIREDO DE MAGALH\u00c3ES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971867, "longitude": -43.184628, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000027", "name": "AV. NOSSA SRA. DE COPACABANA X RUA SANTA CLARA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.234/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971621, "longitude": -43.18743, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000028", "name": "AV. ATL\u00c2NTICA X RUA RAINHA ELIZABETH", "rtsp_url": "rtsp://admin:7LANMSTR@10.52.21.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984335, "longitude": -43.189473, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000029", "name": "CORTE DO CANTAGALO X PRA\u00c7A EUG\u00caNIO JARDIM", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.211/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976515, "longitude": -43.194135, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000030", "name": "RUA RAUL POMP\u00c9IA X RUA FRANCISCO OTAVIANO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986985, "longitude": -43.190727, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000031", "name": "AV. VIEIRA SOUTO X RUA RAINHA ELIZABETH", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986892, "longitude": -43.197786, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000032", "name": "AV. EPIT\u00c1CIO PESSOA X RUA MARIA QUIT\u00c9RIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980723, "longitude": -43.207148, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000033", "name": "AV. DELFIM MOREIRA X RUA BARTOLOMEU MITRE", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98707169, "longitude": -43.22232705, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000033.png", "snapshot_timestamp": "2024-02-10T00:58:21.157844+00:00", "objects": ["road_blockade", "image_condition", "traffic_ease_vehicle", "image_description", "water_in_road", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:55:52.576302+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:51.256122+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there are no large areas of uniform color."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:52.359111+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:51.470581+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a clear view of the surroundings. The road is lined with trees and buildings, and there is a significant amount of traffic, including cars, buses, and pedestrians. The weather is clear, and the sun is shining brightly. There is a green area to the left of the road, which may be a park or a garden."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:51.747672+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:52.098113+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road surface is dry and clear."}]}, {"id": "000034", "name": "RUA VISCONDE DE PIRAJ\u00c1 X RUA GOMES CARNEIRO.", "rtsp_url": "rtsp://10.52.22.144/axis-media/media.amp", "update_interval": 120, "latitude": -22.98483, "longitude": -43.195183, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000035", "name": "RUA BARATA RIBEIRO X RUA CONSTANTE RAMOS", "rtsp_url": "rtsp://admin:admin@10.52.22.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.972881, "longitude": -43.190783, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000037", "name": "ESTR. DO GALE\u00c3O - BASE A\u00c9REA ILHA - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8282255, "longitude": -43.23496326, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000038", "name": "RUA TEIXEIRA DE CASTRO X AV. DOS CAMPE\u00d5ES - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.855061, "longitude": -43.251987, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000039", "name": "AV. PRES. ANT\u00d4NIO CARLOS X AV. FRANKLIN ROOSEVELT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910115, "longitude": -43.171723, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000040", "name": "PRA\u00c7A TIRADENTES", "rtsp_url": "rtsp://admin:admin@10.52.17.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906984, "longitude": -43.182051, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000041", "name": "AV. MEM DE S\u00c1, 30 - ARCOS DA LAPA | AQUEDUTO DA CARIOCA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913628, "longitude": -43.178807, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000042", "name": "RUA PRAIA DO FLAMENGO X RUA BAR\u00c3O DO FLAMENGO", "rtsp_url": "rtsp://10.52.14.143/042-VIDEO", "update_interval": 120, "latitude": -22.933241, "longitude": -43.174673, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000043", "name": "RUA HUMAIT\u00c1 X RUA MACEDO SOBRINHO", "rtsp_url": "rtsp://10.52.12.141/043-VIDEO", "update_interval": 120, "latitude": -22.957511, "longitude": -43.199065, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000044", "name": "RUA JARDIM BOT\u00c2NICO X RUA PACHECO LE\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96639, "longitude": -43.219492, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000045", "name": "PRA\u00c7A SIB\u00c9LIUS", "rtsp_url": "rtsp://admin:admin@10.52.37.187/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978488, "longitude": -43.226668, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000046", "name": "RUA VOLUNT\u00c1RIOS DA P\u00c1TRIA X RUA PRAIA DE BOTAFOGO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950509, "longitude": -43.181605, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000047", "name": "AV. LAURO SODR\u00c9 X R. GENERAL GOIS MONTEIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955582, "longitude": -43.178137, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000048", "name": "AV. MARACAN\u00c3 X RUA EURICO RABELO", "rtsp_url": "rtsp://admin:admin@10.52.252.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915067, "longitude": -43.228917, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000049", "name": "RUA BARATA RIBEIRO X RUA SIQUEIRA CAMPOS", "rtsp_url": "rtsp://10.52.39.135/049-VIDEO", "update_interval": 120, "latitude": -22.968321, "longitude": -43.185329, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000050", "name": "AV. N. SRA. DE COPACABANA X R. ALMIRANTE GON\u00c7ALVES", "rtsp_url": "rtsp://admin:cor12345@10.52.21.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979945, "longitude": -43.191186, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000051", "name": "R. VISCONDE DE PIRAJ\u00c1 X R. MARIA QUIT\u00c9RIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984059, "longitude": -43.207227, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000052", "name": "R. ATAULFO DE PAIVA X R. AFR\u00c2NIO DE MELO FRANCO", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983772, "longitude": -43.218038, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000052.png", "snapshot_timestamp": "2024-02-10T00:55:25.022674+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "image_condition", "image_description", "road_blockade", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:44.982058+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are no obstructions on the road, and traffic is flowing smoothly."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:38.449556+00:00", "label": "false", "label_explanation": "There is no water on the road surface. The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:38.023422+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:38.246873+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are a few trees on either side of the road. There is very little traffic on the road, with only a few cars parked on the side of the road. The street is in good condition, with no visible signs of damage or wear and tear."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:53.314441+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades. Traffic is flowing smoothly in both directions."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:38.654925+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road's surface. The road is completely dry."}]}, {"id": "000053", "name": "AV. PRESIDENTE WILSON X AV. CAL\u00d3GERAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911375, "longitude": -43.173341, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000054", "name": "AV. EMBAIXADOR ABELARDO BUENO X ESTR. CEL. PEDRO CORREA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973309, "longitude": -43.385863, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000055", "name": "AV. NELSON CARDOSO X ESTRADA DOS BANDEIRANTES - BRT", "rtsp_url": "rtsp://admin:admin@10.50.106.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923148, "longitude": -43.373789, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000056", "name": "MONUMENTO DRUMMOND - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9845679, "longitude": -43.18959278, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000057", "name": "AV. AYRTON SENNA X R. ABELARDO BUENO", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.122/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973546, "longitude": -43.364096, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000058", "name": "AV. AYRTON SENNA X VIA PARQUE DA LOGOA DA TIJUCA", "rtsp_url": "rtsp://admin:admin@10.50.106.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984825, "longitude": -43.365726, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000059", "name": "AV. AYRTON SENNA X HOSPITAL LOUREN\u00c7O JORGE", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.995624, "longitude": -43.365883, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000060", "name": "AV. AYRTON SENNA X AV. L\u00daCIO COSTA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.84/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.010777, "longitude": -43.365974, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000061", "name": "AV. L\u00daCIO COSTA X POSTO 5", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.234/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.010846, "longitude": -43.33168999, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000062", "name": "AV. SERNAMBETIBA X PRA\u00c7A DO \u00d3", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012976, "longitude": -43.31833, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000063", "name": "AV. DAS AM\u00c9RICAS X R. FELIC\u00cdSSIMO CARDOSO", "rtsp_url": "rtsp://admin:admin@10.50.106.70/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000096, "longitude": -43.353792, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000064", "name": "AV. AM\u00c9RICAS X ESTA\u00c7\u00c3O BRT AFR\u00c2NIO COSTA", "rtsp_url": "rtsp://admin:admin@10.50.106.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000824, "longitude": -43.331445, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000065", "name": "AV. AM\u00c9RICAS X ESTA\u00c7\u00c3O BRT BOSQUE MARAPENDI", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.003304, "longitude": -43.32392, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000066", "name": "R. ARMANDO LOMBARDI X AV. MIN. IVAN LINS", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.007514, "longitude": -43.304474, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000067", "name": "PRAIA DE S\u00c3O CONRADO X AV. PROF. MENDES DE MORAIS", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.999993, "longitude": -43.269206, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000068", "name": "AUTOESTRADA LAGOA-BARRA EM FRENTE SHOPPING FASHION MALL", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.996514, "longitude": -43.260427, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000069", "name": "AV. REI PEL\u00c9 X R. GENERAL CANABARRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910167, "longitude": -43.22163, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000070", "name": "R. PEREIRA NUNES X R. BAR\u00c3O DE MESQUITA", "rtsp_url": "rtsp://10.50.224.151/070-VIDEO", "update_interval": 120, "latitude": -22.924089, "longitude": -43.236241, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000071", "name": "S\u00c3O FRANCISCO XAVIER X HEITOR BELTR\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.27.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920765, "longitude": -43.222661, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000072", "name": "R. CONDE DE BONFIM X R. URUGUAI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.932703, "longitude": -43.241217, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000073", "name": "R. CONDE DE BONFIM X R. GENERAL ROCCA", "rtsp_url": "rtsp://admin:cor12345@10.52.208.230/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.924669, "longitude": -43.233547, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000074", "name": "BOULEVARD 28 DE SETEMBRO X R. FELIPE CAMAR\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913827, "longitude": -43.235707, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000075", "name": "R. URUGUAI X R. MAXWELL", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.922275, "longitude": -43.247679, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000077", "name": "R. TEODORO DA SILVA X R. BAR\u00c3O DE S\u00c3O FRANCISCO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9186, "longitude": -43.251042, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000078", "name": "AV. REI PEL\u00c9 X R. S\u00c3O FRANCISCO XAVIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908611, "longitude": -43.238374, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000079", "name": "R. TEODORO DA SILVA X R. ALEXANDRE CALAZA", "rtsp_url": "rtsp://admin:cor123@10.52.26.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920197, "longitude": -43.25966, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000080", "name": "AV. MARECHAL RONDOM X R. BAR\u00c3O DO BOM RETIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.905136, "longitude": -43.269896, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000082", "name": "R. 24 DE MAIO X R. C\u00d4NEGO TOBIAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90246088, "longitude": -43.27744961, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000083", "name": "R. ARQUIAS CORDEIRO X R. JOS\u00c9 DOS REIS (ENGENH\u00c3O)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895252, "longitude": -43.295713, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000085", "name": "R. DIAS DA CRUZ X R. ANA BARBOSA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902057, "longitude": -43.280339, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000086", "name": "R. DIAS DA CRUZ X R. MARANH\u00c3O", "rtsp_url": "rtsp://10.52.210.126/086-VIDEO", "update_interval": 120, "latitude": -22.905236, "longitude": -43.292852, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000087", "name": "R. AMARO CAVALCANTI X VIADUTO DE TODOS OS SANTOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897278, "longitude": -43.285727, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000088", "name": "R. ARISTIDES CAIRE X R. SANTA F\u00c9", "rtsp_url": "rtsp://10.52.209.99/088-VIDEO", "update_interval": 120, "latitude": -22.899336, "longitude": -43.278542, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000089", "name": "AV. DOM HELDER C\u00c2MARA X VIADUTO CRIST\u00d3V\u00c3O COLOMBO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.883491, "longitude": -43.291715, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000090", "name": "AV. DOM HELDER C\u00c2MARA X R. GONZAGA DE CAMPOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887579, "longitude": -43.285181, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000092", "name": "AV. BRASIL X VIADUTO ATAULFO ALVES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887434, "longitude": -43.23249, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000093", "name": "R. SENADOR BERNARDO MONTEIRO X R. S\u00c3O LUIZ GONZAGA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892969, "longitude": -43.239578, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000094", "name": "LARGO DA CANCELA X R. S\u00c3O LUIZ GONZAGA", "rtsp_url": "rtsp://admin:admin@10.52.210.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90029, "longitude": -43.225348, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000095", "name": "R. PINHEIRO MACHADO ALTURA DA R. CARLOS DE CAMPOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93909, "longitude": -43.183244, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000096", "name": "R. PINHEIRO MACHADO ALTURA DA R. DAS LARANJEIRAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933196, "longitude": -43.184628, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000096.png", "snapshot_timestamp": "2024-02-10T00:55:38.547559+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "road_blockade", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:58.849687+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are cars and a motorcycle on the road, and they are all moving at a normal speed. The road is also clear of any obstructions, so traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:53.359791+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there are no large areas of uniform color. There is some motion blur in the image, but it is not significant enough to affect the overall quality of the image."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:59.055808+00:00", "label": "free", "label_explanation": "The road is completely clear, with no visible signs of obstructions. There are cars and a motorcycle on the road, and they are all moving at a normal speed. The road is also clear of any obstructions, so traffic is flowing smoothly."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:53.943385+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:53.668499+00:00", "label": "null", "label_explanation": "The image shows a four-lane road at night. There are cars and a motorcycle on the road, and a pedestrian is walking on the sidewalk. The road is lit by streetlights, and there are trees and buildings on either side of the road. The image is clear and well-lit, and all of the objects in the image are clearly visible."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:56.809428+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is completely dry."}]}, {"id": "000097", "name": "VIADUTO ENG. NORONHA SOB VIADUTO JARDEL FILHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934568, "longitude": -43.184539, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000098", "name": "AV. 31 DE MAR\u00c7O SA\u00cdDA DO T\u00daNEL SANTA B\u00c1RBARA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919632, "longitude": -43.194175, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000099", "name": "AV. 31 DE MAR\u00c7O X PRA\u00c7A APOTEOSE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913982, "longitude": -43.195426, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000099.png", "snapshot_timestamp": "2024-02-10T00:55:24.940095+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_in_road", "road_blockade", "water_level", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:55:40.730297+00:00", "label": "clean", "label_explanation": "The image is moderately clear, with some blurring and a few areas of uniform color. There are no major distortions or obstructions that would affect the analysis."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:44.441643+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with some cars on both sides of the barrier. The cars are moving slowly, but there is no congestion."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:41.231977+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:57.134648+00:00", "label": "free", "label_explanation": "There are no road blockades."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:41.493694+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:41.026870+00:00", "label": "null", "label_explanation": "A night-time image of a four-lane bridge with a concrete barrier in the center. Street lights illuminate the scene, and there are cars on both sides of the barrier. In the background, there is a hill with several houses on it. The sky is dark, and there are no visible stars."}]}, {"id": "000100", "name": "AV. 31 DE MAR\u00c7O X AV. SALVADOR DE S\u00c1", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91152917, "longitude": -43.19602158, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000100.png", "snapshot_timestamp": "2024-02-10T00:58:20.932340+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "image_condition", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:54.880046+00:00", "label": "easy", "label_explanation": "The road is easy to navigate for vehicles. The water is shallow and does not pose a significant risk of hydroplaning."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:51.323711+00:00", "label": "true", "label_explanation": "There is water on the road."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:50.888118+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:57.212952+00:00", "label": "free", "label_explanation": "The road is not blocked. There are no obstructions on the road."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:51.098742+00:00", "label": "null", "label_explanation": "The image shows a wide road with a gas station on the right side. There are several cars parked on the side of the road. The road is wet from rain."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:51.696836+00:00", "label": "low_indifferent", "label_explanation": "The water is at a low level and does not cover the entire road. There are some small puddles on the road."}]}, {"id": "000101", "name": "AV. 31 DE MAR\u00c7O ALTURA DA AV. PRESIDENTE VARGAS", "rtsp_url": "rtsp://10.52.20.13/101-VIDEO", "update_interval": 120, "latitude": -22.90751594, "longitude": -43.1971245, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000102", "name": "FRANCISCO EUGENIO X FIGUEIREDO DE MELO X ESTA\u00c7\u00c3O LEOPOLDINA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906448, "longitude": -43.213027, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000102.png", "snapshot_timestamp": "2024-02-10T00:55:22.273219+00:00", "objects": ["image_condition", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:55:40.760634+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:48.702182+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:51.965763+00:00", "label": "easy", "label_explanation": "The road is dry and there is no traffic congestion. Vehicles are moving at a moderate speed."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:52.149732+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:44.988228+00:00", "label": "null", "label_explanation": "The image shows a six-lane urban road with a concrete barrier in the center. The road is well-lit and there are no visible signs of construction or accidents. There are a few trees on either side of the road and the sky is clear. There are cars and a motorcycle on the road, all of which are moving at a moderate speed."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:51.734099+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}]}, {"id": "000103", "name": "LINHA VERMELHA KM 0", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897505, "longitude": -43.218133, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000104", "name": "VIAS ELEVADAS PROF. ENG. RUFINO DE ALMEIDA ALTURA LEOPOLDINA PISTA SUPERIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906202, "longitude": -43.213831, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000105", "name": "R. CARDOSO DE MORAES X R. EMILIO ZALUAR - BRT", "rtsp_url": "rtsp://ineo:telca2000@10.52.210.83/mpeg4/ch1/sub/av_stream", "update_interval": 120, "latitude": -22.857624, "longitude": -43.257354, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000106", "name": "R. LEON\u00cdDIA X R. VASSALO CARUSO - BRT", "rtsp_url": "rtsp://10.52.210.84/", "update_interval": 120, "latitude": -22.850865, "longitude": -43.263564, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000107", "name": "R. IBIAPINA X R. URANOS", "rtsp_url": "rtsp://10.52.216.72/", "update_interval": 120, "latitude": -22.845602, "longitude": -43.267863, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000108", "name": "AV. GENERAL JUSTO PR\u00d3XIMO AO AEROPORTO SANTOS DUMONT", "rtsp_url": "rtsp://10.52.17.26/108-VIDEO", "update_interval": 120, "latitude": -22.911078, "longitude": -43.168378, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["traffic_ease_vehicle", "water_in_road", "image_condition", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "000109", "name": "R. IBIAPINA X R. TOMAZ RIBEIRO - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.85/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84268, "longitude": -43.271842, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000111", "name": "AV. VENCESLAU BR\u00c1S PR\u00d3XIMO AO GMAR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950001, "longitude": -43.177674, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000112", "name": "VIADUTO SAINT HILAIRE SA\u00cdDA DO T\u00daNEL REBOU\u00c7AS SOBRE A RUA JARDIM BOT\u00c2NICO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96029, "longitude": -43.204096, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000113", "name": "AV. BORGES DE MEDEIROS ALTURA DA AV. LINEU DE PAULA MACHADO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963085, "longitude": -43.212512, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000114", "name": "AV. BORGES DE MEDEIROS ALTURA DA R. J. J. SEABRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96485, "longitude": -43.21552, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000115", "name": "AV. BORGES DE MEDEIROS ALTURA DA R. GAL. GARZON", "rtsp_url": "rtsp://10.52.11.18/115-VIDEO", "update_interval": 120, "latitude": -22.96773141, "longitude": -43.21745192, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000116", "name": "AV. EPIT\u00c1CIO PESSOA PR\u00d3XIMO AO JARDIM DE ALAH", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980392, "longitude": -43.214439, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000117", "name": "R. JARDIM BOT\u00c2NICO ALTURA DA PRA\u00c7A SANTOS DUMONT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9744, "longitude": -43.226147, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000118", "name": "AV. EPIT\u00c1CIO PESSOA PR\u00d3XIMO AO CORTE DO CANTAGALO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.228/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976344, "longitude": -43.198633, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000119", "name": "AV. EPIT\u00c1CIO PESSOA - PR\u00d3XIMO AO PARQUE DA CATACUMBA", "rtsp_url": "rtsp://admin:admin@10.52.24.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.972396, "longitude": -43.203072, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000120", "name": "AUTOESTRADA LAGOA-BARRA X AV. NIEMEYER", "rtsp_url": "rtsp://10.50.106.95/120-VIDEO", "update_interval": 120, "latitude": -22.992837, "longitude": -43.253635, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000121", "name": "PRA\u00c7A BADEN POWELL", "rtsp_url": "rtsp://admin:admin@10.52.37.186/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981412, "longitude": -43.22647, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000122", "name": "AUTOESTRADA X ESTR. DO JO\u00c1 - PR\u00d3XIMO AO T\u00daNEL DE S\u00c3O CONRADO", "rtsp_url": "rtsp://admin:admin@10.50.106.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.998735, "longitude": -43.26893, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000124", "name": "PRA\u00c7A TIRADENTES X AV. PASSOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906274, "longitude": -43.18229, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000126", "name": "AUTOESTRADA LAGOA-BARRA X R. MARIA LUIZA PITANGA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012415, "longitude": -43.293128, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000127", "name": "AV. ARMANDO LOMBARDI ACESSO BARRA POINT", "rtsp_url": "rtsp://10.50.106.98/127-VIDEO", "update_interval": 120, "latitude": -23.0066676, "longitude": -43.30903886, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000128", "name": "AV. ARMANDO LOMBARDI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00685063, "longitude": -43.31362023, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000132", "name": "AV. DAS AM\u00c9RICAS X AV. AYRTON SENNA - CEBOL\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00016481, "longitude": -43.36935058, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000134", "name": "AV. DAS AM\u00c9RICAS X AV. AFONSO ARINOS DE MELLO FRANCO - EUROBARRA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.003217, "longitude": -43.324739, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000136", "name": "AV. AYRTON SENNA PR\u00d3XIMO AO SENAC", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.965357, "longitude": -43.357022, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000137", "name": "R. IBIAPINA X R. MONSENHOR ALVES - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841588, "longitude": -43.274756, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000138", "name": "ELEVADO PAULO DE FRONTIN - ALTURA DA RUA JO\u00c3O PAULO I", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91563, "longitude": -43.210022, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000139", "name": "AV. BRASIL X R. SANTOS LIMA", "rtsp_url": "rtsp://admin:admin@10.52.30.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895623, "longitude": -43.214936, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000142", "name": "R. VISCONDE DE NITER\u00d3I ALTURA MANGUEIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908367, "longitude": -43.23606, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000143", "name": "AV. BRAZ DE PINA X R CMTE. CONCEI\u00c7\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84013852, "longitude": -43.28172096, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000145", "name": "AV. BRASIL X CANAL DO CUNHA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.880604, "longitude": -43.239655, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000146", "name": "AV. BRASIL X R. PARIS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.68/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.864467, "longitude": -43.248167, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000147", "name": "AV. BRASIL X AV. BRIGADEIRO TROMPOWSKI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.69/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.847789, "longitude": -43.246994, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000148", "name": "AV. BRASIL X AV. LOBO JUNIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.826687, "longitude": -43.275307, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000150", "name": "PREFEITURA CASS", "rtsp_url": "rtsp://admin:admin123@10.52.2.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911171, "longitude": -43.205686, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000151", "name": "AV. BRAZ DE PINA X RUA JACARAU - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.837788, "longitude": -43.288355, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000153", "name": "AV. BRASIL X ALTURA R. JO\u00c3O PAULO", "rtsp_url": "rtsp://10.52.208.143/153-VIDEO", "update_interval": 120, "latitude": -22.83251628, "longitude": -43.35410016, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000155", "name": "AV. BRASIL X ALTURA ESTR. DO ENGENHO NOVO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.83/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86524217, "longitude": -43.42713159, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000156", "name": "AV. BRASIL X SANT\u00cdSSIMO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.860384, "longitude": -43.507898, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000158", "name": "AV. BRASIL X ENTRADA DE SANTA CRUZ", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893129, "longitude": -43.67449199, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000159", "name": "ESTR. DO MENDANHA X LGO. DA MA\u00c7ONARIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.888427, "longitude": -43.559933, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000161", "name": "LINHA VERMELHA - KM 1 X PISTA SUPERIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890386, "longitude": -43.223166, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000162", "name": "LINHA VERMELHA - KM 1 X PISTA INFERIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89458, "longitude": -43.219829, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000168", "name": "AV. BRAZ DE PINA X AV. VICENTE DE CARVALHO - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839228, "longitude": -43.296019, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000169", "name": "AV. BRASIL ALTURA DA LINHA VERMELHA", "rtsp_url": "rtsp://10.52.32.4/", "update_interval": 120, "latitude": -22.88554119, "longitude": -43.2263193, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000171", "name": "R. CONDE DE BONFIM X R. JOS\u00c9 HIGINO", "rtsp_url": "rtsp://admin:admin@10.52.24.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.930045, "longitude": -43.237439, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000173", "name": "AV. BRASIL X GAE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887381, "longitude": -43.23122, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000174", "name": "AV. DAS AMERICAS X NOVO LEBLON", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000582, "longitude": -43.382231, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000175", "name": "R. S\u00c3O FRANCISCO XAVIER X R. GENERAL CANABARRO", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916124, "longitude": -43.227038, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000176", "name": "VIADUTO AGENOR DE OLIVEIRA", "rtsp_url": "rtsp://10.52.26.10/176-VIDEO", "update_interval": 120, "latitude": -22.90517, "longitude": -43.241737, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000178", "name": "VIADUTO ODUVALDO COZZI X S\u00c3O FRANCISCO XAVIER", "rtsp_url": "rtsp://10.52.25.3/178-VIDEO", "update_interval": 120, "latitude": -22.910702, "longitude": -43.224346, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000179", "name": "AV. VICENTE DE CARVALHO X RUA CAROEM - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842347, "longitude": -43.299856, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000181", "name": "AV. CHILE X R. DO LAVRADIO", "rtsp_url": "rtsp://admin:admin@10.52.18.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910088, "longitude": -43.183019, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000182", "name": "R. S\u00c3O CLEMENTE, 398", "rtsp_url": "rtsp://admin:admin@10.52.11.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95147224, "longitude": -43.19488855, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000183", "name": "AV. PAULO DE FRONTIN X R. JOAQUIM PALHARES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.22/main", "update_interval": 120, "latitude": -22.91275047, "longitude": -43.21017212, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000184", "name": "AV. VICENTE DE CARVALHO X RUA FL\u00c1MINIA - BRT", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.845981, "longitude": -43.302541, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000186", "name": "R. ENG. MARIO DE CARVALHO X R. LUIZA DE CARVALHO - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852568, "longitude": -43.319641, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000189", "name": "VD. PREF. NEGR\u00c3O DE LIMA X ESTA\u00c7\u00c3O BRT MADUREIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.57/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.877333, "longitude": -43.336211, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000190", "name": "R. CANDIDO BENICIO X R. CAPIT\u00c3O MENEZES - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89238567, "longitude": -43.34816333, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000191", "name": "R. CANDIDO BENICIO X R. BARONESA - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89659384, "longitude": -43.35131625, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000192", "name": "R. CANDIDO BENICIO X BRT IPASE", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90394379, "longitude": -43.35652741, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000193", "name": "R. CANDIDO BENICIO X R. GODOFREDO VIANA - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912524, "longitude": -43.360592, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000195", "name": "AV. NELSON CARDOSO X ESTR. DO CAFUNDA - BRT", "rtsp_url": "rtsp://ineo:telca2000@10.50.106.96/mpeg4/ch1/sub/av_stream", "update_interval": 120, "latitude": -22.91846, "longitude": -43.36533, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000196", "name": "ESTR. DOS BANDEIRANTES X R. ANDR\u00c9 ROCHA - BRT", "rtsp_url": "rtsp://ineo:telca2000@10.50.106.99/mpeg4/ch1/sub/av_stream", "update_interval": 120, "latitude": -22.929257, "longitude": -43.373999, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000198", "name": "ESTR. DOS BANDEIRANTES X R. SOLDADO JOS\u00c9 DA COSTA - BRT", "rtsp_url": "rtsp://ineo:telca2000@10.50.106.189/mpeg4/ch1/sub/av_stream", "update_interval": 120, "latitude": -22.958017, "longitude": -43.381144, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000200", "name": "ESTR. CEL. PEDRO CORR\u00caA X ESTA\u00c7\u00c3O BRT PEDRO CORR\u00caA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.967397, "longitude": -43.390732, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000201", "name": "R. HADDOCK LOBO X AV. PAULO DE FRONTIN", "rtsp_url": "rtsp://10.52.33.21/201-VIDEO", "update_interval": 120, "latitude": -22.917126, "longitude": -43.210312, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000203", "name": "AV. PRES. VARGAS - ALT. DOS CORREIOS", "rtsp_url": "rtsp://admin:admin@10.52.34.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90951664, "longitude": -43.20381032, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000205", "name": "R. DO RIACHUELO X AV. HENRIQUES VALADARES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.135/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913002, "longitude": -43.191236, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000206", "name": "R. BELA X CAMPO DE S\u00c3O CRIST\u00d3V\u00c3O (EMBAIXO DA LINHA VERMELHA)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.16/sub", "update_interval": 120, "latitude": -22.895548, "longitude": -43.219326, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000207", "name": "R. M\u00c9XICO X AV. NILO PE\u00c7ANHA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906449, "longitude": -43.176181, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000209", "name": "R. GEN. HERCULANO GOMES X R. ALM. BALTAZAR", "rtsp_url": "rtsp://admin:admin@10.52.28.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90910393, "longitude": -43.22229402, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000211", "name": "R. S\u00c3O CRIST\u00d3V\u00c3O X R. FRANCISCO EUG\u00caNIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.144/sub", "update_interval": 120, "latitude": -22.906993, "longitude": -43.217919, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000211.png", "snapshot_timestamp": "2024-02-10T00:58:14.505940+00:00", "objects": ["water_in_road", "road_blockade", "traffic_ease_vehicle", "image_condition", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:55:51.635282+00:00", "label": "true", "label_explanation": "There is water present on the road surface. The water is covering a significant portion of the road, but it is not completely submerged. There are some small puddles visible, but the water is not deep enough to cause any major traffic disruptions."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:57.566433+00:00", "label": "free", "label_explanation": "The road is not blocked. The cars are able to pass through the flooded areas without any major problems. There is some congestion, but it is not severe."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:57.215730+00:00", "label": "difficult", "label_explanation": "The traffic is moderate. The cars are driving slowly and carefully, but they are able to pass through the flooded areas without any major problems. There is some congestion, but it is not severe."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:51.211841+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:51.411596+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection at night. The street lights are on, and there are several cars visible in the intersection, including a bus. The road surface is wet from rain, and there are some small puddles visible. There are trees and buildings in the background."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:54.914335+00:00", "label": "puddle", "label_explanation": "The water level on the road is moderate. The water is not deep enough to submerge the vehicles, but it is causing some traffic disruptions. The cars are driving slowly and carefully, and some of them are avoiding the flooded areas."}]}, {"id": "000212", "name": "AV. RIO BRANCO X R. EVARISTO DA VEIGA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909565, "longitude": -43.176126, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000214", "name": "R. SANTA ALEXANDRINA X R. DA ESTRELA", "rtsp_url": "rtsp://10.52.33.23/214-VIDEO", "update_interval": 120, "latitude": -22.925058, "longitude": -43.208885, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000217", "name": "R. ALM. MARIATH X AV. RIO DE JANEIRO", "rtsp_url": "rtsp://admin:admin@10.52.30.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89226322, "longitude": -43.21489423, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000218", "name": "INTO X AV. BRASIL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892544, "longitude": -43.216696, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000219", "name": "AV. PRESIDENTE VARGAS X ALT. SAMB\u00d3DROMO - SENT. PRA\u00c7A DA BANDEIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907542, "longitude": -43.199565, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000220", "name": "AV. ALM. BARROSO X AV. GRA\u00c7A ARANHA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907556, "longitude": -43.174821, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000221", "name": "R. BENEDITO HIP\u00d3LITO X R. CARMO NETO", "rtsp_url": "rtsp://admin:7LANMSTR@10.52.19.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909147, "longitude": -43.200377, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["traffic_ease_vehicle", "road_blockade", "image_condition", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "000222", "name": "R. FREI CANECA X R. HEITOR CARRILHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914365, "longitude": -43.199465, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000222.png", "snapshot_timestamp": "2024-02-10T00:55:18.051937+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "image_description", "road_blockade", "water_in_road", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:55:49.693757+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there are no large areas of uniform color. There is some motion blur in the image, but it does not significantly affect the overall quality."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:59.078121+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:57.133517+00:00", "label": "null", "label_explanation": "The image shows a busy urban road with a large overpass in the background. The road is lined with trees, and there are several cars and trucks visible. The sky is clear, and the sun is shining. There is a traffic light in the foreground, and it is green. There are people crossing the road in the background."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:59.396712+00:00", "label": "free", "label_explanation": "The road is completely clear, with no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:57.433815+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:58.854304+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}]}, {"id": "000224", "name": "R. MEM DE S\u00c1 X R. DE SANTANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911104, "longitude": -43.192409, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000225", "name": "PRA\u00c7A DA CRUZ VERMELHA", "rtsp_url": "rtsp://admin:cor123@10.52.18.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91222, "longitude": -43.188301, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000226", "name": "R. BENEDITO HIPOLITO X R. SANTANA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90737878, "longitude": -43.19426186, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000228", "name": "PRA\u00c7A DA REP\u00daBLICA X R. VINTE DE ABRIL", "rtsp_url": "rtsp://10.52.18.146/228-VIDEO", "update_interval": 120, "latitude": -22.908966, "longitude": -43.18871, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000229", "name": "AV. PEDRO II X R. S\u00c3O CRIST\u00d3V\u00c3O", "rtsp_url": "rtsp://admin:admin@10.52.28.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.905056, "longitude": -43.217854, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000230", "name": "R. S\u00c3O LUIZ GONZAGA X CAMPO DE S\u00c3O CRIST\u00d3V\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.146/sub", "update_interval": 120, "latitude": -22.89962, "longitude": -43.223047, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000235", "name": "AV. BORGES DE MEDEIROS X R. SATURNINO DE BRITO", "rtsp_url": "rtsp://10.52.11.19/235-VIDEO", "update_interval": 120, "latitude": -22.966504, "longitude": -43.216696, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000236", "name": "R. COSME VELHO X IGREJA S\u00c3O JUDAS TADEU", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.940188, "longitude": -43.198325, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000239", "name": "R. VISCONDE DE ALBUQUERQUE X R. LE\u00d4NCIO CORR\u00caA", "rtsp_url": "rtsp://10.52.37.190/239-VIDEO", "update_interval": 120, "latitude": -22.98322, "longitude": -43.228159, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000240", "name": "R. MENA BARRETO X R. REAL GRANDEZA", "rtsp_url": "rtsp://admin:admin@10.52.20.233/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95663941, "longitude": -43.19166915, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000241", "name": "AV. NIEMEYER, 393 - S\u00c3O CONRADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.999332, "longitude": -43.24781, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000242", "name": "R. JARDIM BOTANICO X R. MARIA ANG\u00c9LICA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96065734, "longitude": -43.20797045, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000243", "name": "AV. BORGES DE MEDEIROS X R. LINEU DE PAULA MACHADO", "rtsp_url": "rtsp://admin:admin@10.52.12.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962938, "longitude": -43.211589, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000245", "name": "AV. DELFIM MOREIRA X AV. NIEMEYER", "rtsp_url": "rtsp://10.52.37.189/245-VIDEO", "update_interval": 120, "latitude": -22.9886597, "longitude": -43.22809797, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000247", "name": "AV. PRESIDENTE VARGAS X R. URUGUAIANA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902296, "longitude": -43.181304, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000249", "name": "R. GILBERTO CARDOSO X AV. AFR\u00c2NIO DE MELO FRANCO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979009, "longitude": -43.218498, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000250", "name": "RUA MARQU\u00caS DE S\u00c3O VICENTE X R. VICE-GOV. RUBENS BERARDO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976922, "longitude": -43.23055, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000252", "name": "R. BULH\u00d5ES DE CARVALHO X R. FRANCISCO S\u00c1", "rtsp_url": "rtsp://admin:cor12345@10.52.22.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98375, "longitude": -43.194079, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000253", "name": "R. BULH\u00d5ES DE CARVALHO X R. FRANCISCO OTAVIANO", "rtsp_url": "rtsp://admin:admin@10.52.21.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987207, "longitude": -43.191612, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000254", "name": "R. MIGUEL LEMOS X R. BARATA RIBEIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977439, "longitude": -43.192835, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000255", "name": "R. TONELERO X R. FIGUEIREDO MAGALH\u00c3ES", "rtsp_url": "rtsp://admin:admin@10.52.20.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968163, "longitude": -43.187943, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000256", "name": "AV. ATL\u00c2NTICA X R BOLIVAR - FIXA", "rtsp_url": "rtsp://10.52.252.93/", "update_interval": 120, "latitude": -22.975917, "longitude": -43.187779, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000257", "name": "AV. ATL\u00c2NTICA X R. ANCHIETA", "rtsp_url": "rtsp://10.52.31.30/257-VIDEO", "update_interval": 120, "latitude": -22.963323, "longitude": -43.170004, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000259", "name": "AV. BORGES DE MEDEIROS X ALTURA DO PARQUE DOS PATINS", "rtsp_url": "rtsp://admin:admin@10.52.11.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970898, "longitude": -43.217291, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000260", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. NELSON MANDELA", "rtsp_url": "rtsp://admin:admin@10.52.13.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951251, "longitude": -43.184273, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["image_condition", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "000261", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. DONA MARIANA", "rtsp_url": "rtsp://admin:admin@10.52.13.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953172, "longitude": -43.188536, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000262", "name": "R. S\u00c3O CLEMENTE X R. GUILHERMINA GUINLE", "rtsp_url": "rtsp://10.52.11.140/262-VIDEO", "update_interval": 120, "latitude": -22.94962, "longitude": -43.188759, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000263", "name": "PRAIA DE BOTAFOGO X R. PROF. ALFREDO GOMES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.947694, "longitude": -43.182621, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000264", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X ALT. BOTAFOGO PRAIA SHOPPING - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.948139, "longitude": -43.182033, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000266", "name": "R. DAS LARANJEIRAS X PRA\u00c7A DAVID BEN GURION", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93817201, "longitude": -43.1906269, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000267", "name": "AUTO EST. LAGOA BARRA", "rtsp_url": "rtsp://admin:admin@10.50.106.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992613, "longitude": -43.251731, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000268", "name": "R. DO CATETE X R. DAS LARANJEIRAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931059, "longitude": -43.177708, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000269", "name": "R. REAL GRANDEZA X R. GAL POLIDORO", "rtsp_url": "rtsp://admin:admin@10.52.20.230/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95816119, "longitude": -43.19136634, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000270", "name": "R. VISCONDE DE PIRAJ\u00c1 X AV. HENRIQUE DUMONT", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983701, "longitude": -43.213552, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000270.png", "snapshot_timestamp": "2024-02-10T00:55:22.100052+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_in_road", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:55:38.015745+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:53.313082+00:00", "label": "easy", "label_explanation": "The road surface is completely dry, with no visible signs of water or other obstructions. There is a cyclist riding in the middle of the street, and a few cars are parked on the side of the street. This indicates that the road is easy to navigate for vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:38.487508+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:53.626534+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road, and traffic is flowing smoothly. This indicates that the road is free and clear."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:38.284940+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are trees on either side of the street. There is a cyclist riding in the middle of the street, and a few cars are parked on the side of the street. There is a dumpster on the right side of the road, close to the sidewalk, and a motorcycle parked behind it. There are some tables and chairs outside a restaurant on the right side of the road."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:42.519702+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}]}, {"id": "000272", "name": "R. VISC. DE PIRAJ\u00c1 X R. TEIXEIRA DE MELO (P\u00c7A. GAL. OS\u00d3RIO)", "rtsp_url": "rtsp://10.50.224.134/272-VIDEO", "update_interval": 120, "latitude": -22.984649, "longitude": -43.198693, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000275", "name": "CORTE DE CANTAGALO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976522, "longitude": -43.198178, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000276", "name": "AV. VIEIRA SOUTO X R. VIN\u00cdCIUS DE MORAES", "rtsp_url": "rtsp://admin2:7lanmstr@10.52.22.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986577, "longitude": -43.203073, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000276.png", "snapshot_timestamp": "2024-02-10T00:33:56.940273+00:00", "objects": ["water_in_road", "road_blockade", "image_condition", "traffic_ease_vehicle", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:34:11.155553+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:34:12.989677+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions to traffic flow."}, {"object": "image_condition", "timestamp": "2024-02-10T00:34:10.512623+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:34:12.702206+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic can flow smoothly."}, {"object": "image_description", "timestamp": "2024-02-10T00:34:10.882400+00:00", "label": "null", "label_explanation": "The image shows a four-lane road intersection at night. There are a few cars on the road, and some people are crossing the street. The street lights are on, and the traffic signals are visible. There are buildings and trees on either side of the road."}, {"object": "water_level", "timestamp": "2024-02-10T00:34:11.381931+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}]}, {"id": "000277", "name": "RUA BARATA RIBEIRO X R. PRADO JUNIOR", "rtsp_url": "rtsp://admin:admin@10.52.31.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962256, "longitude": -43.176012, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000278", "name": "R. TONELERO X R. SIQUEIRA CAMPOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.39.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.967156, "longitude": -43.18629, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000279", "name": "R. MENA BARRETO X R. D\u00aa MARIANA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954951, "longitude": -43.187384, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000281", "name": "R. PRUDENTE DE MORAIS X R. ANIBAL DE MENDON\u00c7A", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984847, "longitude": -43.211492, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000282", "name": "AV. N. SRA. DE COPACABANA X R. HIL\u00c1RIO DE GOUVEIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.39.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968746, "longitude": -43.183737, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000283", "name": "AV. NOSSA SENHORA DE COPACABANA X REPUBLICA NO PERU", "rtsp_url": "rtsp://admin:7lanmstr@10.52.39.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96739308, "longitude": -43.18194752, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000284", "name": "AV. N. SRA. DE COPACABANA X R. RODOLFO DANTAS", "rtsp_url": "rtsp://10.52.23.131/284-VIDEO", "update_interval": 120, "latitude": -22.966257, "longitude": -43.178962, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000286", "name": "AV. N. SRA. DE COPACABANA X R. PRADO JUNIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964232, "longitude": -43.17495, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000287", "name": "AV. N. SRA. DE COPACABANA X AV. RAINHA ELISABETH", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984856, "longitude": -43.190283, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000289", "name": "AV. N. SRA. DE COPACABANA X R. S\u00c1 FERREIRA", "rtsp_url": "rtsp://10.52.21.44/289-VIDEO", "update_interval": 120, "latitude": -22.980866, "longitude": -43.191258, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000290", "name": "AV. N. SRA. DE COPACABANA X R. CONSTANTE RAMOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.974051, "longitude": -43.189123, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000291", "name": "AV. ATL\u00c2NTICA X R. REP. DO PERU - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.969131, "longitude": -43.180741, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000292", "name": "AV. ATL\u00c2NTICA X R. SIQUEIRA CAMPOS", "rtsp_url": "rtsp://admin:admin@10.52.252.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970583, "longitude": -43.183404, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000293", "name": "AV. ATL\u00c2NTICA X R. MIGUEL LEMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.196/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97817912, "longitude": -43.1885624, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000294", "name": "R. BARATA RIBEIRO X R. SANTA CLARA", "rtsp_url": "rtsp://admin:admin@10.52.20.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970376, "longitude": -43.188329, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000295", "name": "AV. N. SRA. DE COPACABANA X R. MIGUEL LEMOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977952, "longitude": -43.190786, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000296", "name": "R. BARATA RIBEIRO X R. RODOLFO DANTAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96479079, "longitude": -43.1799969, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000297", "name": "R. S\u00c3O CLEMENTE X R. SOROCABA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950095, "longitude": -43.190989, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000298", "name": "R. EPIT\u00c1CIO PESSOA X R. VINICIUS DE MORAIS", "rtsp_url": "rtsp://admin:admin@10.52.24.5/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979536, "longitude": -43.202644, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000299", "name": "PRAIA DE BOTAFOGO X R. VISC. DE OURO PRETO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946188, "longitude": -43.182567, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000300", "name": "PRAIA DE BOTAFOGO X R. S\u00c3O CLEMENTE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949047, "longitude": -43.182428, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000302", "name": "R. MUNIZ BARRETO X R. MARQUES DE OLINDA", "rtsp_url": "rtsp://10.52.20.239/302-VIDEO", "update_interval": 120, "latitude": -22.943791, "longitude": -43.183737, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000303", "name": "R. MUNIZ BARRETO X R. ALFREDO GOMES", "rtsp_url": "rtsp://10.52.13.20/303-VIDEO", "update_interval": 120, "latitude": -22.947813, "longitude": -43.184209, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000305", "name": "AV. PASTEUR X ALT. INSTITUTO BENJAMIM CONSTANT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953009, "longitude": -43.172418, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000306", "name": "AV. PASTEUR X R. VENCESLAU", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95134, "longitude": -43.175154, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000308", "name": "PRAIA DO FLAMENGO X AV. OSWALDO CRUZ - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.938604, "longitude": -43.173695, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000310", "name": "LARGO DO MACHADO X BENTO LISBOA", "rtsp_url": "rtsp://admin:admin@10.52.14.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.930591, "longitude": -43.179231, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000311", "name": "PRAIA DO FLAMENGO X R. DOIS DE DEZEMBRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.930077, "longitude": -43.174478, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000312", "name": "R. PEDRO AM\u00c9RICO X R. DO CATETE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923635, "longitude": -43.177375, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000313", "name": "R. DO CATETE X R. SILVEIRA MARTINS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925769, "longitude": -43.176602, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000314", "name": "PRAIA DO FLAMENGO X R. FERREIRA VIANA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.927656, "longitude": -43.173941, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000315", "name": "R. DA GL\u00d3RIA X R. BENJAMIM CONSTANT", "rtsp_url": "rtsp://admin:admin@10.52.20.170/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920482, "longitude": -43.177031, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000318", "name": "R. GAL. POLIDORO X R. DA PASSAGEM", "rtsp_url": "rtsp://admin:cor12345@10.52.13.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95212, "longitude": -43.182288, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000319", "name": "R. DA PASSAGEM X R. ARNALDO QUINTELA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95451562, "longitude": -43.18112382, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000320", "name": "PRA\u00c7A VEREADOR ROCHA LE\u00c3O, 50 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96455461, "longitude": -43.19058382, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000321", "name": "R. PRUDENTE DE MORAIS X R. TEIXEIRA DE MELO", "rtsp_url": "rtsp://admin:cor12345@10.50.224.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985582, "longitude": -43.198693, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000322", "name": "R. GAL. SEVERIANO X P\u00c7A. OZANAN", "rtsp_url": "rtsp://10.52.38.27/", "update_interval": 120, "latitude": -22.95318721, "longitude": -43.17743397, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000323", "name": "R. CONSTANTE RAMOS X R. POMPEU LOUREIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.972322, "longitude": -43.191944, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000324", "name": "R. POMPEU LOUREIRO X R. BOLIVAR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.975532, "longitude": -43.193532, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000325", "name": "R. VISC. SILVA X LARGO DO IBAM", "rtsp_url": "rtsp://admin:admin@10.52.12.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958226, "longitude": -43.196848, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000326", "name": "RUA PROF. ABELARDO L\u00d3BO X R. PROF. SALDANHA X PRA\u00c7A MARCOS TAMOYO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96144335, "longitude": -43.20486169, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000326.png", "snapshot_timestamp": "2024-02-10T00:56:27.592037+00:00", "objects": ["image_description", "water_level", "image_condition", "water_in_road", "road_blockade", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:53:47.125216+00:00", "label": "null", "label_explanation": "The image is a night view of a road in Rio de Janeiro. The road is in the foreground, with a park to the right and a few trees on the left. There is a white car driving on the road, and the street lights are on. The image is well-lit, and the details of the scene are clearly visible."}, {"object": "water_level", "timestamp": "2024-02-10T00:53:47.651979+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "image_condition", "timestamp": "2024-02-10T00:53:46.922455+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there is no blurring or pixelation."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:53:47.419183+00:00", "label": "false", "label_explanation": "There is no water on the road. The road surface is dry and clear."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:53:48.133470+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions. Traffic is flowing smoothly."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:53:47.900913+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions. Traffic is flowing smoothly."}]}, {"id": "000328", "name": "AUTO ESTR. LAGOA-BARRA X EST. DA G\u00c1VEA", "rtsp_url": "rtsp://admin:admin@10.50.106.81/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99236313, "longitude": -43.25165276, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000329", "name": "AUTO ESTR. LAGOA-BARRA X ALT. G\u00c1VEA GOLF CLUBE", "rtsp_url": "rtsp://admin:admin@10.50.106.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99784444, "longitude": -43.26550927, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000330", "name": "R. PRUDENTE DE MORAIS X R. MARIA QUITERIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985163, "longitude": -43.207175, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000331", "name": "AV. EPITACIO PESSOA X ALT. DO PARQUE DA CATACUMBA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973053, "longitude": -43.203244, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000333", "name": "R. CONDE DE BONFIM X R. ALMIRANTE COCHRANE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923061, "longitude": -43.231072, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000334", "name": "R. CONDE DE BONFIM X R. S\u00c3O FRANCISCO XAVIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921915, "longitude": -43.221416, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000335", "name": "RUA CONDE DE BONFIM X RUA PINTO FIGUEIREDO", "rtsp_url": "rtsp://user:7lanmstr@10.50.224.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925631, "longitude": -43.23494, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000337", "name": "R. BAR\u00c3O DE MESQUITA X R. JOS\u00c9 HIGINO", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.924237, "longitude": -43.240396, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000338", "name": "RUA BAR\u00c3O DE MESQUITA X RUA PAULA BRITO", "rtsp_url": "rtsp://10.50.224.210/338-VIDEO", "update_interval": 120, "latitude": -22.923931, "longitude": -43.251908, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000339", "name": "R. S\u00c3O FRANCISCO XAVIER X AV. PROF. MANOEL DE ABREU", "rtsp_url": "rtsp://admin:cor12345@10.52.252.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913763, "longitude": -43.234355, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000341", "name": "R. HADDOCK LOBO X R. ENGENHEIRO ADEL", "rtsp_url": "rtsp://admin:admin@10.52.252.174/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92050585, "longitude": -43.21674664, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000342", "name": "RUA VISC. DE SANTA IZABEL X BAR\u00c3O DE S\u00c3O FRANCISCO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916006, "longitude": -43.2515, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000345", "name": "AV. MARACAN\u00c3 X MATA MACHADO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912302, "longitude": -43.22663, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000347", "name": "AV. MARACAN\u00c3 X R. JOS\u00c9 HIGINO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.141/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.92809138, "longitude": -43.23980877, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000351", "name": "AV. MENEZES C\u00d4RTES - AUTOESTRADA GRAJA\u00da-JACAREPAGU\u00c1 (SUBIDA GRAJA\u00da)", "rtsp_url": "rtsp://10.52.26.150/351-VIDEO", "update_interval": 120, "latitude": -22.916935, "longitude": -43.262422, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000352", "name": "R. TEODORO DA SILVA X R. SOUSA FRANCO", "rtsp_url": "rtsp://10.52.26.152/352-VIDEO", "update_interval": 120, "latitude": -22.917582, "longitude": -43.245506, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000353", "name": "R. TEODORO DA SILVA X R. GONZAGA BASTOS", "rtsp_url": "rtsp://10.52.26.151/353-VIDEO", "update_interval": 120, "latitude": -22.916767, "longitude": -43.241801, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000354", "name": "R. PROFESSOR MANOEL DE ABREU X R. FELIPE CAMAR\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915699, "longitude": -43.235321, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000355", "name": "AV. MARACAN\u00c3 X R. MAJOR \u00c1VILA", "rtsp_url": "rtsp://10.52.25.140/355-VIDEO", "update_interval": 120, "latitude": -22.919689, "longitude": -43.233926, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000356", "name": "BOULEVARD 28 DE SETEMBRO X P\u00c7A BAR\u00c3O DE DRUMOND", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916451, "longitude": -43.25003, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000357", "name": "BOULEVARD 28 DE SETEMBRO X R. GONZAGA BASTOS", "rtsp_url": "rtsp://10.52.26.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915393, "longitude": -43.242037, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000358", "name": "R. PROFESSOR EURICO RABELO X R. RAD. VALDIR AMARAL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912127, "longitude": -43.233954, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000359", "name": "R. S\u00c3O FRANCISCO XAVIER X R. LUIZ DE MATOS", "rtsp_url": "rtsp://admin:admin@10.52.26.16/mpeg4/ch1/sub/av_stream", "update_interval": 120, "latitude": -22.910967, "longitude": -43.238104, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000361", "name": "R. MARIZ E BARROS X R. CAMPOS SALES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914306, "longitude": -43.219056, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000362", "name": "R. TEIXEIRA SOARES X R. PAR\u00c1 X R. PARA\u00cdBA", "rtsp_url": "rtsp://10.52.36.137/362-VIDEO", "update_interval": 120, "latitude": -22.91119, "longitude": -43.216786, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["water_in_road", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "000363", "name": "AV. BRASIL X TREVO DAS MARGARIDAS", "rtsp_url": "rtsp://admin:admin@10.50.224.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82214057, "longitude": -43.31976235, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000364", "name": "R. VISCONDE DE SANTA ISABEL X R. ALEXANDRE CALAZA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916885, "longitude": -43.260158, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000365", "name": "R. DR. SATAMINI X R. CAMPOS SALES", "rtsp_url": "rtsp://admin:admin@10.52.252.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918308, "longitude": -43.217307, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000366", "name": "R. PEREIRA NUNES X R. BALTAZAR LISBOA", "rtsp_url": "rtsp://10.50.224.211/366-VIDEO", "update_interval": 120, "latitude": -22.922062, "longitude": -43.237368, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000367", "name": "R. MARIZ E BARROS X R. FELISBERTO DE MENEZES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912639, "longitude": -43.215954, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000368", "name": "R. CONDE DE BONFIM X R. BASILEIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.99/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.938841, "longitude": -43.247659, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000369", "name": "R. CONDE DE BONFIM X R. DOS ARA\u00daJOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925154, "longitude": -43.225606, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000370", "name": "R. ALMIRANTE COCHRANE X R. PARETO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921968, "longitude": -43.230195, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000373", "name": "AV. DOM HELDER C\u00c2MARA X R. DA ABOLI\u00c7\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.884797, "longitude": -43.298447, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000378", "name": "AV. AMARO CAVALCANTE X ESTA\u00c7\u00c3O FERROVIARIA DO ENGENHO DE DENTRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895729, "longitude": -43.294817, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000380", "name": "R. ARQUIAS CORDEIRO X R. CORA\u00c7\u00c3O DE MARIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89904457, "longitude": -43.28062217, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000381", "name": "R. ARISTIDES CAIRE X R. CAPIT\u00c3O REZENDE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895291, "longitude": -43.274074, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000382", "name": "AV. DOM HELDER CAMARA X R. PEDRAS ALTAS X R. SILVA MOUR\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88668057, "longitude": -43.28010564, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000384", "name": "R. DIAS DA CRUZ X R. VILELA TAVARES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.66/cam/realmonitor?channel=1&subtype=2&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904789, "longitude": -43.288912, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000386", "name": "PARQUE DE MADUREIRA PALCO PRA\u00c7A DO SAMBA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.49/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86797353, "longitude": -43.34119058, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000388", "name": "R. HEMENGARDA X JOAQUIM MEIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903837, "longitude": -43.278715, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000389", "name": "PARQUE DE MADUREIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86537704, "longitude": -43.34391449, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000390", "name": "PARQUE MADUREIRA - PREDIO DA ADMINISTRA\u00c7\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.51/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86391126, "longitude": -43.34562848, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000392", "name": "DOM HELDER CAMARA X R. CACHAMBI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88488391, "longitude": -43.27794905, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000393", "name": "R. HEMENGARDA X R. LINS DE VASCONCELOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.71/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906716, "longitude": -43.276305, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000394", "name": "R. DIAS DA CRUZ X R. MAGALHAES COUTO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903605, "longitude": -43.284321, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000395", "name": "R. MEDINA X R. SILVA RABELO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.899907, "longitude": -43.281401, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000396", "name": "PARQUE DE MADUREIRA - PISTA DE SKATE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.56/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86239608, "longitude": -43.34684248, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000397", "name": "PARQUE MADUREIRA - QUADRAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.53/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86162286, "longitude": -43.34668336, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000398", "name": "R. DOMINGOS LOPES X R. MARIA LOPES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.123/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87964422, "longitude": -43.3417186, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000398.png", "snapshot_timestamp": "2024-02-10T00:56:26.618053+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "road_blockade", "water_level", "image_description", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:49.785122+00:00", "label": "difficult", "label_explanation": "The cars are still able to drive through the water, but they are having to slow down. The traffic is not completely stopped, but it is moving slowly."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:49.272898+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some dry patches visible, and the cars are still able to drive through the water."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:50.065621+00:00", "label": "partially_blocked", "label_explanation": "The road is not completely blocked, but there is a bus and some cars stopped on the road. The cars are still able to get around the bus, but they have to slow down."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:49.492596+00:00", "label": "low_indifferent", "label_explanation": "The water is not very deep. It is only covering the bottom of the cars. The cars are still able to drive through the water without any problems."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:48.990077+00:00", "label": "null", "label_explanation": "The image shows a busy urban road intersection at night. There are cars, buses, and pedestrians on the road. The traffic lights are green, and the cars are moving smoothly. The road is wet from the rain, but there is no flooding. There are trees and buildings on either side of the road."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:48.787100+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there is no blurring or pixelation."}]}, {"id": "000401", "name": "R. VINTE E QUATRO DE MAIO X R. LINS DE VASCONCELOS", "rtsp_url": "rtsp://admin:admin@10.52.210.71/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904344, "longitude": -43.272722, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000404", "name": "ESTRADA DO GALE\u00c3O X ALT. RUA VINTE DE JANEIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.145/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.822964, "longitude": -43.230965, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000405", "name": "ABELARDO BUENO - EM FRENTE 3600", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97315994, "longitude": -43.39799721, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000406", "name": "ABELARDO BUENO X R. JORGE FARAJ", "rtsp_url": "rtsp://10.50.106.6/406-VIDEO", "update_interval": 120, "latitude": -22.972959, "longitude": -43.392742, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000407", "name": "RUA CARDOSO DE MORAIS X R. DONA ISABEL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.175/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8660697, "longitude": -43.25566553, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000410", "name": "R. ABELARDO BUENO X R. ARROIO PAVUNA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973264, "longitude": -43.378744, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000411", "name": "R. CEL. PEDRO CORREIA X R. AROAZES", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970977, "longitude": -43.388803, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000412", "name": "AV. NOVA YORK X AV. BRUXELAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.46/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.865291, "longitude": -43.252775, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000413", "name": "R.JOS\u00c9 MAURICIO X ESTA\u00c7\u00c3O DA PENHA", "rtsp_url": "rtsp://admin:123smart@10.152.38.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841059, "longitude": -43.276734, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000414", "name": "AV. TEIXEIRA DE CASTRO X R. BARREIROS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.41/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.853566, "longitude": -43.252155, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000415", "name": "R. CARDOSO DE MORAES X R. TEIXEIRA DE CASTRO X R. BONSUCESSO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.47/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86275, "longitude": -43.253951, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000416", "name": "R. LEOPOLDINA REGO X VIAD. DE RAMOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.116/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852548, "longitude": -43.261778, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000418", "name": "R. LEOPOLDINA REGO X R. DR. ALFREDO BARCELOS", "rtsp_url": "rtsp://10.52.210.81/418-VIDEO", "update_interval": 120, "latitude": -22.847387, "longitude": -43.265759, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000419", "name": "AV. LOBO JUNIOR X RUA CUBA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.153/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.82914961, "longitude": -43.27677625, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000420", "name": "RUA BENTO CARDOSO X RUA IRAPUA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.156/sub", "update_interval": 120, "latitude": -22.8360719, "longitude": -43.2883229, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000421", "name": "LINHA VERMELHA ALT. DA AV. BRIGADEIRO TROMPOWSKI", "rtsp_url": "rtsp://admin:admin@10.52.211.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842977, "longitude": -43.238479, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000422", "name": "AV. BRASIL X FIOCRUZ", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87239192, "longitude": -43.2448921, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000423", "name": "R. LEOPOLDO BULH\u00d5ES ALT. DA LINHA AMARELA", "rtsp_url": "rtsp://10.52.210.174/423-VIDEO", "update_interval": 120, "latitude": -22.871603, "longitude": -43.253429, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000425", "name": "AV. BRASIL X RUA TEIXEIRA RIBEIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.79/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.856187, "longitude": -43.24768, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000428", "name": "AV. PARANAPU\u00c3 X RUA CAPANEMA - FIXA", "rtsp_url": "rtsp://admin2:123smart@10.52.210.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.795282, "longitude": -43.182728, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000430", "name": "AV.BRASIL X R. FILOMENA NUNES", "rtsp_url": "rtsp://admin:admin@10.50.224.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.836912, "longitude": -43.258611, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000432", "name": "LINHA VERMELHA X HOSPITAL UNIVERSIT\u00c1RIO (UFRJ)", "rtsp_url": "rtsp://admin:admin@10.52.211.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842696, "longitude": -43.238659, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["image_condition", "water_in_road", "road_blockade", "traffic_ease_vehicle", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "000442", "name": "AV. VICENTE DE CARVALHO X AV. MERITI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.151/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.850397, "longitude": -43.309662, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000443", "name": "AV. MARTIN LUTHER X AV. VICENTE DE CARVALHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.152/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.853322, "longitude": -43.313861, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000446", "name": "AV. SARGENTO DE MIL\u00cdCIAS X R. SARGENTO FERNANDES FONTES", "rtsp_url": "rtsp://admin:admin@10.52.210.52/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.805722, "longitude": -43.366053, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000448", "name": "RUA SALVADOR ALLENDE X PEDRO CALMON", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97858205, "longitude": -43.40781011, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000450", "name": "AV. PASTOR MARTIN LUTHER KING JR.\u00a0X AV. MONSENHOR FELIX - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.847071, "longitude": -43.324671, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000451", "name": "AV. BR\u00c1S DE PINA X R. PE. ROSER X AV. MERITI (LARGO DO BIC\u00c3O) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839329, "longitude": -43.311646, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000452", "name": "AV. DOM H\u00c9LDER C\u00c2MARA X R. PDE MANOEL DA N\u00d3BREGA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885049, "longitude": -43.310734, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000454", "name": "ESTR. INTENDENTE MAGALH\u00c3ES X R. HENRIQUE DE MELO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879062, "longitude": -43.356686, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000455", "name": "AV. ERNANI CARDOSO X ALBERTO SILVA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882581, "longitude": -43.337642, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000456", "name": "R. CANDIDO BENICIO X ESTRADA INTENDENTE MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88302488, "longitude": -43.34265525, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000456.png", "snapshot_timestamp": "2024-02-10T00:56:06.584892+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "image_description", "water_level", "water_in_road", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:20.901863+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:38.133373+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. The traffic is flowing smoothly in all directions, with no congestion or delays."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:23.876104+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection at night. The street lights are on, and there are cars driving in all directions. There are also people crossing the road. The road surface is visible, and there is no sign of waterlogging or flooding. There are trees on either side of the road, and buildings in the background."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:37.923512+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface. The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:34.948701+00:00", "label": "false", "label_explanation": "There is no water on the road surface. The road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:38.343707+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades. The traffic is flowing smoothly in all directions."}]}, {"id": "000457", "name": "AV. ERNANI CARDOSO X R. PADRE TEL\u00caMACO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882067, "longitude": -43.33202, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000458", "name": "AV. D. HELDER C\u00c2MARA X R. CER. DALTRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.85/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88216538, "longitude": -43.32467071, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000460", "name": "AV. MINISTRO EDGARD ROMERO X R. CONSELHEIRO GALV\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.46/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87229, "longitude": -43.336387, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000462", "name": "ESTR. DO PORTELA X R. FIRMINO FRAGOSO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.47/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87055933, "longitude": -43.34197092, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000464", "name": "RUA SALVADOR ALLENDE X PR\u00d3X. OLOF PALME", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.118/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982722, "longitude": -43.410896, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000466", "name": "AV. DAS AM\u00c9RICAS X SHOPPING RECREIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.020528, "longitude": -43.490238, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000467", "name": "AV. DAS AM\u00c9RICAS X AV. C\u00c2NDIDO PORTINARI (ALT. DO RIBALTA)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.253/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.999444, "longitude": -43.408248, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000468", "name": "AV. AYRTON SENNA X CIDADE DA ARTE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00342823, "longitude": -43.366288, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000472", "name": "AV. DAS AM\u00c9RICAS X ALTURA DO COL\u00c9GIO NOTRE DAME", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.020222, "longitude": -43.501439, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000474", "name": "AV. LUCIO COSTA X AV. DO CONTORNO - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.209.122/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.022384, "longitude": -43.447999, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000475", "name": "AV. ALFREDO BALTAZAR DA SILVEIRA X R. GLAUCIO GIL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.022315, "longitude": -43.458213, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000476", "name": "AV. LUCIO COSTA X R. GLAUCIO GIL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.024902, "longitude": -43.457215, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000480", "name": "ESTR. DA BARRA DA TIJUCA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00588786, "longitude": -43.30417465, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000482", "name": "AV. MIN. IVAN LINS X ALTURA DA PONTE DA JOATINGA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012498, "longitude": -43.29918299, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000483", "name": "ESTRADA DO PONTAL EM FRENTE AO N.\u00ba 6870 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.03024991, "longitude": -43.47844879, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000484", "name": "AV. DAS AM\u00c9RICAS X AV. SALVADOR ALLENDE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00637287, "longitude": -43.43713414, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000485", "name": "AV. DAS AM\u00c9RICAS X ESTR. BENVINDO DE NOVAES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.94/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01305144, "longitude": -43.46352352, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000487", "name": "AV. GILKA MACHADO X ESTR. DO PONTAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.031018, "longitude": -43.471851, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000488", "name": "RUA OLOF PALM X ABRA\u00c3O JABOUR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978317, "longitude": -43.416542, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000490", "name": "AV. SALVADOR ALLENDE (RIO CENTRO)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.115/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981034, "longitude": -43.409686, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000493", "name": "ESTR. DE JACAREPAGU\u00c1 X R. TIROL", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94144, "longitude": -43.34115, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000495", "name": "R. TIROL X R. CMTE RUBENS SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93978191, "longitude": -43.33670107, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000497", "name": "EST. CEL. PEDRO CORR\u00caA X EST. DOS BANDEIRANTES", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.960245, "longitude": -43.389772, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000498", "name": "AV. CES\u00c1RIO DE MELLO X R. ADOLFO LEMOS", "rtsp_url": "rtsp://user:7lanmstr@10.52.208.14/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913834, "longitude": -43.59748, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000500", "name": "AV. CES\u00c1RIO DE MELLO X RUA MORANGO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910571, "longitude": -43.58346, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000503", "name": "AV. NELSON CARDOSO X R. BACAIRIS", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921718, "longitude": -43.371212, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000504", "name": "R. BACAIRIS X R. APIAC\u00c1S - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920986, "longitude": -43.371674, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000505", "name": "ESTR. DO TINDIBA X R. CAVIANA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918555, "longitude": -43.376051, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000510", "name": "ESTR. DOS BANDEIRANTES X AV. SALVADOR ALLENDE", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.960586, "longitude": -43.39178, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000511", "name": "ESTR. DO TINDIBA X R. LOPES SARAIVA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.927073, "longitude": -43.360709, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000512", "name": "AV. GEREM\u00c1RIO DANTAS X R. EDGAR WERNECK", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.936213, "longitude": -43.351901, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000513", "name": "AV. GEREM\u00c1RIO DANTAS X SOB LINHA AMARELA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93819, "longitude": -43.349368, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000514", "name": "AV. GEREM\u00c1RIO DANTAS X ESTR. DOS TR\u00caS RIOS (P\u00c7A. PROF\u00aa CAMIS\u00c3O)", "rtsp_url": "rtsp://admin:admin@10.50.224.222/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93978, "longitude": -43.343768, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000515", "name": "ESTR. DOS TR\u00caS RIOS X ESTR. DO BANANAL", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.936381, "longitude": -43.333275, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000516", "name": "AV. CES\u00c1RIO DE MELO X ESTADA SANTA EUG\u00caNIA", "rtsp_url": "rtsp://user:7lanmstr@10.52.208.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91701478, "longitude": -43.63368435, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000517", "name": "AV. CES\u00c1RIO DE MELLO X VIADUTO DE PACI\u00caNCIA", "rtsp_url": "rtsp://user:7lanmstr@10.52.208.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915809, "longitude": -43.628979, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000520", "name": "ESTR. DO PAU-FERRO X ESTR. DO GUANUMBI", "rtsp_url": "rtsp://10.50.224.115/520-VIDEO", "update_interval": 120, "latitude": -22.932706, "longitude": -43.330454, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000523", "name": "ESTR. TENENTE CORONEL MUNIZ DE ARAG\u00c3O X ESTR. DE JACAREPAGU\u00c1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94752956, "longitude": -43.3396749, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000525", "name": "ESTR. DE JACAREPAGU\u00c1 X ESTR.DO ENGENHO D\u00c1GUA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955084, "longitude": -43.337384, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000526", "name": "ESTR. DO TINDIBA X P\u00c7A JAURU", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916678, "longitude": -43.377478, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000527", "name": "ESTR. DO TINDIBA X ESTR. MERINGUAVA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914672, "longitude": -43.380836, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000528", "name": "ESTR. DO CAFUND\u00c1 X ESTR. MERINGUAVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914204, "longitude": -43.375713, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000528.png", "snapshot_timestamp": "2024-02-10T00:55:30.341571+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_level", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:55:52.335106+00:00", "label": "clean", "label_explanation": "The image is moderately clear, with some blurring and a few areas of uniform color. There are no major distortions or obstructions that would affect the analysis."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:58.281651+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly in both directions."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:55.851288+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:52.902693+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:52.625607+00:00", "label": "null", "label_explanation": "The image is a night view of a four-way road intersection. There is a traffic light at the intersection, and street lights along the road. There are several cars parked on the side of the road, and a few people are walking around. The road is moderately busy, with cars driving in both directions. The buildings along the road are mostly commercial, with a few residential buildings mixed in. The road surface is in good condition, with no visible potholes or cracks. There is a moderate amount of litter on the ground."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:01.388989+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades."}]}, {"id": "000532", "name": "BURACO DO PADRE", "rtsp_url": "rtsp://admin:admin@10.52.210.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9029945, "longitude": -43.26851963, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000533", "name": "R. ANDR\u00c9 ROCHA X R. MAL. JOS\u00c9 BEVIL\u00c1QUA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92365833, "longitude": -43.36903261, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000534", "name": "ESTR. DOS BANDEIRANTES X OLOF PALM - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.116/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977804, "longitude": -43.417239, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000535", "name": "ESTR. DOS BANDEIRANTES X ESTR. DA CURICICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96327796, "longitude": -43.40330797, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000536", "name": "ESTR. DOS TR\u00caS RIOS X R. CMTE RUBENS SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93764629, "longitude": -43.33728808, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000537", "name": "AVENIDA ALFREDO BALTAZAR DA SILVEIRA X RUA ODILON DUARTE BRAGA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.126/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01200056, "longitude": -43.44374712, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000544", "name": "R. MIN. ARY FRANCO X R. SUL AM\u00c9RICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.873594, "longitude": -43.464871, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000545", "name": "AV. DE SANTA CRUZ X R. FRANCISCO REAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.877114, "longitude": -43.445767, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000547", "name": "AV. BRASIL X ESTR. DA EQUITA\u00c7\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.862069, "longitude": -43.411317, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000548", "name": "AV. BRASIL X RESTAURANTE ALDEIAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.858247, "longitude": -43.501137, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000550", "name": "R. BERNARDO DE VASCONCELOS X PRA\u00c7A DO CANH\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.120/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.876301, "longitude": -43.430233, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000553", "name": "R. FRANCISCO REAL X R. SILVA CARDOSO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879715, "longitude": -43.463489, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000555", "name": "AV. DE SANTA CRUZ X R. SILVA CARDOSO", "rtsp_url": "rtsp://10.52.208.40/555-VIDEO", "update_interval": 120, "latitude": -22.875532, "longitude": -43.463503, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000557", "name": "AV. DE SANTA CRUZ X ESTR. DO REALENGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.118/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.877974, "longitude": -43.441604, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000561", "name": "AV. DE SANTA CRUZ X R. GAL. SEZEFREDO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.878107, "longitude": -43.434836, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000564", "name": "R. CAMPO GRANDE X ALT. ESTA\u00c7\u00c3O FERROVI\u00c1RIA DE CAMPO GRANDE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901756, "longitude": -43.558879, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000567", "name": "AV. CES\u00c1RIO DE MELO X ALT. DO CAL\u00c7AD\u00c3O DE CAMPO GRANDE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906044, "longitude": -43.559783, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000568", "name": "AV. CES\u00c1RIO DE MELO X R. AUR\u00c9LIO DE FIGUEIREDO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904878, "longitude": -43.556736, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000570", "name": "ESTR. DA CAROBA X AV. CES\u00c1RIO DE MELO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89759053, "longitude": -43.54829279, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000571", "name": "AV. CES\u00c1RIO DE MELO X R. ARTUR RIOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.39/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902388, "longitude": -43.549064, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000572", "name": "ESTR. RIO DO A X ESTR. RIO S\u00c3O PAULO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894372, "longitude": -43.560072, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000574", "name": "R. XAVIER MARQUES X R. CEL. AGOSTINHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.17/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90389, "longitude": -43.559139, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000576", "name": "R. OLINDA ELLIS X ALT. CENTRO ESPORTIVO MI\u00c9CIMO DA SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914183, "longitude": -43.554338, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000577", "name": "ESTR. DA CACHAMORRA X R. OLINDA ELLIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914464, "longitude": -43.549955, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000578", "name": "ESTR. DO MONTEIRO (ENTRE ESTR. DA CAMBOTA E ESTR. IARAQU\u00c3) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920631, "longitude": -43.56299, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000580", "name": "ESTR. DO CAMPINHO X ESTR. SANTA MARIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.116/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894273, "longitude": -43.584931, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000583", "name": "AV. BRASIL X ESTR. RIO-S\u00c3O PAULO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.868979, "longitude": -43.596368, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000588", "name": "R. FELIPE CARDOSO X AV. CES\u00c1RIO DE MELO (P\u00c7A. SANTA CRUZ)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.935591, "longitude": -43.666942, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000589", "name": "R. FELIPE CARDOSO X AV. ISABEL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919718, "longitude": -43.68197, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000591", "name": "R. FELIPE CARDOSO X AV. ENG\u00ba GAST\u00c3O RANGEL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92711, "longitude": -43.678165, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000594", "name": "RUA SENADOR CAMAR\u00c1, 207", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.29/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914262, "longitude": -43.686219, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000595", "name": "R. D. JO\u00c3O VI X R. SENADOR C\u00c2MARA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915512, "longitude": -43.684849, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000596", "name": "AV. BRASIL X ESTR. DO CAMPINHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881187, "longitude": -43.632492, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000600", "name": "UERJ", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.156/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911703, "longitude": -43.236397, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000601", "name": "BARTOLOMEU DE GUSM\u00c3O - ACESSO AO MARACAN\u00c3", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909278, "longitude": -43.226288, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000602", "name": "CONDE DE BONFIM X ALZIRA BRAND\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.924532, "longitude": -43.224376, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000610", "name": "AV. EMBAIXADOR ABELARDO BUENO - EM FRENTE 73", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.4/cam/realmonitor?channel=1&subtype=2&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9737359, "longitude": -43.40020534, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000611", "name": "IPERJ", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901878, "longitude": -43.182273, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000612", "name": "AV. VIEIRA SOUTO X R. FRANCISCO OTAVIANO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987883, "longitude": -43.194503, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000613", "name": "POSTO 7", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.133/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989201, "longitude": -43.191494, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000636", "name": "AV. BRASIL X R. LEOC\u00c1DIO FIGUEIREDO - GUADALUPE SHOPPING", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.247/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84057995, "longitude": -43.36928373, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000654", "name": "AV. L\u00daCIO COSTA 3100", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01150157, "longitude": -43.32520277, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000705", "name": "BRT TRANSOL\u00cdMPICA X R. ALMIRANTE MIL\u00c2NEZ", "rtsp_url": "rtsp://admin:admin@10.52.208.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.872966, "longitude": -43.408237, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000706", "name": "R. ENGENHEIRO TRAJANO DE MEDEIROS X R. CARINHANHA", "rtsp_url": "rtsp://admin:admin@10.52.208.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.872911, "longitude": -43.41286, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000708", "name": "AV. DUQUE DE CAXIAS X TEN. NEPOMUCENO", "rtsp_url": "rtsp://admin:admin@10.52.208.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.867998, "longitude": -43.406686, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000713", "name": "AV. DUQUE DE CAXIAS X AV. GAL. GOMES CARNEIRO", "rtsp_url": "rtsp://admin:admin@10.52.208.79/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.862207, "longitude": -43.394428, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000715", "name": "AV. BRASIL X R. GERICIN\u00d3", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85906, "longitude": -43.405754, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000722", "name": "ESTR. MARECHAL ALENCASTRO X AV. NAZARE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.46/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.853243, "longitude": -43.39135099, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000724", "name": "AV. BRASIL X R. MARCOS DE MACEDO", "rtsp_url": "rtsp://admin:admin@10.52.208.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.843844, "longitude": -43.37525, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000732", "name": "AV. BRASIL X AV. LOBO J\u00daNIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.827076, "longitude": -43.274333, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000737", "name": "AV. P. MARTIN LUTHER KING JR. X LARGO DO VICENTE DE CARVALHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.853136, "longitude": -43.314891, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000738", "name": "AV. VICENTE DE CARVALHO X R. SOLDADO SERVINO MENGAROA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.254/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.847473, "longitude": -43.305032, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000746", "name": "LINHA AMARELA ENTRADA 2, SENTIDO BARRA", "rtsp_url": "rtsp://user:7lanmstr@10.52.208.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904457, "longitude": -43.304846, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000747", "name": "R. GOI\u00c1S X R. GUINEZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8954167, "longitude": -43.29856869, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000756", "name": "AV. DOS DEMOCR\u00c1TICOS X AV. NOVO RIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.871755, "longitude": -43.258258, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000757", "name": "R. CONDE DE BONFIM 305 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923262, "longitude": -43.231088, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000758", "name": "AV. MARACANA X PRA\u00c7A LUIS LA SAIGNE", "rtsp_url": "rtsp://admin:admin@10.52.208.47/cam/realmonitor?channel=1&subtype=2&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921331, "longitude": -43.235703, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000759", "name": "R. S\u00c3O FRANCISCO XAVIER X R. 8 DE DEZEMBRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908938, "longitude": -43.238636, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000760", "name": "AV. MARECHAL RONDON X R. SOUSA DANTAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.905137, "longitude": -43.244102, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000765", "name": "R. PREFEITO OLIMPIO DE MELO X R. CHIBATA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890345, "longitude": -43.23419, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000766", "name": "RUA BELA 909 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88797118, "longitude": -43.22537744, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000766.png", "snapshot_timestamp": "2024-02-10T00:56:02.065020+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "water_level", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:56:29.890318+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:30.681669+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are no obstructions on the road, and the parked cars are not blocking traffic. The road is in good condition, and there are no signs of construction or other hazards. Overall, the road is easy to navigate for vehicles."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:30.952894+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades. Traffic is flowing smoothly, and there are no signs of congestion. The road is open to traffic in both directions."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:26.753147+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by a single street lamp, and there are a few cars parked on the side of the road. There is a building on the left side of the street with graffiti on the walls. The street is made of asphalt and is in good condition. There are no visible signs of water on the road."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:30.265364+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road, so the water level is low."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:26.542840+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}]}, {"id": "000767", "name": "AV. BRASIL X R. FRANCO DE ALMEIDA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.886307, "longitude": -43.224766, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000768", "name": "AV. BRASIL X R. FRANCO DE ALMEIDA", "rtsp_url": "rtsp://admin:123smart@10.52.32.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88652, "longitude": -43.22519, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000771", "name": "AV. REI PELE X VIADUTO ODUVALDO COZZI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.190/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910868, "longitude": -43.226114, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000773", "name": "R. GENERAL HERCULANO GOMES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908976, "longitude": -43.222637, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000774", "name": "QUINTA DA BOA VISTA 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908126, "longitude": -43.221771, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000775", "name": "QUINTA DA BOA VISTA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904731, "longitude": -43.220328, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000789", "name": "AV. SALVADOR DE S\u00c1 X RUA EST\u00c1CIO DE S\u00c1 X FREI CANECA", "rtsp_url": "rtsp://admin:admin@10.52.33.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91384364, "longitude": -43.20440066, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000790", "name": "AV. SALVADOR DE S\u00c1 X R. FREI CANECA (LARGO DO EST\u00c1CIO)", "rtsp_url": "rtsp://admin:admin@10.52.33.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913196, "longitude": -43.202951, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000793", "name": "AV. SALVADOR DE S\u00c1 X TRAV. PEDREGAIS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.16/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912047, "longitude": -43.197545, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000793.png", "snapshot_timestamp": "2024-02-10T00:55:41.129812+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "traffic_ease_vehicle", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:09.804971+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. However, there are some areas of uniform color, which may indicate missing data."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:10.403735+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:11.963058+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by a large crowd of people."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:11.733058+00:00", "label": "impossible", "label_explanation": "The road is completely blocked by a large crowd of people."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:10.001981+00:00", "label": "null", "label_explanation": "The image shows a large crowd of people lined up on a street. There are also several people walking around and some cars parked on the side of the road. The street is made of asphalt and is in good condition. There are buildings and trees on either side of the street. The weather is clear and it is daytime."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:10.595116+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}]}, {"id": "000794", "name": "AV. PRES. VARGAS X RUA 1\u00ba DE MAR\u00c7O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91231, "longitude": -43.195245, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000794.png", "snapshot_timestamp": "2024-02-10T00:55:56.791179+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_in_road", "image_description", "road_blockade", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:14.530819+00:00", "label": "clean", "label_explanation": "The image is moderately clear, with some blurring and a small area of uniform color in the top left corner. There are no major distortions or obstructions that would affect the overall analysis."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:15.620670+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. The road is clear of any obstructions and appears to be in good condition, allowing for easy vehicle movement."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:15.124864+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:14.873748+00:00", "label": "null", "label_explanation": "The image is a night view of a moderately curved road. The road is partially lit by streetlights, and there are trees and other vegetation on either side. There is a building on the left side of the road, and a park on the right side. The road is not visible in the top left corner due to a wall."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:15.847856+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades visible. Traffic can flow freely without any hindrance."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:15.356223+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}]}, {"id": "000795", "name": "AV. SALVADOR DE S\u00c1, ALTURA DO BATALH\u00c3O DO CHOQUE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911706, "longitude": -43.195338, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000795.png", "snapshot_timestamp": "2024-02-10T00:55:47.016573+00:00", "objects": ["image_condition", "water_in_road", "road_blockade", "traffic_ease_vehicle", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:09.786250+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no major obstructions or distortions that would affect the analysis."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:10.236088+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is wet from recent rain, but there is no standing water."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:19.165017+00:00", "label": "free", "label_explanation": "The road is clear and has good visibility. There are no major obstructions or distortions that would affect the analysis."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:13.537944+00:00", "label": "easy", "label_explanation": "The road is wet from recent rain, but there is no standing water. The road is clear and has good visibility. There are no major obstructions or distortions that would affect the analysis."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:10.025595+00:00", "label": "null", "label_explanation": "The image shows a section of an urban road with several people walking on the left side of the road. On the right side of the road, a black truck drives in the same direction as the pedestrians. The road is wet from recent rain, but there is no standing water. The sky is cloudy, and the sun is not visible."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:10.469339+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is wet from recent rain, but there is no standing water."}]}, {"id": "000801", "name": "AV. MEM DE S X R. DOS INV\u00c1LIDOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91271, "longitude": -43.184501, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000801.png", "snapshot_timestamp": "2024-02-10T00:55:25.108324+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_description", "image_condition", "road_blockade", "water_in_road"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:54.920026+00:00", "label": "easy", "label_explanation": "The road is dry, and there are no obstructions visible. Traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:52.684735+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is low_indifferent."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:51.975482+00:00", "label": "null", "label_explanation": "The image shows a wide road with a few cars parked on the side. The road is not completely visible, as there are some trees and buildings obstructing the view. The sky is cloudy, and the sun is not visible. There are no people visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:51.679376+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and consistent, and there are no large areas of uniform color."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:58.256732+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road. Traffic can flow freely."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:52.332960+00:00", "label": "false", "label_explanation": "There is no water visible on the road. The road surface is dry, and there are no puddles or other signs of water."}]}, {"id": "000833", "name": "R. MARQUES DE ABRANTES X R. MARQUES DE PARANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.938009, "longitude": -43.177722, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000834", "name": "R. MARQU\u00caS DE ABRANTES X ALTURA DA P.DE BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94104, "longitude": -43.178764, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000835", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X BOTAFOGO - FIXA", "rtsp_url": "rtsp://10.52.34.133/", "update_interval": 120, "latitude": -22.9496107, "longitude": -43.18063271, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000838", "name": "AV. NOSSA SRA DE COPACABANA X R. FIG. MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97030516, "longitude": -43.18587461, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000839", "name": "R. CONDE AFONSE CELSO, ALT. HOSPITAL DA LAGOA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96291239, "longitude": -43.21651606, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000840", "name": "AV. BORGES DE MEDEIROS X R. MARIA ANG\u00c9LICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96302, "longitude": -43.207585, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000842", "name": "AV. LINEU DE P. MACHADO X R. BATISTA DA COSTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964217, "longitude": -43.216124, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000845", "name": "JOQUEI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973291, "longitude": -43.225274, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000846", "name": "AV. BORGES DE MEDEIROS X PARQUE DOS PATINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97027, "longitude": -43.217357, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000869", "name": "R. SARGENTO JO\u00c3O DE FARIA X AV. MINISTRO IVAN LINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.013308, "longitude": -43.297607, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/000869.png", "snapshot_timestamp": "2024-02-10T00:55:34.491073+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_in_road", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:55:46.539501+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:48.686760+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are no obstructions on the road, and traffic is flowing smoothly."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:46.950742+00:00", "label": "false", "label_explanation": "There is no water on the road surface. The road is completely dry."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:47.235582+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road's surface. The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:46.734656+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are trees on either side of the road. There is a bus and a white car on the street, and a bicycle lane can be seen on the right side of the image. There are also some parked cars on the side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:49.826889+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions to traffic flow. There are no signs of flooding, and the road is open to traffic in both directions."}]}, {"id": "000870", "name": "AV. OLEG\u00c1RIO MACIEL X AV. GILBERTO AMADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.011972, "longitude": -43.304979, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000872", "name": "AV. DO PEP\u00ca X AV. OLEG\u00c1RIO MACIEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.46/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.015203, "longitude": -43.3058, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000873", "name": "AV. \u00c9RICO VER\u00cdSSIMO X RUA FERNANDO DE MATTOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01142234, "longitude": -43.30971037, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000891", "name": "AV. LUCIO COSTA X RUA ALBERT SABINN - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.028236, "longitude": -43.466651, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000894", "name": "AV. DAS AMERICAS, ALTURA DO N\u00ba 19.400", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018612, "longitude": -43.508016, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000895", "name": "AV. DAS AM\u00c9RICAS, SA\u00cdDA DO T. DA GROTA FUNDA - SENTIDO GUARATIBA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.015903, "longitude": -43.517289, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000901", "name": "ESTR. DOS BANDEIRANTES, 8085", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.69/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.972078, "longitude": -43.41415799, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "000902", "name": "ESTR. DOS BANDEIRANTES, N\u00b0 7800", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968051, "longitude": -43.413291, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001000", "name": "AV. ATL\u00c2NTICA X R. RAINHA ELISABETH - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98468306, "longitude": -43.18958726, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001002", "name": "RUA BARATA RIBEIRO X R. PROFESSOR GAST\u00c3O BAHIANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97781347, "longitude": -43.19295061, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001004", "name": "AV. NIEMEYER PROX. HOTEL NACIONAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.171/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9984795, "longitude": -43.25618078, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001006", "name": "AV. VIEIRA SOUTO X R. VIN\u00cdCIUS DE MORAES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98678318, "longitude": -43.20296134, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001008", "name": "AV. RIO BRANCO X R. EVARISTO DA VEIGA - FIXA", "rtsp_url": "rtsp://admin:admin@10.52.17.30/axis-media/media.amp?fps=15&resolution=1280x960&compression=70", "update_interval": 120, "latitude": -22.90951799, "longitude": -43.17603413, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001011", "name": "R. JOS DOS REIS X R. GENERAL CLARINDO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89232086, "longitude": -43.29481819, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001012", "name": "R. DAS OFICINAS X R. JOS\u00c9 DOS REIS", "rtsp_url": "rtsp://10.52.210.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89051043, "longitude": -43.29425698, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001013", "name": "R. DAS OFICINAS X R. HENRIQUE SCHEID", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.41/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89147164, "longitude": -43.29162305, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001014", "name": "R. ARQUIAS CORDEIRO X R. DR. PADILHA", "rtsp_url": "rtsp://admin:admin@10.52.210.31/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895631, "longitude": -43.291151, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001015", "name": "R. ARQUIAS X R. PIAUI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.896753, "longitude": -43.286711, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001017", "name": "AV. EMBAIXADOR ABERLADO BUENO, PR\u00d3X. AO PARQUE AQU\u00c1TICO MARIA LENK", "rtsp_url": "rtsp://admin:admin@10.50.106.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973572, "longitude": -43.388123, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001018", "name": "AV. ABELARDO BUENO, ALTURA DO N\u00ba 523", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973124, "longitude": -43.38819, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001019", "name": "DESCIDA DO MERGULH\u00c3O X SENTIDO BARRA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99722394, "longitude": -43.36567915, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001020", "name": "MERGULH\u00c3O BARRA - FIXA", "rtsp_url": "rtsp://admin:cor12345@10.50.106.32/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99743134, "longitude": -43.36581862, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001021", "name": "DRUMMOND 02 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98461975, "longitude": -43.18941576, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001026", "name": "R. ARISTIDES CAIRE X R. SANTA F\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89941568, "longitude": -43.27842867, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001027", "name": "R. ARISTIDES CAIRE X R. SANTA F\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89946262, "longitude": -43.27859966, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001028", "name": "R. ARISTIDES CAIRE X R. SANTA F\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89960593, "longitude": -43.27806389, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001029", "name": "R. ARISTIDES CAIRE X R. SANTA F\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8996745, "longitude": -43.27816514, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001030", "name": "R. 24 DE MAIO X R. C\u00d4NEGO TOBIAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.69/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90227805, "longitude": -43.27763871, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001031", "name": "R. 24 DE MAIO X R. C\u00d4NEGO TOBIAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.67/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902367, "longitude": -43.277573, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001032", "name": "RUA ANA BARBOSA N\u00ba12 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90162576, "longitude": -43.28052342, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001033", "name": "RUA ANA BARBOSA N\u00ba12 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90179872, "longitude": -43.28070045, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001034", "name": "RUA MEDINA N\u00ba165 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.127/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90053367, "longitude": -43.281945, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001035", "name": "RUA MEDINA N\u00ba165 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90062756, "longitude": -43.28182161, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001037", "name": "R. ARQUIAS CORDEIRO X R. CORA\u00c7\u00c3O DE MARIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89919158, "longitude": -43.28047196, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001038", "name": "R. SILVA RABELO 39 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90104722, "longitude": -43.28030749, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001039", "name": "R. SILVA RABELO 39 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90087673, "longitude": -43.28048183, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001040", "name": "AV. AMARO CAVALCANTI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90035459, "longitude": -43.27960348, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001041", "name": "R. CONSTAN\u00c7A BARBOSA X AV. CAVALCANTI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90047319, "longitude": -43.2797054, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001042", "name": "R. DIAS DA CRUZ, 69 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901962, "longitude": -43.279594, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001043", "name": "R. DIAS DA CRUZ, 69 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90196755, "longitude": -43.27952225, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001044", "name": "R. DIAS DA CRUZ, 163 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90291088, "longitude": -43.28215593, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001045", "name": "R. DIAS DA CRUZ, 163 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902817, "longitude": -43.281995, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001046", "name": "R. ARQUIAS CORDEIRO 346 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90165462, "longitude": -43.27796656, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001047", "name": "R. ARQUIAS CORDEIRO 346 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90176457, "longitude": -43.27785793, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001048", "name": "R. PADRE ANDR\u00c9 MOREIRA 58 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902495, "longitude": -43.27522924, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001049", "name": "TERMINAL AMERICO AYRES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9023134, "longitude": -43.27552294, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001050", "name": "R. CAROLINA MEIER, 26 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90185542, "longitude": -43.27634267, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001051", "name": "R. CAROLINA MEIER, 26 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90175597, "longitude": -43.27628366, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001052", "name": "R. DIAS DA CRUZ, 19 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.70/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90211073, "longitude": -43.27869533, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001053", "name": "R. DIAS DA CRUZ, 19 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.68/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90199213, "longitude": -43.27867388, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001054", "name": "TERMINAL AM\u00c9RICO AYRES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901713, "longitude": -43.275514, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001055", "name": "TERMINAL AM\u00c9RICO AYRES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90179144, "longitude": -43.27518341, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001056", "name": "HOSPITAL SALGADO FILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90126856, "longitude": -43.27836554, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001057", "name": "AV. AMARO CAVALCANTI N\u00ba135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901128, "longitude": -43.278867, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001058", "name": "AV. AMARO CAVALCANTI N\u00ba135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90106314, "longitude": -43.27890857, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001059", "name": "PRA\u00c7A JARDIM DO M\u00c9IER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90018106, "longitude": -43.27859743, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001060", "name": "ESTR. DO PORTELA 247 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87068846, "longitude": -43.34182943, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001061", "name": "R. GENERAL HERCULANO GOMES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9089167, "longitude": -43.22255183, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001062", "name": "QUINTA DA BOA VISTA 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90807723, "longitude": -43.22174629, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001064", "name": "ESTR. DE JACAREPAGU\u00c1 X ESTR.DO ENGENHO D\u00c1GUA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95514142, "longitude": -43.3372814, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001065", "name": "ESTR. T. CORONEL M. DE ARAG\u00c3O X ESTR. DE JACAREPAGU\u00c1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94757464, "longitude": -43.33976878, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001068", "name": "R. TIROL X R. CMTE RUBENS SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93959419, "longitude": -43.33679093, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001069", "name": "ESTR. DOS TR\u00caS RIOS X R. CMTE RUBENS SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93733752, "longitude": -43.33727132, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001073", "name": "AV. LINEU DE P. MACHADO X R. JOS\u00c9 JOAQUIM SEABRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96416266, "longitude": -43.21623665, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001074", "name": "JOQUEI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97307692, "longitude": -43.22498498, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001076", "name": "RUA CONDE DE BONFIM X R. RADMAKER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93451957, "longitude": -43.24304072, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001077", "name": "R. CONDE DE BONFIM X R. BASILEIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93880518, "longitude": -43.24760535, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001078", "name": "RUA CONDE DE BONFIM X R. RADMAKER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93431949, "longitude": -43.24317483, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001079", "name": "R. DIAS DA CRUZ, 69 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90187305, "longitude": -43.27958729, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001080", "name": "ESTR. DO CAFUND\u00c1 X ESTR. MERINGUAVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.121/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914204, "longitude": -43.37502635, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001080.png", "snapshot_timestamp": "2024-02-10T00:55:58.810747+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_description", "image_condition", "road_blockade", "water_in_road"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:13.531026+00:00", "label": "easy", "label_explanation": "The road is completely dry and there are no obstructions, so traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:10.408521+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:09.806551+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection in Rio de Janeiro. The street is lit by streetlights and the headlights of cars. There are several cars parked on the side of the street and a few people are walking around. The street is relatively clean and there is no visible water on the road."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:08.628927+00:00", "label": "clean", "label_explanation": "The image is moderately clear with some blurring and a few areas of uniform color. There are no major distortions or obstructions that would affect the overall analysis."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:16.458258+00:00", "label": "free", "label_explanation": "The road is completely clear with no obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:10.078941+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"id": "001082", "name": "AV. DE SANTA CRUZ X ESTR. DO REALENGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.119/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87836939, "longitude": -43.44057403, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001083", "name": "RUA BELA 909 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88795511, "longitude": -43.22529027, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001083.png", "snapshot_timestamp": "2024-02-10T00:56:18.434842+00:00", "objects": ["image_description", "water_level", "road_blockade", "water_in_road", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:30.937943+00:00", "label": "null", "label_explanation": "The image is a night view of a four-way road intersection. The road surface is made of asphalt and is in good condition. There are no visible potholes or cracks. The road is well-lit by streetlights. There are a few parked cars on the side of the road. The intersection is controlled by traffic lights. There are no pedestrians or other vehicles visible in the image."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:34.237036+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:34.815438+00:00", "label": "free", "label_explanation": "The road is completely clear, with no visible obstructions or blockades. Traffic can flow freely in all directions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:31.128495+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:30.527312+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:34.434347+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water or other obstructions. The road is clear and easy to navigate for vehicles."}]}, {"id": "001086", "name": "AV. BORGES DE MEDEIROS X R. MARIA ANG\u00c9LICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96300703, "longitude": -43.20745826, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001090", "name": "AV. BRASIL X ALTURA ESTR. DO ENGENHO NOVO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.84/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86517791, "longitude": -43.42731398, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001091", "name": "AV. PASTOR MARTIN LUTHER KING JR.\u00a0X AV. MONSENHOR FELIX - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84713155, "longitude": -43.32467703, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001092", "name": "ESTR. INTENDENTE MAGALH\u00c3ES X R. HENRIQUE DE MELO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8791386, "longitude": -43.35672085, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001093", "name": "R. CANDIDO BENICIO X ESTRADA INTENDENTE MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88304032, "longitude": -43.34249566, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001093.png", "snapshot_timestamp": "2024-02-10T00:55:58.241958+00:00", "objects": ["image_description", "image_condition", "water_level", "traffic_ease_vehicle", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:19.356489+00:00", "label": "null", "label_explanation": "The image is a night view of a busy urban road. The road is wet from rain, and there are street lights and other lights reflecting on the road surface. There are cars and trucks driving on the road, and the traffic is moderate. The road is in good condition, and there are no visible obstructions."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:13.488710+00:00", "label": "poor", "label_explanation": "The image is moderately distorted, with a few areas of uniform color and some blurring. The overall quality is poor, but the image is still usable for analysis."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:23.756234+00:00", "label": "low_indifferent", "label_explanation": "The water level is low, and it is not causing any significant problems for traffic. There are some small puddles on the road, but they are not deep enough to cause any problems."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:29.331996+00:00", "label": "easy", "label_explanation": "The traffic is moderate, and there are no major delays. The road is wet from rain, but it is still passable for vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:21.862363+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. The water is shallow and does not appear to be causing any problems for traffic."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:29.592893+00:00", "label": "free", "label_explanation": "There are no road blockades, and the road is open to traffic."}]}, {"id": "001097", "name": "AV. BRAZ DE PINA X R CMTE. CONCEI\u00c7\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.94/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839921, "longitude": -43.281957, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001099", "name": "AV. SANTA CRUZ X R. GAL. SEZEFREDO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87788953, "longitude": -43.43480649, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001101", "name": "R. OLINDA ELLIS X ALT. CENTRO ESPORTIVO MI\u00c9CIMO DA SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91428182, "longitude": -43.55418511, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001107", "name": "ESTR. DO CAMPINHO X ESTR. SANTA MARIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89411486, "longitude": -43.58504097, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001109", "name": "CONDE DE BONFIM X ALZIRA BRAND\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92460734, "longitude": -43.22441556, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001110", "name": "R. CONDE DE BONFIM X R. DOS ARA\u00daJOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92523, "longitude": -43.225606, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001111", "name": "AV. D. HELDER C\u00c2MARA X R. HENRIQUE SCHEID - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8868231, "longitude": -43.28777193, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001112", "name": "R. AMARO CAVALCANTI X VIADUTO DE TODOS OS SANTOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89730765, "longitude": -43.28563647, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001113", "name": "R. GOI\u00c1S X R. GUINEZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895392, "longitude": -43.298735, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001114", "name": "MONUMENTO PORT\u00c3O DA QUINTA DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9044747, "longitude": -43.22063443, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001115", "name": "MONUMENTO PORT\u00c3O DA QUINTA DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9048972, "longitude": -43.22047886, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001117", "name": "RUA MARQU\u00caS DE S\u00c3O VICENTE X R. VICE-GOV. RUBENS BERARDO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97714671, "longitude": -43.23073507, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001118", "name": "BOULEVARD 28 DE SETEMBRO - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.26.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91369517, "longitude": -43.23550774, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001119", "name": "MONUMENTO NOEL ROSA - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.26.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91362722, "longitude": -43.23541453, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001120", "name": "RUA S\u00c3O FRANCISCO XAVIER 478 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91340611, "longitude": -43.23527841, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001121", "name": "MONUMENTO NOEL ROSA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91353458, "longitude": -43.2353334, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001122", "name": "AV. D. HELDER C\u00c2MARA X R. CER. DALTRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.84/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882069, "longitude": -43.32496442, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001123", "name": "R. BERNARDO DE VASCONCELOS X PRA\u00c7A DO CANH\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.121/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87626146, "longitude": -43.42953026, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001124", "name": "R. S\u00c3O FRANCISCO XAVIER X R. 8 DE DEZEMBRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90878481, "longitude": -43.238695, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001128", "name": "AV. ERNANI CARDOSO X R. PADRE TEL\u00caMACO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.83/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8820985, "longitude": -43.33209376, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001129", "name": "R. ANDR\u00c9 ROCHA X R. MAL. JOS\u00c9 BEVIL\u00c1QUA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92372071, "longitude": -43.36910034, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001130", "name": "R. SANTANA X R. FREI CANECA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91128841, "longitude": -43.19353875, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001132", "name": "R. MEM DE S\u00c1 X R. DE SANTANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91105458, "longitude": -43.19264235, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001133", "name": "AV. BORGES DE MEDEIROS N\u00ba3709 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962791, "longitude": -43.206331, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001134", "name": "AV. BORGES DE MEDEIROS N\u00ba3709 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96290707, "longitude": -43.2063082, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001135", "name": "AV. DAS AM\u00c9RICAS X AV. AYRTON SENNA - CEBOL\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00015987, "longitude": -43.36986556, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001138", "name": "R. MUNIZ BARRETO X R. MARQUES DE OLINDA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94362303, "longitude": -43.18365921, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001139", "name": "R. MUNIZ BARRETO X R. MARQUES DE OLINDA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9436255, "longitude": -43.18380405, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001140", "name": "AV. ATL\u00c2NTICA X R. REP. DO PERU - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.189/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96923966, "longitude": -43.18086438, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001141", "name": "AV. BORGES DE MEDEIROS X PARQUE DOS PATINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97015701, "longitude": -43.21741533, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001142", "name": "AV. BORGES DE MEDEIROS X AV. EPIT\u00c1CIO PESSOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96323339, "longitude": -43.2044755, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001142.png", "snapshot_timestamp": "2024-02-10T00:56:16.385191+00:00", "objects": ["image_condition", "water_level", "road_blockade", "image_description", "traffic_ease_vehicle", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:34.513790+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color or blurring. The image quality is good, and all objects are clearly visible."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:35.602137+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:36.009333+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions. Traffic is flowing smoothly."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:34.820394+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are trees on either side of the road. There is a slight bend in the road to the right. There are cars parked on the side of the road, and there is a bus stop on the left side of the road. There are people walking on the sidewalk, and there is a cyclist riding in the bike lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:35.810659+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are no obstructions on the road, and traffic is flowing smoothly."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:35.369393+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is completely dry."}]}, {"id": "001143", "name": "AV. BORGES DE MEDEIROS X AV. EPIT\u00c1CIO PESSOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9633544, "longitude": -43.2043092, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001143.png", "snapshot_timestamp": "2024-02-10T00:55:45.715629+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:04.886034+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are trees and buildings on either side. The street is relatively empty, with only a few cars parked on the side. The image is clear and well-lit, and the colors are accurate."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:15.796475+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are no obstructions on the road, and the traffic flow is smooth."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:16.012809+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades. The traffic flow is smooth, and there are no signs of congestion."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:15.547504+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:09.774229+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:02.233484+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and the overall quality is good."}]}, {"id": "001144", "name": "AUTO ESTR. LAGOA-BARRA X EST. DA G\u00c1VEA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99225659, "longitude": -43.25182778, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001145", "name": "AUTO ESTR. LAGOA-BARRA X EST. DA G\u00c1VEA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99240733, "longitude": -43.25190403, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001146", "name": "R. IBIAPINA X R. MONSENHOR ALVES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.75/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84178054, "longitude": -43.27451741, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001147", "name": "R. IBIAPINA X R. MONSENHOR ALVES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84186379, "longitude": -43.27420118, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001148", "name": "ESTR. DA BARRA DA TIJUCA 506 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00771057, "longitude": -43.30250129, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001149", "name": "ESTR. DA BARRA DA TIJUCA 506 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00763403, "longitude": -43.30255091, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001150", "name": "ESTR. DA BARRA DA TIJUCA X HOTEL SERRAMAR - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00414375, "longitude": -43.30451097, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001151", "name": "ESTR. DA BARRA DA TIJUCA X HOTEL SERRAMAR - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00402524, "longitude": -43.30453511, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001152", "name": "AV. MEM DE S\u00c1 X R. DOS INV\u00c1LIDOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91270999, "longitude": -43.18437761, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001152.png", "snapshot_timestamp": "2024-02-10T00:58:19.906234+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_level", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:59.021072+00:00", "label": "easy", "label_explanation": "The road is clear and there is no visible traffic. The road is in good condition and there are no visible signs of damage."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:46.911605+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central reservation. The road is in good condition and there is no visible traffic. There are trees on either side of the road and buildings in the background. The sky is clear and there are no visible signs of rain."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:58.747430+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:55.126404+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:01.396473+00:00", "label": "free", "label_explanation": "The road is clear and there are no visible signs of obstructions."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:46.699761+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}]}, {"id": "001154", "name": "R. VISCONDE DO RIO BRANCO X R. DOS INV\u00c1LIDOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90830653, "longitude": -43.18628424, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001156", "name": "AV. RIO BRANCO, 4700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91414525, "longitude": -43.17467879, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001157", "name": "AV. RIO BRANCO, 4700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91405137, "longitude": -43.17467677, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001158", "name": "AV. AUGUSTO SEVERO N\u00ba 1746 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9145149, "longitude": -43.1761714, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001158.png", "snapshot_timestamp": "2024-02-10T00:56:21.752372+00:00", "objects": ["traffic_ease_vehicle", "water_level", "water_in_road", "road_blockade", "image_condition", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:49.266450+00:00", "label": "easy", "label_explanation": "The road surface is dry, and there are no obstructions visible. Traffic flow appears to be smooth, with no congestion or delays."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:48.987986+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, this category is indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:48.778126+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:49.473577+00:00", "label": "free", "label_explanation": "The road is clear, and there are no obstructions visible. Traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:48.356840+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:48.568946+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection at night. The roads are well-lit, and there are street lights along the sides. There are a few cars and motorbikes on the road, and the traffic appears to be light. There are also a few pedestrians crossing the road. The buildings in the background are tall and brightly lit. There are trees on either side of the road."}]}, {"id": "001159", "name": "PRA\u00c7A PARIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91460013, "longitude": -43.17578516, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001159.png", "snapshot_timestamp": "2024-02-10T00:56:09.653103+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_description", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:34.466211+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic flow should be easy."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:34.808402+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions. Traffic flow should be unimpeded."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:30.795607+00:00", "label": "null", "label_explanation": "The image is a night view of an urban road intersection. The road is in the foreground, with a park to the left and a crosswalk to the right. There are trees on either side of the road, and streetlights illuminate the scene. The road is dry, and there is no visible traffic."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:34.231454+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:31.129745+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:30.660732+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and consistent, and there are no large areas of uniform color. There is some motion blur in the image, but it does not significantly affect the overall quality."}]}, {"id": "001160", "name": "R. DOMINGOS LOPES X R. MARIA LOPES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.124/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87984191, "longitude": -43.3417642, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001160.png", "snapshot_timestamp": "2024-02-10T00:55:30.410339+00:00", "objects": ["image_description", "road_blockade", "traffic_ease_vehicle", "image_condition", "water_level", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:55:52.891631+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road in Rio de Janeiro. The road is well-lit, and there is moderate traffic. There are a few trees on either side of the road, and the buildings are mostly residential. The road is in good condition, with no visible signs of damage. There is a bus stop on the right side of the road, and a few cars are parked on the side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:01.396222+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:58.829301+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:52.705072+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:57.165222+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:54.960824+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"id": "001161", "name": "RUA TEIXEIRA DE FREITAS 59 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914249, "longitude": -43.17755, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001161.png", "snapshot_timestamp": "2024-02-10T00:56:09.580223+00:00", "objects": ["image_condition", "road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:29.334631+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear accurate, and there are no large areas of uniform color."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:38.572347+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:37.968464+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:37.741471+00:00", "label": "null", "label_explanation": "The image is a night scene of a busy intersection in Rio de Janeiro. The intersection is well-lit, with streetlights and traffic lights visible. There are several cars and buses on the road, as well as a number of pedestrians. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:38.374942+00:00", "label": "easy", "label_explanation": "The road is dry and free of obstructions, with traffic moving smoothly."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:38.174513+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}]}, {"id": "001162", "name": "RUA TEIXEIRA DE FREITAS 59 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91426505, "longitude": -43.1777686, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001162.png", "snapshot_timestamp": "2024-02-10T00:58:14.477381+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_condition", "water_in_road", "water_level", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:44.440394+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:55.120655+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:40.752621+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color or blurring. The image quality is good."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:41.231193+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:41.432459+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:40.998396+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are cars parked on either side of the street. There is also some foliage visible in the image."}]}, {"id": "001163", "name": "AV. LAURO SODR\u00c9 X R. GENERAL GOIS MONTEIRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95574994, "longitude": -43.17801361, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001163.png", "snapshot_timestamp": "2024-02-10T00:56:14.327088+00:00", "objects": ["water_in_road", "image_condition", "road_blockade", "image_description", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:56:26.816821+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some dry patches, and the water is not very deep. It is only covering the left side of the road, and it is not causing any traffic problems."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:26.324150+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:29.906896+00:00", "label": "free", "label_explanation": "The road is not blocked. There is some water on the road, but it is not very deep. It is only covering the left side of the road, and it is not very deep."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:26.541938+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road scene at night. It is illuminated by streetlights and the headlights of passing vehicles. The road is wet from recent rain, but there is no standing water. There are cars, motorbikes, and bicycles on the road, as well as a few pedestrians on the sidewalk. There are also trees and buildings lining the street."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:27.240087+00:00", "label": "easy", "label_explanation": "The road is wet, but it is not causing any traffic problems. There is some water on the road, but it is not very deep. It is only covering the left side of the road, and it is not very deep."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:27.018670+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. It is not covering the entire surface of the road, and it is not causing any traffic problems. It is only covering the left side of the road, and it is not very deep."}]}, {"id": "001164", "name": "AV. LAURO SODR\u00c9 X R. GENERAL GOIS MONTEIRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95561163, "longitude": -43.17833547, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001164.png", "snapshot_timestamp": "2024-02-10T00:56:03.584762+00:00", "objects": ["image_description", "traffic_ease_vehicle", "water_level", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:29.451562+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a bus and several cars driving on it. The road is lit by streetlights, and there are trees and buildings on either side of the road. There are also people walking on the sidewalk."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:30.381647+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:30.054980+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:23.658310+00:00", "label": "clean", "label_explanation": "The image is clear and has good visibility. There are no signs of image corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:29.713885+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:30.683089+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}]}, {"id": "001167", "name": "R. DO LAVRADIO, 151 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91185324, "longitude": -43.18236632, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001167.png", "snapshot_timestamp": "2024-02-10T00:55:40.499551+00:00", "objects": ["image_description", "traffic_ease_vehicle", "water_level", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:55:52.534075+00:00", "label": "null", "label_explanation": "The image is a night view of a wide, urban road with a central reservation and multiple lanes in each direction. There are tall buildings on either side of the road, and the street lights are on. There is a green traffic light visible in the foreground, and a few cars can be seen driving in the background."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:54.920803+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions to traffic flow."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:52.924814+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry, with no visible signs of water."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:52.720490+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:52.332676+00:00", "label": "poor", "label_explanation": "The image is of poor quality, with significant blurring and a large green block obscuring the center."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:58.274727+00:00", "label": "free", "label_explanation": "The road is completely clear, with no visible obstructions to traffic flow."}]}, {"id": "001168", "name": "R. DO LAVRADIO, 151 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91196071, "longitude": -43.18202836, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001168.png", "snapshot_timestamp": "2024-02-10T00:55:58.663291+00:00", "objects": ["traffic_ease_vehicle", "image_description", "image_condition", "road_blockade", "water_in_road", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:17.515104+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There is no traffic visible on the road, so it is not possible to assess the ease of vehicle movement."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:16.817373+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a central reservation and multiple lanes of traffic in each direction. The road is bordered by tall buildings and trees, and there is a clear blue sky with some puffy white clouds overhead. The road is dry, and there is no visible traffic. There are no people or other objects visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:16.611383+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there are no large areas of uniform color. The image is well-lit, and the details are clearly visible."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:17.738637+00:00", "label": "free", "label_explanation": "The road is clear, with no visible signs of obstructions or blockades. Traffic is flowing smoothly in both directions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:17.056189+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:17.313812+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry, with no visible signs of water."}]}, {"id": "001169", "name": "RUA DOS INV\u00c1LIDOS, 99 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9110065, "longitude": -43.1851347, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001169.png", "snapshot_timestamp": "2024-02-10T00:55:49.632094+00:00", "objects": ["traffic_ease_vehicle", "image_description", "image_condition", "road_blockade", "water_in_road", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:16.377474+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no visible obstructions or hazards. Traffic is likely to flow smoothly."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:15.518321+00:00", "label": "null", "label_explanation": "The image shows a wide, four-lane road with a central reservation and trees on either side. The road is in good condition, with no visible signs of damage or wear and tear. The central reservation is wide and well-maintained, with a variety of shrubs and trees. The trees on either side of the road are tall and healthy, and they provide a canopy of shade over the road. The sky is clear, and the sun is shining brightly. There are no people or vehicles visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:09.777527+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there are no large areas of uniform color."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:16.658989+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:15.760151+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:16.030657+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry, with no visible signs of water."}]}, {"id": "001170", "name": "RUA DOS INV\u00c1LIDOS, 99 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.18.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91114856, "longitude": -43.18508843, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001170.png", "snapshot_timestamp": "2024-02-10T00:56:19.781531+00:00", "objects": ["traffic_ease_vehicle", "image_description", "road_blockade", "water_in_road", "water_level", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:45.075802+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no visible obstructions. Traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:44.384872+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few trees on either side. The road is made of asphalt and is in good condition. There are no cars or other vehicles visible on the road. The sky is clear and there are no visible signs of rain."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:45.356401+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:44.665250+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:44.877259+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:44.191821+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and there are no large areas of uniform color."}]}, {"id": "001171", "name": "RUA EST\u00c1CIO DE S\u00c1, 165 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914749, "longitude": -43.206623, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001171.png", "snapshot_timestamp": "2024-02-10T00:55:15.316546+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_description", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:50.459674+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are a few cars on the road, and they are all driving in the same direction. The road is in good condition, and there are no visible signs of damage or construction."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:50.231000+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:49.775391+00:00", "label": "null", "label_explanation": "The image shows a wide road with a central reservation and multiple lanes on either side. The road is bordered by trees and buildings, and there is a traffic light in the distance. The sky is clear, and the sun is shining. There are a few cars on the road, and they are all driving in the same direction. The road is in good condition, and there are no visible signs of damage or construction."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:49.962680+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:48.062704+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:50.662775+00:00", "label": "free", "label_explanation": "The road is completely clear, with no visible signs of obstructions. There are a few cars on the road, and they are all driving in the same direction. The road is in good condition, and there are no visible signs of damage or construction."}]}, {"id": "001172", "name": "RUA EST\u00c1CIO DE S\u00c1, 165 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.33.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9146477, "longitude": -43.20683221, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001172.png", "snapshot_timestamp": "2024-02-10T00:56:05.275246+00:00", "objects": ["image_description", "traffic_ease_vehicle", "water_level", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:32.200323+00:00", "label": "null", "label_explanation": "The night scene captured in the image shows a relatively wide road with a central reservation. Streetlights illuminate the scene, and several trees line either side of the road. On the left side of the image, there is a bus stop with a few people waiting. The road surface appears dry, with no visible signs of water or obstructions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:32.927163+00:00", "label": "easy", "label_explanation": "The road surface is dry and free of obstructions, allowing for easy vehicle movement."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:32.719722+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, this category is not applicable."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:33.222994+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades visible in the image. Traffic can flow freely."}, {"object": "image_condition", "timestamp": "2024-02-10T00:53:27.990744+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:32.432550+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}]}, {"id": "001173", "name": "AV. ATL\u00c2NTICA X R. FIGUEIREDO DE MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97176, "longitude": -43.184409, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001174", "name": "AV. ATL\u00c2NTICA X R. FIGUEIREDO DE MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971662, "longitude": -43.18428, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001175", "name": "MONUMENTO PRINCESA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96514728, "longitude": -43.17355044, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001175.png", "snapshot_timestamp": "2024-02-10T00:55:53.290753+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_in_road", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:11.914432+00:00", "label": "clean", "label_explanation": "The image is clear and has no visible signs of corruption or distortion. There are no areas with uniform color or blurring."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:16.380977+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no visible obstructions. Traffic flow should be easy."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:12.329112+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:16.607933+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:12.118375+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are cars parked on either side of the street. There are also people walking on the street. The street is in good condition, and there is no visible water on the road."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:13.483986+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}]}, {"id": "001176", "name": "AV. ATL\u00c2NTICA X AV. PRINCESA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96506146, "longitude": -43.17342706, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001177", "name": "AV. ATL\u00c2NTICA X R. ANCHIETA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96364467, "longitude": -43.16979344, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001178", "name": "AV. ATL\u00c2NTICA X R. ANCHIETA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96356008, "longitude": -43.16962312, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001179", "name": "R. MIGUEL LEMOS X R. BARATA RIBEIRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97751308, "longitude": -43.19272234, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001180", "name": "R. MIGUEL LEMOS X R. BARATA RIBEIRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.205/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97742665, "longitude": -43.19270625, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001181", "name": "R. REAL GRANDEZA X R. ANIBAL REIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95904536, "longitude": -43.19118395, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001182", "name": "R. REAL GRANDEZA X R. ANIBAL REIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95917316, "longitude": -43.19112025, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001184", "name": "AV. ATL\u00c2NTICA X R. MIGUEL LEMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97828036, "longitude": -43.18848729, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001185", "name": "AV. ATL\u00c2NTICA X R. MIGUEL LEMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.198/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97841618, "longitude": -43.18870589, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001186", "name": "AV. ATL\u00c2NTICA X R. MIGUEL LEMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97839395, "longitude": -43.18842829, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001187", "name": "AV. ATL\u00c2NTICA 4134 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984869, "longitude": -43.189226, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001188", "name": "AV. ATL\u00c2NTICA 4100 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98495295, "longitude": -43.18933328, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001189", "name": "AV. ATL\u00c2NTICA 213 - FIXA", "rtsp_url": "rtsp://10.52.21.11/", "update_interval": 120, "latitude": -22.98585917, "longitude": -43.18872308, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["image_condition", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001190", "name": "AV. ATL\u00c2NTICA 213 - FIXA", "rtsp_url": "rtsp://10.52.21.12/", "update_interval": 120, "latitude": -22.98606288, "longitude": -43.188652, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001191", "name": "AV. ATL\u00c2NTICA 4146 - FIXA", "rtsp_url": "rtsp://10.52.21.13/", "update_interval": 120, "latitude": -22.984932, "longitude": -43.188939, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001192", "name": "AV. ATL\u00c2NTICA 4146 - FIXA", "rtsp_url": "rtsp://10.52.21.14/", "update_interval": 120, "latitude": -22.9850357, "longitude": -43.1888934, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001193", "name": "AV. ATL\u00c2NTICA 4146 - FIXA", "rtsp_url": "rtsp://10.52.21.15/", "update_interval": 120, "latitude": -22.98510731, "longitude": -43.18899532, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001194", "name": "AV. ATL\u00c2NTICA S/N - FIXA", "rtsp_url": "rtsp://10.52.252.177/", "update_interval": 120, "latitude": -22.98426572, "longitude": -43.18918705, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001195", "name": "AV. ATL\u00c2NTICA 181", "rtsp_url": "rtsp://10.52.252.178/", "update_interval": 120, "latitude": -22.98410892, "longitude": -43.18925009, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001196", "name": "AV. ATL\u00c2NTICA 175 - FIXA", "rtsp_url": "rtsp://10.52.21.16/", "update_interval": 120, "latitude": -22.98519621, "longitude": -43.18883975, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001197", "name": "AV ATLANTICA X R. JULIO DE CASTILHO - FIXA", "rtsp_url": "rtsp://10.52.252.179/", "update_interval": 120, "latitude": -22.98383, "longitude": -43.189629, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001198", "name": "AV ATLANTICA X R. JULIO DE CASTILHO - FIXA", "rtsp_url": "rtsp://10.52.252.180/", "update_interval": 120, "latitude": -22.98404976, "longitude": -43.18953512, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001199", "name": "AV. ATL\u00c2NTICA, 4240 - FIXA", "rtsp_url": "rtsp://10.52.21.17/", "update_interval": 120, "latitude": -22.986276, "longitude": -43.188942, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001200", "name": "AV. ATL\u00c2NTICA, 4240 - FIXA", "rtsp_url": "rtsp://10.52.21.18/", "update_interval": 120, "latitude": -22.98621673, "longitude": -43.18881325, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001201", "name": "AV. ATL\u00c2NTICA - COPACABANA - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983351, "longitude": -43.189877, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001202", "name": "AV. ATL\u00c2NTICA - COPACABANA - FIXA", "rtsp_url": "rtsp://10.52.252.129/", "update_interval": 120, "latitude": -22.98351891, "longitude": -43.1896651, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001203", "name": "AV. ATL\u00c2NTICA X R. SOUZA LIMA - FIXA", "rtsp_url": "rtsp://10.52.252.123/", "update_interval": 120, "latitude": -22.981578, "longitude": -43.189763, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001204", "name": "AV. ATL\u00c2NTICA X R. SOUZA LIMA - FIXA", "rtsp_url": "rtsp://10.52.252.122/", "update_interval": 120, "latitude": -22.981846, "longitude": -43.189783, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001205", "name": "AVENIDA ATL\u00c2NTICA, 3958, EM FRENTE \u00c0, R. JULIO - FIXA", "rtsp_url": "rtsp://10.52.252.130/", "update_interval": 120, "latitude": -22.98350867, "longitude": -43.18939034, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001206", "name": "AVENIDA ATL\u00c2NTICA, 3958, EM FRENTE \u00c0, R. JULIO - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98350867, "longitude": -43.18949227, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001207", "name": "AVENIDA ATL\u00c2NTICA, 3958, EM FRENTE \u00c0, R. JULIO - FIXA", "rtsp_url": "rtsp://10.52.252.132/", "update_interval": 120, "latitude": -22.98331113, "longitude": -43.18935279, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001208", "name": "AVENIDA ATL\u00c2NTICA, 3958, EM FRENTE \u00c0, R. JULIO - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98359757, "longitude": -43.18944667, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001209", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://10.52.252.120/", "update_interval": 120, "latitude": -22.980605, "longitude": -43.189594, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001210", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://10.52.252.121/", "update_interval": 120, "latitude": -22.98075439, "longitude": -43.18962618, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001211", "name": "AV. ATL\u00c2NTICA X R. FRANCISCO S\u00c1 - FIXA", "rtsp_url": "rtsp://10.52.252.125/", "update_interval": 120, "latitude": -22.982922, "longitude": -43.189551, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001212", "name": "AV. ATL\u00c2NTICA X R. FRANCISCO S\u00c1 - FIXA", "rtsp_url": "rtsp://10.52.252.126/", "update_interval": 120, "latitude": -22.982918, "longitude": -43.189372, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001213", "name": "AV. ATL\u00c2NTICA X R. FRANCISCO S\u00c1 - FIXA", "rtsp_url": "rtsp://10.52.252.127/", "update_interval": 120, "latitude": -22.98259, "longitude": -43.189437, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001214", "name": "AV. ATL\u00c2NTICA X R. FRANCISCO S\u00c1 - FIXA", "rtsp_url": "rtsp://10.52.252.124/", "update_interval": 120, "latitude": -22.982599, "longitude": -43.1896, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001215", "name": "R. REAL GRANDEZA, 384 - BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95953612, "longitude": -43.19104971, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001216", "name": "R. REAL GRANDEZA, 384 - BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95974357, "longitude": -43.1909156, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001217", "name": "R. REAL GRANDEZA X SA\u00cdDA DO T\u00daNEL ALAOR PRATA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.171/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9606938, "longitude": -43.19053003, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001218", "name": "R. REAL GRANDEZA X SA\u00cdDA DO T\u00daNEL ALAOR PRATA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96084259, "longitude": -43.19058837, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001219", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96284882, "longitude": -43.1670938, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001220", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96283956, "longitude": -43.16700998, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001221", "name": "R. TONELERO X R. FIGUEIREDO MAGALHAES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96790369, "longitude": -43.18778206, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001222", "name": "R. TONELERO X R. FIGUEIREDO MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96783763, "longitude": -43.18792221, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001223", "name": "R. BARATA RIBEIRO, 450", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9692008, "longitude": -43.18674173, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001226", "name": "AV. NOSSA SRA DE COPACABANA X R. FIG. MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.196/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97024033, "longitude": -43.18610193, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001227", "name": "AV. NOSSA SRA DE COPACABANA X R. FIG. MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97015081, "longitude": -43.18597184, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001228", "name": "AV. NOSSA SRA DE COPACABANA X R. FIG. MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97034652, "longitude": -43.18601744, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001229", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96309393, "longitude": -43.16783074, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001230", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96313901, "longitude": -43.16794473, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001231", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96264, "longitude": -43.165506, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001231.png", "snapshot_timestamp": "2024-02-10T00:55:35.509818+00:00", "objects": ["road_blockade", "water_in_road", "traffic_ease_vehicle", "image_condition", "image_description", "water_level"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:55:53.294876+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:52.539415+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:53.011697+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly in both directions."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:52.008122+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:52.325063+00:00", "label": "null", "label_explanation": "The image is a night view of a busy urban road. The road is lined with tall buildings, and there are cars and buses moving in both directions. The street lights are on, and there are people walking on the sidewalks. There is a green traffic light visible in the foreground."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:52.794680+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}]}, {"id": "001232", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962636, "longitude": -43.165424, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001233", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962656, "longitude": -43.164759, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001234", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962674, "longitude": -43.164681, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["traffic_ease_vehicle", "water_in_road", "image_condition", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001235", "name": "AV. ATL\u00c2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://10.52.252.99/", "update_interval": 120, "latitude": -22.977042, "longitude": -43.18836, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001236", "name": "AV. ATL\u00e2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://10.52.252.100/", "update_interval": 120, "latitude": -22.976836, "longitude": -43.188243, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001238", "name": "AV. ATL\u00c2NTICA X R BOLIVAR - FIXA", "rtsp_url": "rtsp://10.52.252.94/", "update_interval": 120, "latitude": -22.976221, "longitude": -43.187967, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001239", "name": "AV. ATL\u00c2NTICA X R BAR\u00c3O DE IPANEMA - FIXA", "rtsp_url": "rtsp://10.52.252.92/", "update_interval": 120, "latitude": -22.975697, "longitude": -43.187354, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001240", "name": "AV. ATL\u00c2NTICA X RUA BAR\u00c3O DE IPANEMA - FIXA", "rtsp_url": "rtsp://10.52.252.91/", "update_interval": 120, "latitude": -22.975535, "longitude": -43.187264, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001241", "name": "AV. ATL\u00c2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://10.52.252.97/", "update_interval": 120, "latitude": -22.976967, "longitude": -43.188076, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001242", "name": "AV. ATL\u00c2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://10.52.252.98/", "update_interval": 120, "latitude": -22.977031, "longitude": -43.187913, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001243", "name": "AV. ATL\u00c2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.96/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977288, "longitude": -43.187999, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001244", "name": "AV. ATL\u00c2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97719918, "longitude": -43.18819, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001245", "name": "AV. ATL\u00c2NTICA X CONSTANTE RAMOS - FIXA", "rtsp_url": "rtsp://10.52.252.88/", "update_interval": 120, "latitude": -22.975053, "longitude": -43.187252, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001246", "name": "AV. ATL\u00c2NTICA X CONSTANTE RAMOS - FIXA", "rtsp_url": "rtsp://10.52.252.87/", "update_interval": 120, "latitude": -22.975264, "longitude": -43.187382, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001247", "name": "R. CONSTANTE RAMOS X AV. ATL\u00c2NTICA - FIXA", "rtsp_url": "rtsp://10.52.252.90/", "update_interval": 120, "latitude": -22.974865, "longitude": -43.187477, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001248", "name": "R. CONSTANTE RAMOS X AV. ATL\u00c2NTICA - FIXA", "rtsp_url": "rtsp://10.52.252.89/", "update_interval": 120, "latitude": -22.974787, "longitude": -43.187607, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001249", "name": "AV. ATL\u00c2NTICA X R. SANTA CLARA, POSTO BR - FIXA", "rtsp_url": "rtsp://10.52.252.85/", "update_interval": 120, "latitude": -22.973449, "longitude": -43.186078, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001250", "name": "AV. ATL\u00c2NTICA X R. SANTA CLARA, POSTO BR - FIXA", "rtsp_url": "rtsp://10.52.252.86/", "update_interval": 120, "latitude": -22.973831, "longitude": -43.186387, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001251", "name": "AV. LAURO SODR\u00c9, 20 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95663056, "longitude": -43.17772349, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001252", "name": "AV. LAURO SODR\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95665526, "longitude": -43.17775567, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001253", "name": "AV. LAURO SODR\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95730728, "longitude": -43.17764302, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001254", "name": "AV. LAURO SODR\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95781111, "longitude": -43.177525, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001255", "name": "AV. LAURO SODR\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95823097, "longitude": -43.17743381, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001256", "name": "AV. LAURO SODR\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95836433, "longitude": -43.1773748, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001261", "name": "AV. LAURO SODR\u00c9, 191 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95385495, "longitude": -43.17866539, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001262", "name": "AV. LAURO SODR\u00c9 - BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95382532, "longitude": -43.1787995, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001263", "name": "AV. LAURO SODR\u00c9 - BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95442302, "longitude": -43.17844276, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001264", "name": "AV. LAURO SODR\u00c9 - BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95447735, "longitude": -43.17860102, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001266", "name": "AV. ALFREDO BALTAZAR DA SILVEIRA X AV. PEDRO MOURA - FIXA", "rtsp_url": "rtsp://10.52.209.120/", "update_interval": 120, "latitude": -23.01793098, "longitude": -43.4507247, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001267", "name": "AV. ALFREDO BALTAZAR DA SILVEIRA X AV. PEDRO MOURA - FIXA", "rtsp_url": "rtsp://10.52.209.121/", "update_interval": 120, "latitude": -23.01808157, "longitude": -43.45049403, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001269", "name": "AV. LUCIO COSTA X AV. DO CONTORNO (FINAL DO ECO ORLA) - FIXA", "rtsp_url": "rtsp://10.52.209.123/", "update_interval": 120, "latitude": -23.02245848, "longitude": -43.4475888, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001270", "name": "AV. LUCIO COSTA X AV. DO CONTORNO (FINAL DO ECO ORLA) - FIXA", "rtsp_url": "rtsp://10.52.209.124/", "update_interval": 120, "latitude": -23.02232147, "longitude": -43.44743189, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001271", "name": "AV. LUCIO COSTA X AV. DO CONTORNO (FINAL DO ECO ORLA) - FIXA", "rtsp_url": "rtsp://10.52.209.125/", "update_interval": 120, "latitude": -23.02253377, "longitude": -43.4478986, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001274", "name": "HOTEL FAIRMONT - COPACABANA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98580409, "longitude": -43.18936023, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001275", "name": "HOTEL RIO OTHON PALACE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9774487, "longitude": -43.18912, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001278", "name": "AV. ATL\u00c2NTICA, 3530 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97968338, "longitude": -43.18909635, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001279", "name": "AV. ATL\u00c2NTICA X R. ALM. GON\u00c7ALVES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979469, "longitude": -43.189304, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001280", "name": "AV. ATL\u00c2NTICA X R. ALM. GON\u00c7ALVES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.115/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979815, "longitude": -43.189406, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001282", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98038817, "longitude": -43.18924483, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001283", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://10.52.252.172/", "update_interval": 120, "latitude": -22.980503, "longitude": -43.189273, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001284", "name": "AV. ATL\u00c2NTICA X RUA SANTA CLARA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97376836, "longitude": -43.18573163, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001285", "name": "AV. ATL\u00c2NTICA X RUA SANTA CLARA - FIXA", "rtsp_url": "rtsp://10.52.252.183/", "update_interval": 120, "latitude": -22.9732152, "longitude": -43.18599985, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001286", "name": "AV. ATL\u00c2NTICA X RUA SANTA CLARA - FIXA", "rtsp_url": "rtsp://10.52.252.195/", "update_interval": 120, "latitude": -22.97334361, "longitude": -43.18569944, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001287", "name": "AV. ATL\u00c2NTICA X RUA SANTA CLARA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97347696, "longitude": -43.18581746, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001289", "name": "AVENIDA ALFREDO BALTAZAR DA SILVEIRA X RUA ODILON DUARTE BRAGA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.127/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01206166, "longitude": -43.44379741, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001294", "name": "AV. LUCIO COSTA X R. GLAUCIO GIL - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.209.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02499642, "longitude": -43.45724986, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001296", "name": "R. JOSEPH BLOCH, 30 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96670265, "longitude": -43.18886955, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001297", "name": "R. JOSEPH BLOCH, 30 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96655324, "longitude": -43.18903584, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001298", "name": "RUA FIGUEIREDO MAGALH\u00c3ES X RUA MINISTRO ALFREDO VALAD\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.966237, "longitude": -43.189397, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001299", "name": "RUA FIGUEIREDO MAGALH\u00c3ES X RUA MINISTRO ALFREDO VALAD\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96634813, "longitude": -43.18940236, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001301", "name": "AV. ALFREDO BALTAZAR DA SILVEIRA X R. GLAUCIO GIL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0221891, "longitude": -43.45812381, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001303", "name": "PRA\u00e7A VEREADOR ROCHA LE\u00e3O, 50 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9646571, "longitude": -43.19073872, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001304", "name": "PRA\u00c7A VEREADOR ROCHA LE\u00c3O, 50 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9639799, "longitude": -43.1908386, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001305", "name": "PRA\u00c7A VEREADOR ROCHA LE\u00c3O, N 88 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9641182, "longitude": -43.19091906, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001306", "name": "AV. GENARO DE CARVALHO X R. JOAQUIM JOSE COUTO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01364, "longitude": -43.446577, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001307", "name": "AV. GENARO DE CARVALHO X R. JOAQUIM JOSE COUTO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01355606, "longitude": -43.44689081, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001309", "name": "AV. LUCIO COSTA X RUA ALBERT SABIN - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02828043, "longitude": -43.46676365, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001311", "name": "AV. GILKA MACHADO X ESTR. DO PONTAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.03093407, "longitude": -43.47178059, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001312", "name": "ESTRADA DO PONTAL EM FRENTE AO N.\u00ba 6870 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.03019931, "longitude": -43.47825567, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001314", "name": "R. SANTA CLARA X AV. ATL\u00c2NTICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.972712, "longitude": -43.186115, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001315", "name": "R. SANTA CLARA X AV. ATL\u00c2NTICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.79/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97287, "longitude": -43.18595, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001316", "name": "AV. ATL\u00c2NTICA N 15- FIXA", "rtsp_url": "rtsp://10.52.252.193/", "update_interval": 120, "latitude": -22.96956564, "longitude": -43.18166099, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["image_condition", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001317", "name": "AV. ATL\u00c2NTICA N 15- FIXA", "rtsp_url": "rtsp://10.52.252.194/", "update_interval": 120, "latitude": -22.96946624, "longitude": -43.18164624, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001318", "name": "AV. ATL\u00c2NTICA N 18- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96978234, "longitude": -43.18191379, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001319", "name": "AV. ATL\u00c2NTICA N 18- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.216/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96970146, "longitude": -43.18197682, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001320", "name": "AV. ATL\u00c2NTICA X RUA HIL\u00c1RIO DE GOUV\u00caIA - FIXA", "rtsp_url": "rtsp://10.52.252.112/", "update_interval": 120, "latitude": -22.970092, "longitude": -43.182464, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001321", "name": "AV. ATL\u00c2NTICA X RUA HIL\u00c1RIO DE GOUV\u00caIA - FIXA", "rtsp_url": "rtsp://10.52.252.111/", "update_interval": 120, "latitude": -22.970215, "longitude": -43.182637, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001326", "name": "AV. ATL\u00c2NTICA X RUA SIQUEIRA CAMPOS - FIXA", "rtsp_url": "rtsp://10.52.252.110/", "update_interval": 120, "latitude": -22.970505, "longitude": -43.182582, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001327", "name": "AV. ATL\u00c2NTICA X RUA SIQUEIRA CAMPOS - FIXA", "rtsp_url": "rtsp://10.52.252.107/", "update_interval": 120, "latitude": -22.970784, "longitude": -43.182923, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001328", "name": "AV. ATL\u00c2NTICA X RUA SIQUEIRA CAMPOS - FIXA", "rtsp_url": "rtsp://10.52.252.108/", "update_interval": 120, "latitude": -22.970347, "longitude": -43.182714, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001329", "name": "AV. ATL\u00c2NTICA X RUA SIQUEIRA CAMPOS - FIXA", "rtsp_url": "rtsp://10.52.252.109/", "update_interval": 120, "latitude": -22.970626, "longitude": -43.18306, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001330", "name": "AV. ATL\u00c2NTICA, N 110 - FIXA", "rtsp_url": "rtsp://10.52.252.74/", "update_interval": 120, "latitude": -22.9721, "longitude": -43.18433, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001331", "name": "AV. ATL\u00c2NTICA, N 110 - FIXA", "rtsp_url": "rtsp://10.52.252.75/", "update_interval": 120, "latitude": -22.971949, "longitude": -43.184486, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001332", "name": "AV. ATL\u00c2NTICA, N 110 - FIXA", "rtsp_url": "rtsp://10.52.252.77/", "update_interval": 120, "latitude": -22.972154, "longitude": -43.184684, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001333", "name": "AV. ATL\u00c2NTICA, N 110 - FIXA", "rtsp_url": "rtsp://10.52.252.78/", "update_interval": 120, "latitude": -22.972292, "longitude": -43.184513, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001334", "name": "RUA HENRIQUE OSWALD, 70 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.190/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96421378, "longitude": -43.19142882, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001335", "name": "RUA HENRIQUE OSWALD, 70 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.189/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9642891, "longitude": -43.19130276, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001337", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X BOTAFOGO - FIXA", "rtsp_url": "rtsp://10.52.34.136/", "update_interval": 120, "latitude": -22.94960206, "longitude": -43.18092373, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001338", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X BOTAFOGO - FIXA", "rtsp_url": "rtsp://10.52.34.132/", "update_interval": 120, "latitude": -22.94985646, "longitude": -43.18090093, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001339", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X BOTAFOGO - FIXA", "rtsp_url": "rtsp://10.52.34.131/", "update_interval": 120, "latitude": -22.94982805, "longitude": -43.18052206, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001341", "name": "PRA\u00c7A EUG\u00caNIO JARDIM - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.217/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97645617, "longitude": -43.19373622, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001342", "name": "PRA\u00c7A EUG\u00caNIO JARDIM - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.216/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97659631, "longitude": -43.19378383, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001343", "name": "AV. HENRIQUE DODSWORTH, 54 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97674518, "longitude": -43.19449397, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001344", "name": "AV. HENRIQUE DODSWORTH, 54 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976518, "longitude": -43.194384, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001345", "name": "AV. HENRIQUE DODSWORTH, 64 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976664, "longitude": -43.195109, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001346", "name": "AV. HENRIQUE DODSWORTH, 64 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97678623, "longitude": -43.19543487, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001347", "name": "AV. HENRIQUE DODSWORTH, 64-142 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976828, "longitude": -43.19634, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001348", "name": "AV. HENRIQUE DODSWORTH, 64-142 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.213/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97693665, "longitude": -43.19659212, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001349", "name": "AV. NOSSA SRA. DE COPACABANA, 1033 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97813058, "longitude": -43.19061036, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001350", "name": "AV. NOSSA SRA. DE COPACABANA, 1033 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97796266, "longitude": -43.19050844, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001351", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95041245, "longitude": -43.18002797, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001352", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.34.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95062486, "longitude": -43.17995823, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001353", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://10.52.252.173/", "update_interval": 120, "latitude": -22.98041286, "longitude": -43.18907317, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001354", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://10.52.252.171/", "update_interval": 120, "latitude": -22.98054127, "longitude": -43.18910536, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001355", "name": "R. DO CATETE X R. DAS LARANJEIRAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93093453, "longitude": -43.17780309, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001361", "name": "AV. HENRIQUE DODSWORTH, 193 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.212/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97653707, "longitude": -43.19780227, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001362", "name": "AV. HENRIQUE DODSWORTH, 193 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97644324, "longitude": -43.19814559, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001363", "name": "PRA\u00c7A BENEDITO CERQUEIRA, S/N - LAGOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97662, "longitude": -43.197809, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001364", "name": "PRA\u00c7A BENEDITO CERQUEIRA, S/N - LAGOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97666568, "longitude": -43.19758771, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001365", "name": "AV. PRINCESA ISABEL PROX AUGUSTO RIO COPA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96174077, "longitude": -43.17527541, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001366", "name": "AV. PRINCESA ISABEL PROX AUGUSTO RIO COPA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96177349, "longitude": -43.17537532, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001367", "name": "AV. PRINCESA ISABEL - COPACABANA- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96297005, "longitude": -43.17471013, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001368", "name": "AV. PRINCESA ISABEL - COPACABANA- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96289349, "longitude": -43.1745425, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001369", "name": "AV. PRINCESA ISABEL - COPACABANA- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96304846, "longitude": -43.17461894, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001370", "name": "AV. PRINCESA ISABEL - COPACABANA- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96300956, "longitude": -43.17449153, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001371", "name": "AV. NOSSA SRA. DE COPACABANA, 68 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96386777, "longitude": -43.17421124, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001372", "name": "AV. NOSSA SRA. DE COPACABANA, 68 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96381158, "longitude": -43.17406976, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001373", "name": "AV. NOSSA SRA. DE COPACABANA, AV PRINCESA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96402212, "longitude": -43.17374588, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001374", "name": "AV. NOSSA SRA. DE COPACABANA X AV PRINCESA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96388814, "longitude": -43.17378544, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001375", "name": "AV. ALFREDO BALTHAZAR DA SILVEIRA ALT. BARRA WORLD - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0092773, "longitude": -43.44044451, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001376", "name": "AV. ALFREDO BALTHAZAR DA SILVEIRA ALT. BARRA WORLD - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00940075, "longitude": -43.44059203, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001381", "name": "R. DEODATO DE MORAES X AV MIN IVAN LINS. FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.010987, "longitude": -43.301528, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001381.png", "snapshot_timestamp": "2024-02-10T00:58:22.632247+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "image_description", "water_level", "road_blockade", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:15.692448+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving at a reasonable speed. There are no major delays or obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:15.105496+00:00", "label": "true", "label_explanation": "There is water on the road surface. The water is not very deep, and it does not appear to be causing any problems for traffic."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:14.872206+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a central reservation. There are street lights along the road, and the traffic is moderate. There are a few trees on either side of the road, and the buildings are not visible. The road surface is wet, and there are a few puddles."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:15.507819+00:00", "label": "low_indifferent", "label_explanation": "The water level is low. The water is not covering any significant portion of the road, and it is not causing any problems for traffic."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:15.905588+00:00", "label": "free", "label_explanation": "The road is not blocked. There are no obstructions on the road, and traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:14.516214+00:00", "label": "clean", "label_explanation": "The image is moderately clear, with some blurring and a few areas of uniform color. There are no major distortions or obstructions that would affect the overall analysis."}]}, {"id": "001382", "name": "R. DEODATO DE MORAES X AV. MIN. IVAN LINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01104131, "longitude": -43.3014368, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001382.png", "snapshot_timestamp": "2024-02-10T00:55:51.473206+00:00", "objects": ["image_description", "image_condition", "water_level", "traffic_ease_vehicle", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:10.233292+00:00", "label": "null", "label_explanation": "The image shows a six-lane road with a gas station on the right side. There is a bus on the left side of the road, and several cars are driving in both directions. There is a pedestrian crossing the road in the middle. The road is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:10.022495+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:11.727792+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:11.948782+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no visible obstructions. Traffic is flowing smoothly in both directions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:10.442306+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:12.150612+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}]}, {"id": "001383", "name": "R. SARGENTO JO\u00c3O DE FARIA X AV. MINISTRO IVAN LINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01332281, "longitude": -43.2973656, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001383.png", "snapshot_timestamp": "2024-02-10T00:55:49.705049+00:00", "objects": ["traffic_ease_vehicle", "water_level", "road_blockade", "image_condition", "water_in_road", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:15.127852+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are no obstructions on the road, and the traffic is flowing smoothly."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:14.874016+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:15.540849+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions. The traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:10.353083+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and consistent, and there are no large areas of uniform color. There is some motion blur in the image, but it does not significantly affect the overall quality."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:14.482240+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:10.622978+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, but it is not visible. There are street lights on either side of the intersection. There are cars parked on the side of the road, and there is a bus stop on the left side of the intersection. There are trees on either side of the intersection. The road is made of asphalt and is in good condition. There are no visible signs of construction or repair."}]}, {"id": "001384", "name": "AV. AYRTON SENNA, 5850 - EM FRENTE AO ESPA\u00c7O HALL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.123/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9603695, "longitude": -43.35732, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001384.png", "snapshot_timestamp": "2024-02-10T00:43:42.651434+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_description", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:44:04.414970+00:00", "label": "easy", "label_explanation": "The road surface is dry and free of obstructions, allowing for easy vehicle movement."}, {"object": "water_level", "timestamp": "2024-02-10T00:44:04.201241+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry, with no visible signs of water."}, {"object": "image_description", "timestamp": "2024-02-10T00:44:03.714171+00:00", "label": "null", "label_explanation": "The image shows a wide, two-lane road with a central median. The road is lined with trees, and there are buildings and other structures visible in the background. The sky is clear, and the sun is shining. There is moderate traffic on the road, with cars and trucks moving in both directions. The road surface is dry, and there are no visible signs of water."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:44:03.912044+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-10T00:44:03.532349+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there are no large areas of uniform color."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:44:04.846409+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions, allowing for unimpeded traffic flow."}]}, {"id": "001385", "name": "AV. AYRTON SENNA, 5850 - EM FRENTE AO ESPA\u00c7O HALL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96049669, "longitude": -43.35732938, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001385.png", "snapshot_timestamp": "2024-02-10T00:56:30.116477+00:00", "objects": ["traffic_ease_vehicle", "water_in_road", "road_blockade", "water_level", "image_condition", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:41.837312+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:41.206442+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:42.022286+00:00", "label": "free", "label_explanation": "The road is completely clear, with no visible obstructions."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:41.413124+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:40.728185+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and focused."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:41.008506+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few cars parked on the side. The road is in good condition, with no visible potholes or cracks. The sidewalks are also in good condition, with no visible cracks or uneven surfaces. There are a few trees on either side of the road, and the leaves are green. The sky is clear, and the sun is shining. There are no people visible in the image."}]}, {"id": "001386", "name": "R. DIAS DA CRUZ X R. ANA BARBOSA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90204711, "longitude": -43.28024646, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001387", "name": "AV. ARMANDO LOMBARDI, 205 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0074709, "longitude": -43.3068961, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001387.png", "snapshot_timestamp": "2024-02-10T00:55:45.635915+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_level", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:10.409015+00:00", "label": "easy", "label_explanation": "The road is dry and free of obstructions, allowing for easy vehicle movement."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:07.289804+00:00", "label": "null", "label_explanation": "The image shows a busy urban road at night. There are cars, buses, and motorcycles moving in both directions. The road is well-lit, and there are streetlights along the sides. There are also trees and buildings on either side of the road. The image is clear and provides a good view of the urban road."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:09.998663+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:07.106799+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there is no blurring or pixelation."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:09.802522+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:10.674365+00:00", "label": "free", "label_explanation": "The road is completely free of obstructions, with no blockages or disruptions to traffic flow."}]}, {"id": "001388", "name": "AV. ARMANDO LOMBARDI, 205 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00737084, "longitude": -43.30676043, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001388.png", "snapshot_timestamp": "2024-02-10T00:55:47.675004+00:00", "objects": ["image_description", "image_condition", "water_level", "traffic_ease_vehicle", "water_in_road", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:09.386324+00:00", "label": "null", "label_explanation": "A night-time image of a four-lane road with a concrete barrier separating the two directions of traffic. The road is lit by streetlights, and there are trees on either side of the road. There is a motocicle on the right lane, close to the concrete barrier. There are cars on the left lanes, driving in the opposite direction of the motocicle. In the background, there is a large wall with graffiti on it. The road is dry and there is no visible water."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:09.165114+00:00", "label": "clean", "label_explanation": "The image is clear with no visible signs of corruption or distortion. There are no large areas of uniform color or blurring. The image quality is good."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:09.872775+00:00", "label": "low_indifferent", "label_explanation": "The road is dry and there is no visible water."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:10.122037+00:00", "label": "easy", "label_explanation": "The road is dry and there is no visible water. There is a motocicle and several cars driving on the road, which indicates that traffic is flowing smoothly."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:09.604694+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:10.399599+00:00", "label": "free", "label_explanation": "There are no obstructions on the road and traffic is flowing smoothly."}]}, {"id": "001389", "name": "R. FRANCISCO EUG\u00caNIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90702635, "longitude": -43.21124587, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001389.png", "snapshot_timestamp": "2024-02-10T00:56:23.655132+00:00", "objects": ["image_description", "image_condition", "traffic_ease_vehicle", "water_in_road", "road_blockade", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:52.251182+00:00", "label": "null", "label_explanation": "The image shows a four-lane road at night. There is a concrete barrier separating the two directions of traffic. The road is well-lit by streetlights. There are trees and shrubs on either side of the road. There is a graffiti on the wall to the left. There is a SOS ARVORES 164-99703-7063 sign on the wall. To the right, there is an elevated road with cars passing by. There are no people visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:51.947299+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:53.047093+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly in both directions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:52.541579+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:53.340715+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades visible."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:52.824702+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}]}, {"id": "001390", "name": "R. FRANCISCO EUG\u00caNIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90699671, "longitude": -43.21102191, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001390.png", "snapshot_timestamp": "2024-02-10T00:55:38.231259+00:00", "objects": ["water_level", "image_description", "image_condition", "road_blockade", "traffic_ease_vehicle", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-10T00:56:01.393656+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry, with no visible signs of water."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:57.552492+00:00", "label": "null", "label_explanation": "The image shows a six-lane road at night. There is moderate traffic, with cars, buses, and trucks visible. The road is well-lit, and there are streetlights along the sides. There are trees and buildings on either side of the road. The sky is clear, and there are no visible signs of rain."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:57.207849+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there is no blurring or pixelation."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:09.999510+00:00", "label": "free", "label_explanation": "The road is clear, with no visible signs of obstructions or blockades."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:04.214668+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with cars, buses, and trucks moving slowly. There are no visible signs of congestion or delays."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:58.846515+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}]}, {"id": "001391", "name": "ESTRADA DA BARRA DA TIJUCA - ITANHANG\u00c1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.71/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0031209, "longitude": -43.30464303, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001391.png", "snapshot_timestamp": "2024-02-10T00:55:32.295561+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_condition", "water_in_road", "image_description", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:52.643080+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water or other obstacles. The road is also wide and straight, with no visible obstructions. This would make it easy for vehicles to travel on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:52.837311+00:00", "label": "free", "label_explanation": "The road is completely clear, with no visible signs of obstructions or blockades. There is a single white van driving on the road, and there are no other vehicles visible. The road is also wide and straight, with no visible obstructions."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:48.729879+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there are no large areas of uniform color."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:52.122332+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:51.572868+00:00", "label": "null", "label_explanation": "The image shows a wide, four-lane road with a central reservation. The road is in good condition, with no visible signs of damage or wear. The road is bordered by trees and buildings. The weather is clear, and the sun is shining. There is a single white van driving on the road, and there are no other vehicles visible. The image is taken from a slightly elevated angle, which gives a good view of the road and its surroundings."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:52.394898+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry."}]}, {"id": "001392", "name": "ESTRADA DA BARRA DA TIJUCA - ITANHANG\u00c1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00306782, "longitude": -43.30464772, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001392.png", "snapshot_timestamp": "2024-02-10T00:56:15.378483+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:36.142620+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no visible obstructions. Traffic is flowing smoothly in both directions."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:35.912262+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:35.027366+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:35.643233+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:36.348963+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:35.378190+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with cars and motorbikes moving in both directions. The road is lined with trees, and there are street lights on either side. The sky is dark, and the street lights are on. There are no visible signs of construction or other obstructions."}]}, {"id": "001393", "name": "R. JARDIM BOTANICO X R. PROF. SALDANHA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96050733, "longitude": -43.20505749, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001393.png", "snapshot_timestamp": "2024-02-10T00:56:04.028939+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_description", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:35.795957+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic flow should be easy."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:35.573133+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road surface. The road is dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:34.740561+00:00", "label": "null", "label_explanation": "The image is a night view of a street scene in Rio de Janeiro. The street is lit by streetlights, and there are trees on either side of the road. There is a bus driving on the right side of the road, and a few cars are parked on the left side. The street is made of asphalt and is in good condition. There are no visible signs of construction or repair."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:35.353196+00:00", "label": "false", "label_explanation": "There is no water on the road surface. The road is dry."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:35.999236+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road. Traffic can flow freely."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:34.415250+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}]}, {"id": "001394", "name": "R. CARVALHO AZEVEDO, 368 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964362, "longitude": -43.203722, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001394.png", "snapshot_timestamp": "2024-02-10T00:56:32.104149+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_description", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:56:47.517625+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, so traffic flow is not impeded."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:46.841487+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:47.032441+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:46.537676+00:00", "label": "null", "label_explanation": "The image shows a wide, tree-lined road at night. The road is lit by streetlights, and there are cars parked on either side of the road. The sidewalk is wide and there are trees planted along the sidewalk. There is a building on the left side of the road and a park on the right side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:47.242749+00:00", "label": "easy", "label_explanation": "The road is completely dry and there are no obstructions, so traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:46.339134+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there is no blurring or pixelation."}]}, {"id": "001395", "name": "R. CARVALHO AZEVEDO, 368 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9643904, "longitude": -43.20382928, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001395.png", "snapshot_timestamp": "2024-02-10T00:56:13.393240+00:00", "objects": ["water_in_road", "image_condition", "traffic_ease_vehicle", "water_level", "image_description", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:56:30.907106+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:30.046723+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no major obstructions or distortions."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:34.234366+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no obstructions. Traffic can flow freely."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:31.130301+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:30.521811+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a gas station on the left side. There is a tree on the right side of the road. There are two cars on the road, both of which are driving in the same direction. There is a person standing on the sidewalk next to the gas station."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:34.423075+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}]}, {"id": "001396", "name": "PRAIA DO FLAMENGO X AV. OSWALDO CRUZ - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9387028, "longitude": -43.17378083, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001397", "name": "R. MARQU\u00caS DE ABRANTES X ALTURA DA P.DE BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94092884, "longitude": -43.17873851, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001398", "name": "R. MARQUES DE ABRANTES X R. MARQUES DE PARANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93810162, "longitude": -43.17777027, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001399", "name": "AV. BRASIL X AV. LOBO JUNIOR - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82687611, "longitude": -43.2750495, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001400", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X ALT. BOTAFOGO PRAIA SHOPPING - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94824397, "longitude": -43.18201422, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001401", "name": "R. MARIO CARVALHO X AV. PST M. LUTHER KING JR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85220167, "longitude": -43.31612186, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001402", "name": "R. MARIO CARVALHO X AV. PST M. LUTHER KING JR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852282, "longitude": -43.31603335, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001403", "name": "PRA\u00c7A NOSSA SENHORA AUXILIADORA 93 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977686, "longitude": -43.222394, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001404", "name": "PRA\u00c7A NOSSA SENHORA AUXILIADORA 93 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97770575, "longitude": -43.22249592, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001405", "name": "PRA\u00c7A NOSSA SENHORA AUXILIADORA 93 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97763908, "longitude": -43.22219685, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001406", "name": "AV. BARTOLOMEU MITRE, 1099 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978169, "longitude": -43.224816, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001407", "name": "AV. BARTOLOMEU MITRE, 1099 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97805787, "longitude": -43.22485623, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001408", "name": "AV. BARTOLOMEU MITRE, 1099 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9783579, "longitude": -43.22478515, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001409", "name": "AV. BARTOLOMEU MITRE, 1099 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97812702, "longitude": -43.22457862, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001410", "name": "PRA\u00c7A SIBELIUS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97887277, "longitude": -43.22896537, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001411", "name": "PRA\u00c7A SIBELIUS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97886042, "longitude": -43.22883663, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001412", "name": "AV. BR\u00c1S DE PINA X R. PE. ROSER X AV. MERITI (LARGO DO BIC\u00c3O) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839037, "longitude": -43.311611, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001413", "name": "VD. PREF. NEGR\u00c3O DE LIMA X ESTA\u00c7\u00c3O BRT MADUREIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.58/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87761719, "longitude": -43.33638936, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001414", "name": "AV. NIEMEYER 54 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990757, "longitude": -43.229449, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001415", "name": "AV. NIEMEYER 54 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990761, "longitude": -43.22956, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001416", "name": "AV. NIEMEYER 88 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990624, "longitude": -43.230661, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001417", "name": "AV. NIEMEYER 88 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990576, "longitude": -43.230766, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001418", "name": "AV. NIEMEYER 683 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99087, "longitude": -43.231765, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001419", "name": "AV. NIEMEYER 683 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990873, "longitude": -43.231876, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001420", "name": "AV. NIEMEYER 126 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.991043, "longitude": -43.232612, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001421", "name": "AV. NIEMEYER 126 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99102, "longitude": -43.232505, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001422", "name": "AV. NIEMEYER, 418 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00061131, "longitude": -43.24556316, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001423", "name": "AV. NIEMEYER, 393 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000548, "longitude": -43.245929, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001424", "name": "AV. NIEMEYER 204B - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.994778, "longitude": -43.234833, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001425", "name": "AV. NIEMEYER 204B - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99480022, "longitude": -43.23466871, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001426", "name": "AV. NIEMEYER 226 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.995806, "longitude": -43.235542, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001427", "name": "AV. NIEMEYER 226 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9958776, "longitude": -43.23556681, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001428", "name": "AV. NIEMEYER 359 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99671382, "longitude": -43.23660219, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001429", "name": "AV. NIEMEYER 359 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99667, "longitude": -43.236511, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001430", "name": "AV. NIEMEYER 318 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.997696, "longitude": -43.239254, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001431", "name": "AV. NIEMEYER 318 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99772069, "longitude": -43.23932507, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001432", "name": "AV. NIEMEYER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000616, "longitude": -43.245274, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001433", "name": "AV. NIEMEYER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000618, "longitude": -43.245103, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001436", "name": "AV. NIEMEYER 400 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00013721, "longitude": -43.24185602, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001437", "name": "AV. NIEMEYER 400 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000065, "longitude": -43.241909, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001438", "name": "AV. NIEMEYER 749 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000046, "longitude": -43.243214, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001439", "name": "AV. NIEMEYER 749 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00003674, "longitude": -43.24312146, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001440", "name": "AV. NIEMEYER 418 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000633, "longitude": -43.243912, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001441", "name": "AV. NIEMEYER 418 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00057806, "longitude": -43.24380873, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001445", "name": "AV. NIEMEYER, 393 - S\u00c3O CONRADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9994, "longitude": -43.24781, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001446", "name": "AV. NIEMEYER, 546-548 - S\u00c3O CONRADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.998808, "longitude": -43.25164, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001447", "name": "AV. NIEMEYER, 546-548 - S\u00c3O CONRADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99887753, "longitude": -43.25158099, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001448", "name": "AV. NIEMEYER PARQUE NATURAL MUNICIPAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99861396, "longitude": -43.25374057, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001450", "name": "AV. NIEMEYER PROX. HOTEL NACIONAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.172/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99847456, "longitude": -43.25606813, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001451", "name": "PORT\u00c3O DO BRT - R. BARREIROS, 21 - RAMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85461937, "longitude": -43.25063933, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001452", "name": "PORT\u00c3O DO BRT - R. BARREIROS, 21 - RAMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.77/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854565, "longitude": -43.25087, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001453", "name": "PORT\u00c3O DO BRT - AV. CES\u00c1RIO DE MELLO, 8121 - COSMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.125/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915894, "longitude": -43.608132, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001455", "name": "PORT\u00c3O DO BRT - R. LEONARDO VILAS BOAS, 3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.29/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.965863, "longitude": -43.391308, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001456", "name": "PORT\u00c3O DO BRT - R. LEONARDO VILAS BOAS, 3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.216/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.965762, "longitude": -43.39112, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001457", "name": "R. MARIZ E BARROS X R. FELISBERTO DE MENEZES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91260317, "longitude": -43.21603446, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001458", "name": "LAPA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91366011, "longitude": -43.17875469, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001459", "name": "AV. ARMANDO LOMBARDI 669 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.007048, "longitude": -43.311872, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001460", "name": "AV. ARMANDO LOMBARDI 669 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.007046, "longitude": -43.311794, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001461", "name": "AV. ARMANDO LOMBARDI 505 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00716749, "longitude": -43.30986177, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001462", "name": "AV. ARMANDO LOMBARDI 505 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00706291, "longitude": -43.30989176, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001463", "name": "CFTV COR - FACHADA COR 1 - EXTENS\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911278, "longitude": -43.203594, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001464", "name": "CFTV COR - FACHADA COR 2 - EXTENS\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911211, "longitude": -43.203622, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001465", "name": "AV. \u00c9RICO VER\u00cdSSIMO X RUA FERNANDO DE MATTOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.011331, "longitude": -43.309703, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001466", "name": "AV. OLEG\u00c1RIO MACIEL X AV. GILBERTO AMADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.66/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01186769, "longitude": -43.30502996, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001467", "name": "R. BACAIRIS X R. APIAC\u00c1S - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92106381, "longitude": -43.37164986, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001468", "name": "PREFEITURA CASS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.2.70/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911074, "longitude": -43.206143, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001469", "name": "PREFEITURA CASS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.2.71/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911094, "longitude": -43.206296, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001470", "name": "AV. DO PEP X AV. OLEGRIO MACIEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0151925, "longitude": -43.3058818, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001471", "name": "AV. DO PEP X AV. OLEGRIO MACIEL - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.50.106.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01514496, "longitude": -43.30576978, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001472", "name": "AV. DO PEP X AV. OLEGRIO MACIEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01524742, "longitude": -43.30569939, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001472.png", "snapshot_timestamp": "2024-02-10T00:55:55.115183+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_in_road", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:11.728880+00:00", "label": "clean", "label_explanation": "The image is moderately clear, with some blurring and a small area of uniform color in the top right corner. However, these imperfections do not significantly affect the overall visibility of the road and other elements in the image."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:16.358587+00:00", "label": "impossible", "label_explanation": "The road is not visible in the image, so it is not possible to assess the traffic conditions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:13.522897+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:16.595110+00:00", "label": "free", "label_explanation": "The road is not visible in the image, so it is not possible to assess whether there are any road blockades."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:11.983768+00:00", "label": "null", "label_explanation": "This is a night-time image of a coastal road. On the left side of the image, there is a bar with a few tables and chairs placed outside. The bar is surrounded by trees and shrubs, and there is a tiled mosaic on the floor. On the right side of the image, there is a sandy beach with a few people walking on it. The beach is lit by a few streetlights. The road is not visible in the image."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:15.823778+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}]}, {"id": "001473", "name": "S\u00c3O FRANCISCO XAVIER X HEITOR BELTR\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.27.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92079958, "longitude": -43.22287825, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001474", "name": "R. DO CATETE X R. SILVEIRA MARTINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9259, "longitude": -43.176602, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["traffic_ease_vehicle", "image_condition", "water_level", "water_in_road", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001475", "name": "R. DO CATETE X R. SILVEIRA MARTINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.220/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.926, "longitude": -43.176602, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["traffic_ease_vehicle", "water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001476", "name": "R. JARDIM BOT\u00c2NICO X R. PACHECO LE\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.173/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9668, "longitude": -43.219492, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001476.png", "snapshot_timestamp": "2024-02-10T00:56:34.150625+00:00", "objects": ["water_in_road", "image_description", "image_condition", "traffic_ease_vehicle", "water_level", "road_blockade"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:56:47.791416+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface. The road is dry, with no puddles or other signs of moisture."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:47.509192+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road scene at night. The road is relatively wide, with a clear lane for traffic in both directions. It is lined with buildings, trees, and other urban infrastructure. The street lights are on, and there are a few cars and pedestrians visible. The overall lighting is moderate, and the image is clear enough to distinguish details."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:47.318480+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:48.220226+00:00", "label": "easy", "label_explanation": "The road is dry and free of obstructions, with no visible signs of traffic congestion or delays. Traffic flow appears to be smooth and unimpeded."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:48.000836+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is 'low_indifferent'."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:48.496112+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockages visible. Traffic is flowing smoothly in both directions."}]}, {"id": "001477", "name": "R. JARDIM BOT\u00c2NICO X R. PACHECO LE\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.174/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9671, "longitude": -43.219492, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001477.png", "snapshot_timestamp": "2024-02-10T00:56:16.341721+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_condition", "water_level", "water_in_road", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:53:45.611303+00:00", "label": "easy", "label_explanation": "The traffic is not affected by the water on the road. The cars are able to drive through the puddles without any problems."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:53:45.877384+00:00", "label": "free", "label_explanation": "The road is not blocked by any obstacles. The cars are able to drive through the intersection without any problems."}, {"object": "image_condition", "timestamp": "2024-02-10T00:53:44.521454+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}, {"object": "water_level", "timestamp": "2024-02-10T00:53:45.236671+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. It is not covering the wheels of the cars, and it is not causing any problems for pedestrians."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:53:45.022989+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some puddles, but they are not large or deep. The water is not causing any traffic problems."}, {"object": "image_description", "timestamp": "2024-02-10T00:53:44.727260+00:00", "label": "null", "label_explanation": "The image is a night view of a busy urban road intersection. The road is wet from rain, and there are several cars and trucks driving through the intersection. There are also a few pedestrians crossing the street. The street lights are on, and the traffic signals are visible in the background."}]}, {"id": "001478", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. PRAIA DE BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9506, "longitude": -43.181605, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001478.png", "snapshot_timestamp": "2024-02-10T00:55:44.195647+00:00", "objects": ["traffic_ease_vehicle", "water_level", "road_blockade", "water_in_road", "image_description", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:10.368555+00:00", "label": "easy", "label_explanation": "The road is dry and free of obstructions, allowing for easy vehicle movement."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:10.128365+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry, with no visible signs of water."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:10.565867+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades hindering traffic flow."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:09.891634+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:09.671223+00:00", "label": "null", "label_explanation": "A wide road with multiple lanes is seen in the picture. The road is divided by a pedestrian crossing with a zebra crossing. There are a few trees on either side of the road, and some buildings and shops can be seen in the background. The road is lit by streetlights, and there are some cars and motorbikes on the road. There are also some people crossing the road. The overall scene is slightly blurry, with some areas of uniform color and mild distortion."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:09.465786+00:00", "label": "clean", "label_explanation": "The image is slightly blurry, with some areas of uniform color and mild distortion. However, the overall quality is adequate for analysis."}]}, {"id": "001479", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. PRAIA DE BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950705, "longitude": -43.181605, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001479.png", "snapshot_timestamp": "2024-02-10T00:56:15.736922+00:00", "objects": ["image_condition", "image_description", "water_in_road", "traffic_ease_vehicle", "water_level", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:28.575271+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:29.938701+00:00", "label": "null", "label_explanation": "The image is a night view of a street intersection. There is a yellow taxi driving through the intersection, and a red traffic light can be seen in the foreground. There are trees and buildings on either side of the street, and the street is lit by streetlights. The image is clear and well-lit, and all objects are easily identifiable."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:30.265076+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:30.935218+00:00", "label": "easy", "label_explanation": "The road surface is dry, and there is no traffic congestion. The yellow taxi is driving smoothly through the intersection, and there are no other vehicles visible. Therefore, the traffic ease for vehicles is easy."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:30.682533+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, this category is indifferent."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:31.234165+00:00", "label": "free", "label_explanation": "The road is clear, and there are no obstructions visible. The yellow taxi is driving smoothly through the intersection, and there are no other vehicles visible. Therefore, the road is free of blockades."}]}, {"id": "001482", "name": "AV. PRES.VARGAS X P\u00c7A. DA REP\u00daBLICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9048359, "longitude": -43.19033958, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001482.png", "snapshot_timestamp": "2024-02-10T00:56:24.718755+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "water_level", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:56:52.699134+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:53.115375+00:00", "label": "easy", "label_explanation": "The road is completely dry, and there is no traffic congestion. Vehicles can move freely."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:53.403662+00:00", "label": "free", "label_explanation": "The road is completely clear, and there are no obstructions to traffic flow."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:52.497672+00:00", "label": "null", "label_explanation": "The image shows a busy intersection at night. There are cars, buses, and people crossing the road. The traffic lights are green, and the cars are moving smoothly. There is a street sign on the left side of the image."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:52.920736+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:52.211804+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}]}, {"id": "001483", "name": "AV. PRES.VARGAS X P\u00c7A. DA REP\u00daBLICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90476487, "longitude": -43.19036305, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001483.png", "snapshot_timestamp": "2024-02-10T00:56:34.879276+00:00", "objects": ["image_description", "traffic_ease_vehicle", "image_condition", "water_in_road", "water_level", "road_blockade"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:51.173947+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road scene with moderate traffic. It is night time and the street lights are on. The road is wet from recent rain, but there is no standing water. There are cars, a motorcycle, and pedestrians on the road. The buildings on either side of the road are tall and brightly lit. There are trees and other vegetation lining the street."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:51.868844+00:00", "label": "difficult", "label_explanation": "The traffic is moderate, but the road is not completely blocked. The cars and motorcycle are able to move, albeit slowly."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:50.963878+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring that would indicate poor quality."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:51.385583+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some dry patches visible."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:51.658325+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. It is not covering the wheels of the cars or the motorcycle."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:52.097183+00:00", "label": "free", "label_explanation": "The road is not completely blocked. The cars and motorcycle are able to move, albeit slowly."}]}, {"id": "001484", "name": "R. S\u00c3O CLEMENTE X R. SOROCABA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9500493, "longitude": -43.19102923, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001484.png", "snapshot_timestamp": "2024-02-10T00:55:19.910474+00:00", "objects": ["traffic_ease_vehicle", "image_condition", "water_level", "image_description", "road_blockade", "water_in_road"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:58.859720+00:00", "label": "easy", "label_explanation": "The road is easy to navigate for vehicles."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:53.503523+00:00", "label": "poor", "label_explanation": "The image is moderately corrupted with uniform color patches and some distortion. The corruption is mostly concentrated on the left side of the image, but there are also some patches on the right side. The image is still usable, but the corruption may affect the accuracy of the analysis."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:57.281603+00:00", "label": "low_indifferent", "label_explanation": "The water level is low."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:53.810555+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. The street is lined with buildings, and there are cars parked on the side of the road. There are also people walking on the street. The street is wet from the rain, and there are some puddles on the ground. There is a green traffic light visible in the image."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:59.078352+00:00", "label": "free", "label_explanation": "The road is not blocked."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:56.792147+00:00", "label": "true", "label_explanation": "There is water on the road."}]}, {"id": "001485", "name": "R. S\u00c3O CLEMENTE X R. SOROCABA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95020985, "longitude": -43.19097089, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001485.png", "snapshot_timestamp": "2024-02-10T00:56:29.145673+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:56:42.015467+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions. Traffic flow is not impeded."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:40.908489+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:40.683957+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are a few cars parked on the side of the road. There are also a few trees and some buildings in the background. The street is made of asphalt and is in good condition. There is a green traffic light visible in the distance."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:41.561238+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:41.802492+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic flow should be easy."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:40.477004+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color or blurring. The image quality is good."}]}, {"id": "001486", "name": "AV. MARACAN\u00c3 X R. JOS\u00c9 HIGINO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92798885, "longitude": -43.23983491, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001486.png", "snapshot_timestamp": "2024-02-10T00:56:13.492047+00:00", "objects": ["image_description", "image_condition", "road_blockade", "water_in_road", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:34.630083+00:00", "label": "null", "label_explanation": "The image shows a four-way road intersection at night. There is a traffic light at the intersection, showing red for the cars on the left side of the image and green for the cars on the right side. There are several cars, motorbikes, and people crossing the intersection. The road is wet from rain, but there is no flooding."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:34.421337+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:36.008929+00:00", "label": "free", "label_explanation": "The road is not blocked. There are no obstructions or hazards that would prevent cars from driving on it."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:35.358555+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some puddles, but they are not very deep."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:35.807487+00:00", "label": "easy", "label_explanation": "The road is wet, but it is still easy for cars to drive on. There are no major obstructions or hazards."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:35.616830+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. It is not covering the wheels of the cars or the bottom of the traffic light."}]}, {"id": "001487", "name": "RIO MARACAN\u00c3 ALT DA R. JOS\u00c9 HIGINO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92802221, "longitude": -43.23969679, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001487.png", "snapshot_timestamp": "2024-02-10T00:55:33.119744+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle", "image_condition", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:56:04.213588+00:00", "label": "free", "label_explanation": "The road is not blocked, as there are no major obstructions visible. The parked car is on the side of the road and does not impede traffic flow."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:54.918327+00:00", "label": "true", "label_explanation": "There is water present on the road, as indicated by the wet road surface and the presence of puddles."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:58.253188+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low, as indicated by the small and shallow puddles. The water does not cover any significant portion of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:01.394549+00:00", "label": "easy", "label_explanation": "The road is easy to navigate for vehicles, as the water level is low and there are no major obstructions."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:51.583540+00:00", "label": "clean", "label_explanation": "The image is moderately clear, with some areas of uniform color and slight blurring. There are no major distortions or obstructions that would affect the overall analysis."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:52.105339+00:00", "label": "null", "label_explanation": "The image is a night view of a relatively narrow urban road with a single lane visible. The road is adjacent to a wall on one side and a low concrete barrier on the other. There is a street lamp on the side of the wall, casting a dim light on the road. The road surface is wet, with some small puddles visible. There is a single parked car on the side of the road."}]}, {"id": "001488", "name": "AV. BRAZ DE PINA, 404 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.837986, "longitude": -43.284893, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001489", "name": "AV. BRAZ DE PINA, 404 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838076, "longitude": -43.284813, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["water_level", "traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001490", "name": "R. PEREIRA NUNES X R. BAR\u00c3O DE MESQUITA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.207/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92417793, "longitude": -43.23622356, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001490.png", "snapshot_timestamp": "2024-02-10T00:58:19.925296+00:00", "objects": ["image_description", "road_blockade", "traffic_ease_vehicle", "water_in_road", "image_condition", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:55:52.126328+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection at night. There are several cars on the road, including a yellow taxi and a white van. The street lights are on, and there are trees on either side of the road. There is a pedestrian crossing in the foreground."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:54.924255+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions or blockades. Traffic can flow freely without any hindrance."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:52.841178+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions or traffic congestion. Vehicles can easily navigate the road."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:52.398088+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:51.732923+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:52.631464+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry, with no visible signs of water."}]}, {"id": "001491", "name": "R. PEREIRA NUNES X R. BAR\u00c3O DE MESQUITA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92416064, "longitude": -43.23629799, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001491.png", "snapshot_timestamp": "2024-02-10T00:56:37.728992+00:00", "objects": ["road_blockade", "image_description", "image_condition", "water_in_road", "water_level", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:56:52.417368+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades. Traffic can flow freely without any hindrance."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:51.526356+00:00", "label": "null", "label_explanation": "The night scene captures a bustling urban road intersection. Streetlights illuminate the surroundings, and various vehicles, including a bus, cars, and motorbikes, navigate the junction. Pedestrians can be seen crossing the road, and buildings line the streets. The overall visibility is moderate, with some areas of the image slightly blurry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:51.340424+00:00", "label": "clean", "label_explanation": "The image is moderately clear, with some blurring and minor distortions. There are no major obstructions or uniform color areas that would significantly impact the analysis."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:51.789277+00:00", "label": "false", "label_explanation": "There is no visible water on the road surface. The road appears dry, with no puddles or wet spots."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:51.996232+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, the water level is 'low_indifferent'."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:52.205711+00:00", "label": "easy", "label_explanation": "The road is dry, and traffic appears to be flowing smoothly. There are no visible obstructions or congestion. Vehicles can navigate the road without difficulty."}]}, {"id": "001492", "name": "GRAJA\u00da-JACAREPAGU\u00c1 (SUBIDA GRAJA\u00da) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91709064, "longitude": -43.26272777, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001492.png", "snapshot_timestamp": "2024-02-10T00:56:19.343547+00:00", "objects": ["road_blockade", "water_in_road", "image_description", "water_level", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:56:35.850610+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions or blockades. Traffic can flow freely without any issues."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:35.042675+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:34.831387+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a central reservation. There are street lights along the road, and the street is lit by the lights. There is a police car and a fire truck on the road, and a man is crossing the road on foot. There are trees and buildings on either side of the road."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:35.396795+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:34.360037+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:35.642943+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no obstructions to traffic flow. Vehicles can move freely without hindrance."}]}, {"id": "001493", "name": "GRAJA\u00da-JACAREPAGU\u00c1 (SUBIDA GRAJA\u00da) - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.26.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91698688, "longitude": -43.2628887, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001493.png", "snapshot_timestamp": "2024-02-10T00:56:11.618017+00:00", "objects": ["image_condition", "road_blockade", "water_in_road", "water_level", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:29.324414+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there are no large areas of uniform color."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:33.222907+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions or blockades. Traffic is flowing smoothly in both directions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:32.528185+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:32.800940+00:00", "label": "low_indifferent", "label_explanation": "The road surface is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:33.018590+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions or traffic. The road is wide and has multiple lanes in both directions, allowing for easy traffic flow."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:32.238216+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a central reservation and multiple lanes of traffic in both directions. The road is bordered by tall buildings and trees, and there is a clear blue sky with some puffy white clouds overhead. The road is dry, and there is no visible traffic. There are several large advertising billboards on the buildings."}]}, {"id": "001494", "name": "R. ARQUIAS CORDEIRO X R. DR. PADILHA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89550498, "longitude": -43.29105444, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001494.png", "snapshot_timestamp": "2024-02-06T12:46:38.830323+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001495", "name": "R. ARQUIAS CORDEIRO X R. DR. PADILHA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89553339, "longitude": -43.29120062, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["traffic_ease_vehicle", "image_condition", "water_in_road", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001496", "name": "PRA\u00c7A DA BANDEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91089798, "longitude": -43.21362052, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001496.png", "snapshot_timestamp": "2024-02-10T00:56:26.356761+00:00", "objects": ["image_description", "water_level", "traffic_ease_vehicle", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:42.266117+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a central reservation. The road is lit by streetlights, and there are trees on either side of the road. There are cars driving in both directions, and the traffic appears to be moderate. The road surface is visible, and there are no obvious signs of water or debris on the road."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:42.749882+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:42.957805+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly in both directions."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:43.224566+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:42.051215+00:00", "label": "clean", "label_explanation": "The image is moderately clear, with some blurring and a few areas of uniform color. There are no major distortions or obstructions that would affect the overall analysis."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:42.467740+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}]}, {"id": "001497", "name": "PRA\u00c7A DA BANDEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91087081, "longitude": -43.21400139, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001497.png", "snapshot_timestamp": "2024-02-10T00:55:27.537492+00:00", "objects": ["image_description", "traffic_ease_vehicle", "water_level", "image_condition", "road_blockade", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:55:51.992122+00:00", "label": "null", "label_explanation": "The image captures a nighttime scene of an urban road in Rio de Janeiro. In the foreground, there is a wide, six-lane road with a central reservation and street lights. The road is made of asphalt and is in good condition, with no visible potholes or cracks. There are no vehicles on the road, and the only sign of movement is a pedestrian crossing the road in the distance. The pedestrian is wearing a light-colored shirt and is carrying a bag. In the background, there are tall buildings and a pedestrian bridge. The buildings are made of concrete and glass, and they are lit up by the street lights. The pedestrian bridge is made of steel and has a blue roof. The image is well-lit and the colors are vibrant. The overall impression is one of a safe and clean urban environment."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:55.402520+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. The road is clear and free of any obstructions, making it easy for vehicles to pass through."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:55.132664+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road's surface. The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:51.497979+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and the overall quality is good."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:55.800028+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades. Vehicles can pass through without any difficulty."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:54.919435+00:00", "label": "false", "label_explanation": "There is no water on the road surface. The road is completely dry."}]}, {"id": "001498", "name": "R. VISCONDE DE SANTA ISABEL X R. ALEXANDRE CALAZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91683558, "longitude": -43.25997292, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["traffic_ease_vehicle", "water_level", "water_in_road", "image_condition", "image_description", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001499", "name": "R. VISCONDE DE SANTA ISABEL X R. ALEXANDRE CALAZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91696776, "longitude": -43.25990721, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001499.png", "snapshot_timestamp": "2024-02-10T00:55:35.823715+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:55.416675+00:00", "label": "easy", "label_explanation": "The road is dry, and there is no traffic congestion. Vehicles can move freely."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:55.127734+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road's surface. The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:52.686904+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no areas of uniform color or blurring. The overall quality of the image is good."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:54.920414+00:00", "label": "false", "label_explanation": "There is no water visible on the road. The road surface is dry."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:55.635940+00:00", "label": "free", "label_explanation": "The road is clear, and there are no obstructions. Traffic can flow freely."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:52.932622+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are trees on either side of the road. There is a bus driving on the left side of the road, and a red car is approaching from the opposite direction. There are no people visible in the image."}]}, {"id": "001500", "name": "AV. MARACAN\u00c3 X R. MAJOR \u00c1VILA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919797, "longitude": -43.233887, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001500.png", "snapshot_timestamp": "2024-02-10T00:56:19.155956+00:00", "objects": ["water_in_road", "road_blockade", "traffic_ease_vehicle", "image_condition", "water_level", "image_description"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:56:35.362797+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface. The road is dry, and there are no puddles or other signs of moisture."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:36.115106+00:00", "label": "free", "label_explanation": "The road is clear, and there are no obstructions blocking traffic flow. Vehicles can move freely through the intersection."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:35.828442+00:00", "label": "easy", "label_explanation": "The road is dry, and there is no traffic congestion. Vehicles can easily navigate the intersection."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:34.360424+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:35.632243+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road surface, the water level is 'low_indifferent'."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:34.744870+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection at night. There are several cars on the road, including a yellow taxi, a white van, and a black sedan. The road is well-lit, and there are streetlights and buildings in the background. The image is clear and provides a good view of the intersection."}]}, {"id": "001501", "name": "AV. MARACAN\u00c3 X R. MAJOR \u00c1VILA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919462, "longitude": -43.234025, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001501.png", "snapshot_timestamp": "2024-02-10T00:56:07.019673+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_level", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:35.624903+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions or traffic congestion. Vehicles can easily navigate the road."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:34.422704+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection at night. There are several parked cars on the left side of the intersection, and a few people are walking around. The street lights are on, and the overall visibility is good."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:35.364583+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry, with no visible signs of water."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:34.200471+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:34.742256+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:35.830129+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades. Traffic can flow freely in all directions."}]}, {"id": "001502", "name": "AV. PASTEUR X R. VENCESLAU - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951155, "longitude": -43.175334, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001502.png", "snapshot_timestamp": "2024-02-10T00:55:52.432086+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "image_description", "water_level", "image_condition", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:56:21.960133+00:00", "label": "free", "label_explanation": "The road is not blocked. The cars are able to drive through the water without any difficulty."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:19.816541+00:00", "label": "easy", "label_explanation": "The traffic is moving slowly, but it is not stopped. The cars are able to drive through the water without any difficulty."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:13.503746+00:00", "label": "null", "label_explanation": "The image is a night view of a busy urban road in Rio de Janeiro. The road is wet from rain, and there is some traffic congestion. There are cars, buses, and motorcycles on the road, and they are all moving slowly. The buildings on either side of the road are tall and brightly lit. There are also trees and other vegetation on either side of the road."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:18.297624+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. It is not covering the wheels of the cars."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:12.140166+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:16.374234+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some dry patches of road visible."}]}, {"id": "001503", "name": "AV. PASTEUR X R. VENCESLAU - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951551, "longitude": -43.175261, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001503.png", "snapshot_timestamp": "2024-02-10T00:56:16.432305+00:00", "objects": ["water_in_road", "water_level", "image_description", "traffic_ease_vehicle", "road_blockade", "image_condition"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:56:35.367094+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:35.644986+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:34.626332+00:00", "label": "null", "label_explanation": "The image is a night view of a busy urban road intersection. The road is wide and straight, with a slight bend to the right. There are multiple lanes of traffic in both directions, separated by a concrete median. The median has trees and shrubs, and there are street lights along the road. There are buildings and other structures on either side of the road, and the intersection is controlled by traffic lights. There is a statue in the bottom left corner of the image, and a pedestrian crossing in the foreground."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:35.847571+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions or traffic congestion. Traffic is flowing smoothly in both directions."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:36.131786+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades visible."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:34.338964+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or blurring. There are no uniform color patches or distortions."}]}, {"id": "001504", "name": "CAMPO DE S\u00c3O CRIST\u00d3V\u00c3O X COL\u00c9GIO PEDRO II - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8989241, "longitude": -43.22031261, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001504.png", "snapshot_timestamp": "2024-02-10T00:55:58.578420+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_description", "image_condition", "water_in_road", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:15.595072+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are no obstructions on the road, and traffic is flowing smoothly."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:15.399333+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry, with no visible signs of water."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:14.872422+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a concrete barrier in the center. There is a street light on the left side of the road, and a few trees can be seen in the background. The road is relatively empty, with only a few cars visible. The image is well-lit, and the details of the scene are clearly visible."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:14.513696+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:15.097780+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:15.827383+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades visible."}]}, {"id": "001505", "name": "CAMPO DE S\u00c3O CRIST\u00d3V\u00c3O X COL\u00c9GIO PEDRO II - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.899081, "longitude": -43.220322, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001505.png", "snapshot_timestamp": "2024-02-10T00:56:29.866221+00:00", "objects": ["road_blockade", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle", "image_description"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:56:43.627541+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades visible. Traffic can flow freely in both directions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:42.807646+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:43.101172+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:42.307528+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and the overall quality is good."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:43.331466+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. The road is also free of any obstructions, making it easy for vehicles to pass through."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:42.602791+00:00", "label": "null", "label_explanation": "The image captures a scene of an urban road at night. The road is relatively wide, with a\u5206\u660e\u6670\u7684\u767d\u8272\u6807\u7ebf, and is lined with trees on either side. There is a building on the left side of the road, and a street light can be seen in the distance. The road is lit by streetlights, and there are no visible obstructions."}]}, {"id": "001506", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. REAL GRANDEZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95443216, "longitude": -43.19304187, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001506.png", "snapshot_timestamp": "2024-02-10T00:56:12.611699+00:00", "objects": ["image_description", "traffic_ease_vehicle", "image_condition", "water_level", "road_blockade", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:33.432221+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection in an urban area. It is night time and the street lights are on. There are several cars and a motorcycle on the road, all of which are in motion. The road is dry and there are no visible signs of construction or other obstructions. The buildings on either side of the road are mostly commercial, with a few residential buildings mixed in. There are people walking on the sidewalks and crossing the street."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:34.158563+00:00", "label": "easy", "label_explanation": "The road is dry and there are no visible signs of construction or other obstructions. There are several cars and a motorcycle on the road, all of which are in motion. This indicates that traffic is flowing smoothly and that there are no major delays."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:33.233305+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:33.921686+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:34.348559+00:00", "label": "free", "label_explanation": "The road is clear and there are no visible signs of obstructions. Traffic is flowing smoothly and there are no major delays."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:33.672496+00:00", "label": "false", "label_explanation": "There is no water on the road surface."}]}, {"id": "001507", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. REAL GRANDEZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95434572, "longitude": -43.19297012, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001507.png", "snapshot_timestamp": "2024-02-10T00:55:54.849662+00:00", "objects": ["traffic_ease_vehicle", "image_description", "road_blockade", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:16.481290+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly. There are no major obstructions or delays. The road is wet, but it is not causing any significant problems for drivers."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:15.783585+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection at night. There are several vehicles visible, including cars and motorcycles. The street lights are on, and the traffic signals are clearly visible. The road surface is wet, but there is no standing water. There are a few trees and buildings in the background."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:18.299955+00:00", "label": "free", "label_explanation": "The road is not blocked. There are no obstructions or road closures visible in the image."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:16.253686+00:00", "label": "low_indifferent", "label_explanation": "The water level on the road is low. There are some small puddles, but they are not deep. The road is still passable for vehicles."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:15.982267+00:00", "label": "true", "label_explanation": "There is water on the road surface, but it is not covering the entire road. There are some small puddles, but they are not causing any significant traffic disruptions."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:15.518536+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}]}, {"id": "001508", "name": "R. FRANCISCO EUG\u00caNIO, 329 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907555, "longitude": -43.219223, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001508.png", "snapshot_timestamp": "2024-02-10T00:55:48.505516+00:00", "objects": ["image_description", "traffic_ease_vehicle", "road_blockade", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:09.999176+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are trees on either side of the street. There is a black car driving on the street, and there are several parked cars on the side of the street. There are also people walking on the street."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:10.754460+00:00", "label": "easy", "label_explanation": "The road is dry, and there is no traffic congestion."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:14.529761+00:00", "label": "free", "label_explanation": "The road is clear, and there are no obstructions."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:10.499229+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:10.267943+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:04.214463+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}]}, {"id": "001509", "name": "R. FRANCISCO EUG\u00caNIO, 329 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9074784, "longitude": -43.21917874, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001509.png", "snapshot_timestamp": "2024-02-10T00:56:06.881398+00:00", "objects": ["traffic_ease_vehicle", "image_description", "road_blockade", "water_level", "image_condition", "water_in_road"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:34.956410+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no obstructions to traffic."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:31.510633+00:00", "label": "null", "label_explanation": "The image is a night scene of a four-lane road with a pedestrian crossing. There is an ambulance with its emergency lights on, driving in the left lane towards the camera. A white car is driving in the right lane, and a motorcycle is driving in the far right lane. There is a pedestrian crossing the road in the middle of the image. The road is well-lit, and there are trees and buildings on either side of the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:37.910288+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:31.998554+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:31.330268+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is well-lit."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:31.725357+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"id": "001510", "name": "R. JOS\u00c9 EUG\u00caNIO, 18 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908592, "longitude": -43.220478, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001510.png", "snapshot_timestamp": "2024-02-10T00:56:20.517780+00:00", "objects": ["road_blockade", "image_description", "image_condition", "water_level", "water_in_road", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:56:42.695183+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades. Traffic is flowing smoothly, and there are no signs of congestion. Vehicles can easily navigate the road without any difficulty."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:41.295305+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a slight bend to the right. The road is lined with trees, and there are buildings and other structures on either side. The sky is clear, and the sun is shining. There are a few cars parked on the side of the road, and there is a bus driving in the right lane. There are no people visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:41.095966+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there are no large areas of uniform color. The overall quality of the image is good."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:42.083167+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, this category is indifferent."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:41.823928+00:00", "label": "false", "label_explanation": "There is no water visible on the road. The road surface is dry, and there are no puddles or other signs of moisture."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:42.384004+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly, and there are no signs of congestion. Vehicles can easily navigate the road without any difficulty."}]}, {"id": "001511", "name": "R. JOS\u00c9 EUG\u00caNIO, 18 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908674, "longitude": -43.220609, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001511.png", "snapshot_timestamp": "2024-02-10T00:58:17.107010+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_description", "water_in_road", "image_condition", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:55.883770+00:00", "label": "easy", "label_explanation": "The road is clear and dry, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:55.344302+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:54.923161+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There is a gas station on the right side of the image, and a bus is driving on the left side. There are cars parked on both sides of the street. The street is lit by streetlights."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:55.129758+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:52.130345+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:01.389836+00:00", "label": "free", "label_explanation": "The road is clear and free of obstructions."}]}, {"id": "001512", "name": "ESTR. DO CAMPINHO, 2226 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893799, "longitude": -43.585431, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001512.png", "snapshot_timestamp": "2024-02-10T00:56:07.674866+00:00", "objects": ["traffic_ease_vehicle", "water_level", "water_in_road", "image_description", "image_condition", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:29.459425+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. The road is clear and free of any obstructions, allowing for easy passage of vehicles."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:23.694314+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:21.959884+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:19.826734+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are trees and buildings on either side. There is a white car driving in the foreground, and a motorcycle in the background. The street is in good condition, with no visible signs of damage or flooding."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:18.516456+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and consistent, and there are no large areas of uniform color. There is some motion blur in the image, but it does not significantly affect the overall quality."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:29.756867+00:00", "label": "free", "label_explanation": "The road is completely clear, with no visible signs of obstructions. There are no cars, pedestrians, or other objects blocking the road, allowing for free flow of traffic."}]}, {"id": "001513", "name": "ESTR. DO CAMPINHO, 2226 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893672, "longitude": -43.585578, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001513.png", "snapshot_timestamp": "2024-02-10T00:55:42.495723+00:00", "objects": ["image_description", "traffic_ease_vehicle", "water_level", "road_blockade", "water_in_road", "image_condition"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:15.617549+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a central reservation and multiple lanes of traffic in both directions. The road is lined with trees, and there are buildings and other structures in the background. The sky is clear, and the sun is shining. There are a few cars and trucks visible on the road, but overall the traffic is light."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:18.154740+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions to traffic. Traffic is flowing smoothly in both directions."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:16.097519+00:00", "label": "low_indifferent", "label_explanation": "The road surface is dry, with no visible signs of water."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:18.387391+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:15.895440+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:12.614336+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there are no large areas of uniform color."}]}, {"id": "001514", "name": "PRA\u00c7A AQUIDAUANA, 1-908 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.850391, "longitude": -43.30943, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001514.png", "snapshot_timestamp": "2024-02-10T00:56:29.415198+00:00", "objects": ["image_description", "traffic_ease_vehicle", "water_level", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:48.602799+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central reservation. There are trees on either side of the road. The road is wet from rain, and there are some puddles on the surface. There is a car driving in the right lane."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:49.287366+00:00", "label": "easy", "label_explanation": "The road is wet, but it is still easy for vehicles to drive on."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:49.089080+00:00", "label": "low_indifferent", "label_explanation": "The water is at a low level and does not cover the entire road surface."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:49.574078+00:00", "label": "free", "label_explanation": "The road is not blocked, and vehicles can pass through."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:48.377261+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:48.807666+00:00", "label": "true", "label_explanation": "There is water on the road surface."}]}, {"id": "001515", "name": "PRA\u00c7A AQUIDAUANA, 1-908 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85049, "longitude": -43.30943, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001515.png", "snapshot_timestamp": "2024-02-10T00:56:09.944831+00:00", "objects": ["image_description", "traffic_ease_vehicle", "water_level", "road_blockade", "image_condition", "water_in_road"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:32.582740+00:00", "label": "null", "label_explanation": "The image is a night scene of a four-way road intersection. There is a bus, a white car, and a few other vehicles in the image. The bus is in the foreground, and it is stopped at a red light. The white car is behind the bus, and it is also stopped at the red light. There are a few other vehicles in the background, but they are not clearly visible. The road is wet, and there are some puddles on the ground. There are also some trees and buildings in the background."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:33.375833+00:00", "label": "easy", "label_explanation": "The road is wet, but it is still passable for vehicles. There are some puddles on the ground, but they are not very large. The water is not deep enough to cause any problems for vehicles."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:33.148801+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. There are some puddles on the ground, but they are not very large. The water is not deep enough to cause any problems for vehicles."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:33.580350+00:00", "label": "free", "label_explanation": "The road is not blocked. There are no obstructions on the road, and vehicles can pass through freely."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:32.371889+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:32.868318+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some puddles on the ground, but they are not very large. The water is not deep enough to cause any problems for vehicles."}]}, {"id": "001516", "name": "AV. MERITI, 2114 - BR\u00c1S DE PINA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.836601, "longitude": -43.308891, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001517", "name": "AV. MERITI, 2114 - BR\u00c1S DE PINA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.135/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.836701, "longitude": -43.308891, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001518", "name": "R. ENG. FRANCELINO MOTA, 627-489 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.833729, "longitude": -43.309377, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001519", "name": "R. ENG. FRANCELINO MOTA, 627-489 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.833929, "longitude": -43.309377, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001520", "name": "ESTR. DO QUITUNGO, 1919 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83622, "longitude": -43.307471, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001521", "name": "ESTR. DO QUITUNGO, 1919 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.139/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83632, "longitude": -43.307471, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001522", "name": "R. C\u00c2NDIDO BEN\u00cdCIO, 1757 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.896959, "longitude": -43.351512, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["traffic_ease_vehicle", "water_level", "water_in_road", "road_blockade", "image_description", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001523", "name": "R. C\u00c2NDIDO BEN\u00cdCIO, 1757 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8971, "longitude": -43.351512, "snapshot_url": null, "snapshot_timestamp": null, "objects": ["traffic_ease_vehicle", "water_level", "image_condition", "water_in_road", "road_blockade", "image_description"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_level", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_condition", "timestamp": null, "label": null, "label_explanation": null}, {"object": "water_in_road", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": null, "label": null, "label_explanation": null}]}, {"id": "001524", "name": "AV. BRASIL ALT. RUA BELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885262, "longitude": -43.22757, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001524.png", "snapshot_timestamp": "2024-02-10T00:56:23.596081+00:00", "objects": ["road_blockade", "water_level", "image_description", "water_in_road", "traffic_ease_vehicle", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:56:42.971575+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions. Traffic can flow smoothly without any disruptions."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:42.472050+00:00", "label": "low_indifferent", "label_explanation": "The water on the road surface is shallow and does not cover any significant portion of the road. It is not causing any traffic disruptions."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:41.978533+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road intersection. The road surface is mostly dry, with a few small puddles. There is a white truck with a blue stripe on the back, a motorcycle, and several cars on the road. The street lights are on, and the traffic signals are visible in the background. There are no visible obstructions or hazards on the road."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:42.171091+00:00", "label": "true", "label_explanation": "There is a small amount of water on the road surface, but it is not covering any significant area and does not pose a hazard to vehicles."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:42.677539+00:00", "label": "easy", "label_explanation": "The road is dry and has a few small puddles, which do not pose any significant hindrance to vehicles. Traffic can flow smoothly without any major disruptions."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:41.701454+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}]}, {"id": "001525", "name": "R. BELA, 1281 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885242, "longitude": -43.227827, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001525.png", "snapshot_timestamp": "2024-02-10T00:56:04.691486+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "water_level", "image_description", "image_condition", "water_in_road"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:30.936833+00:00", "label": "easy", "label_explanation": "The road is still passable for vehicles, although they may need to slow down due to the wet conditions."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:31.233350+00:00", "label": "free", "label_explanation": "The road is not blocked, and traffic is flowing normally."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:30.666595+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. It is not covering the wheels of the vehicles."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:29.905106+00:00", "label": "null", "label_explanation": "The image shows a busy intersection at night. There are cars, buses, and motorcycles on the road. The road is wet from the rain, but it is still passable. There are no visible signs of flooding or other hazards."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:27.431071+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:30.239138+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some dry patches visible."}]}, {"id": "001526", "name": "CAMPO S\u00c3O CRIST\u00d3V\u00c3O, 13 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895882, "longitude": -43.220764, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001527", "name": "CAMPO S\u00c3O CRIST\u00d3V\u00c3O, 13 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.7/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895926, "longitude": -43.2207, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001528", "name": "AV. FRANCISCO BICALHO, 2042 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90635727, "longitude": -43.21006306, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001530", "name": "R. HADDOCK LOBO 282 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.185/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919879, "longitude": -43.21525, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001530.png", "snapshot_timestamp": "2024-02-10T00:58:17.729656+00:00", "objects": ["road_blockade", "traffic_ease_vehicle", "image_condition", "image_description", "water_level", "water_in_road"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:55:51.722132+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades. Traffic is flowing smoothly in both directions, and there are no signs of any congestion or delays."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:51.383094+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are no obstructions on the road, and traffic is flowing smoothly in both directions. Vehicles can easily navigate the road without any difficulty."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:50.423538+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:50.621338+00:00", "label": "null", "label_explanation": "The image captures a night scene of an urban road in Rio de Janeiro. The road is relatively wide, with a central median and multiple lanes for traffic in both directions. It is lit by streetlights, and there are trees on either side of the road. There is a bus stop on the right side of the road, and a food stand on the left side. There are people walking on the sidewalk on both sides of the road, and there are cars parked on the side of the road. The traffic lights at the intersection are green for both directions."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:51.113714+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road's surface. The road is completely dry."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:50.906885+00:00", "label": "false", "label_explanation": "There is no water on the road surface. The road is completely dry."}]}, {"id": "001531", "name": "R. HADDOCK LOBO 282 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.184/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919783, "longitude": -43.215367, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001531.png", "snapshot_timestamp": "2024-02-10T00:56:03.536109+00:00", "objects": ["water_level", "image_description", "water_in_road", "traffic_ease_vehicle", "road_blockade", "image_condition"], "identifications": [{"object": "water_level", "timestamp": "2024-02-10T00:56:16.039210+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:15.635240+00:00", "label": "null", "label_explanation": "The image is a night scene of a street in Rio de Janeiro. The street is lit by streetlights, and there are cars parked on either side of the street. There are also people walking on the street. The street is in good condition, with no visible signs of damage."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:15.852522+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:16.247082+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:18.301102+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:15.448042+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}]}, {"id": "001532", "name": "AV. HEITOR BELTR\u00c3O, S/N - TIJUCA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920927, "longitude": -43.225786, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001533", "name": "AV. HEITOR BELTR\u00c3O, S/N - TIJUCA - FIXA", "rtsp_url": "rtsp://admin:admin@10.52.25.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920903, "longitude": -43.225935, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001534", "name": "R. MORAIS E SILVA, 83 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912101, "longitude": -43.221899, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001534.png", "snapshot_timestamp": "2024-02-10T00:56:01.288797+00:00", "objects": ["traffic_ease_vehicle", "image_description", "image_condition", "water_level", "water_in_road", "road_blockade"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:31.231014+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic flow should be easy."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:30.193300+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are a few cars parked on the side of the road. There are also a few trees and buildings in the background."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:29.463289+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the overall quality is good."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:30.944023+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:30.659235+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:31.432190+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions. Traffic flow should be unimpeded."}]}, {"id": "001535", "name": "R. MORAIS E SILVA, 83 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911939, "longitude": -43.222126, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001535.png", "snapshot_timestamp": "2024-02-10T00:56:21.858312+00:00", "objects": ["water_level", "road_blockade", "water_in_road", "image_description", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "water_level", "timestamp": "2024-02-10T00:56:46.175557+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:46.596842+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:45.963852+00:00", "label": "false", "label_explanation": "There is no water visible on the road."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:45.691476+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a central reservation. There are street lights along the road, and trees can be seen in the background. The road is dry, and there is no traffic visible."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:45.492936+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:46.379639+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic flow should be easy."}]}, {"id": "001538", "name": "R. EPITACIO PESSOA X R. VINICIUS DE MORAIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979591, "longitude": -43.202832, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001538.png", "snapshot_timestamp": "2024-02-10T00:58:21.124318+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_description", "water_level", "water_in_road", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:48.187124+00:00", "label": "easy", "label_explanation": "The water on the road is not causing any traffic problems. The cars are able to drive through the water without any difficulty."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:48.401500+00:00", "label": "free", "label_explanation": "The road is not blocked. The cars are able to drive through the water without any difficulty."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:47.514604+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are trees and buildings on either side of the street. There are several people crossing the street, and there is a car driving down the street. The street is wet from the rain, and there are some puddles on the ground."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:47.925595+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. It is not covering the entire surface of the road, and it is not causing any traffic problems. The water level is low."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:47.713000+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some puddles on the ground, but they are not large or deep. The water is not causing any traffic problems."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:47.223787+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}]}, {"id": "001539", "name": "R. EPITACIO PESSOA X R. VINICIUS DE MORAIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979458, "longitude": -43.202361, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001539.png", "snapshot_timestamp": "2024-02-10T00:56:34.142013+00:00", "objects": ["road_blockade", "image_description", "water_in_road", "water_level", "image_condition", "traffic_ease_vehicle"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-10T00:53:56.610527+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockages. Traffic is flowing smoothly in both directions."}, {"object": "image_description", "timestamp": "2024-02-10T00:53:55.621212+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road scene at night. The wide avenue is lined with lush trees, and streetlights illuminate the surroundings. There is a steady flow of traffic, with cars, buses, and motorbikes moving in both directions. Pedestrians can be seen crossing the road at the designated crosswalk. Overall, the urban road is in good condition, with no visible obstructions or hazards."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:53:55.894714+00:00", "label": "false", "label_explanation": "There is no water visible on the road surface. The road is completely dry."}, {"object": "water_level", "timestamp": "2024-02-10T00:53:56.111262+00:00", "label": "low_indifferent", "label_explanation": "Since there is no water on the road, this category is indifferent."}, {"object": "image_condition", "timestamp": "2024-02-10T00:53:55.394574+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and the overall quality is good."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:53:56.318487+00:00", "label": "easy", "label_explanation": "The road is dry and free of obstructions, allowing for easy vehicle movement. Traffic is flowing smoothly in both directions, with no congestion or delays."}]}, {"id": "001540", "name": "AV. MARACANA X PRA\u00c7A LUIS LA SAIGNE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92087272, "longitude": -43.23531675, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001540.png", "snapshot_timestamp": "2024-02-10T00:56:29.372095+00:00", "objects": ["image_condition", "water_in_road", "image_description", "traffic_ease_vehicle", "water_level", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:45.604198+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:46.033109+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:45.810935+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with a concrete fence in the foreground and buildings in the background. The road is lit by streetlights, and there are trees on either side of the road. There is a white car driving in the foreground, and a black car is partially visible in the background. The road is dry, and there are no visible signs of construction or other hazards."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:46.512589+00:00", "label": "easy", "label_explanation": "The road is dry and clear, and there are no visible signs of traffic congestion. The road is wide and straight, and there are no sharp turns or other hazards."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:46.225209+00:00", "label": "low_indifferent", "label_explanation": "The road is dry, and there is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:46.724659+00:00", "label": "free", "label_explanation": "The road is clear, and there are no visible signs of road blockages. There are no cars or other objects blocking the road, and the road is open to traffic."}]}, {"id": "001541", "name": "AV. MARACAN X PRA\u00c7A LUIS LA SAIGNE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92119511, "longitude": -43.23531541, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001541.png", "snapshot_timestamp": "2024-02-10T00:56:32.118721+00:00", "objects": ["traffic_ease_vehicle", "water_level", "image_description", "water_in_road", "road_blockade", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:53:53.180241+00:00", "label": "easy", "label_explanation": "The traffic is not affected by the water. The cars are able to drive through the water without any problems."}, {"object": "water_level", "timestamp": "2024-02-10T00:53:52.969780+00:00", "label": "low_indifferent", "label_explanation": "The water level is low. The water is not covering any of the cars or the road signs."}, {"object": "image_description", "timestamp": "2024-02-10T00:53:52.467675+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection at night. It is illuminated by streetlights, and there are cars on the road. The road surface is wet from rain, and there are some puddles. There are also some trees and buildings in the background."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:53:52.687957+00:00", "label": "true", "label_explanation": "There is water on the road surface. The water is not very deep, and it does not appear to be causing any problems for the cars."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:53:53.383137+00:00", "label": "free", "label_explanation": "The road is not blocked. The cars are able to drive through the intersection without any problems."}, {"object": "image_condition", "timestamp": "2024-02-10T00:53:52.203799+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}]}, {"id": "001542", "name": "AV. MARACAN\u00c3 X S\u00c3O FRANCISCO XAVIER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91624, "longitude": -43.229786, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001543", "name": "AV. MARACAN\u00c3 X S\u00c3O FRANCISCO XAVIER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916272, "longitude": -43.229357, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001544", "name": "AV. AMARO CAVALCANTI, 693 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897675, "longitude": -43.283768, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001545", "name": "AV. AMARO CAVALCANTI, 693 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89761, "longitude": -43.28409, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001546", "name": "R. MANUEL MIRANDA, 57 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.250/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902372, "longitude": -43.265198, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001547", "name": "R. MANUEL MIRANDA, 57 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.251/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9024, "longitude": -43.265316, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001548", "name": "AV. DOM H\u00c9LDER C\u00c2MARA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.884915, "longitude": -43.277962, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001549", "name": "AV. DOM H\u00c9LDER C\u00c2MARA, 5861 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88689, "longitude": -43.28782, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001550", "name": "AUTOESTRADA ENG. FERNANDO MAC DOWELL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.996567, "longitude": -43.260566, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001551", "name": "AUTOESTRADA ENG. FERNANDO MAC DOWELL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.996394, "longitude": -43.26018, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001552", "name": "ESTR. DO MONTEIRO (ENTRE ESTR. DA CAMBOTA E ESTR. IARAQU\u00c3) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920731, "longitude": -43.56299, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001553", "name": "R. ISIDRO DE FIGUEIREDO X R. PROF. EURICO RABELO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914009, "longitude": -43.230984, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001553.png", "snapshot_timestamp": "2024-02-08T20:00:59.488783+00:00", "objects": ["road_blockade", "water_level", "traffic_ease_vehicle", "image_description", "water_in_road", "image_condition"], "identifications": [{"object": "road_blockade", "timestamp": "2024-02-08T20:01:13.441835+00:00", "label": "free", "label_explanation": "There are no obstructions on the road."}, {"object": "water_level", "timestamp": "2024-02-08T10:48:36.737801+00:00", "label": "puddle", "label_explanation": "The water level on the road is between one-fourth and one-half of the wheel of a passenger vehicle."}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "image_description", "timestamp": "2024-02-08T19:21:15.755277+00:00", "label": "null", "label_explanation": "The image shows a wide, straight road with a few cars parked on the side. The road is in good condition and there are no visible signs of wear or damage. The weather is clear and sunny."}, {"object": "water_in_road", "timestamp": "2024-02-08T20:01:13.921109+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "image_condition", "timestamp": "2024-02-08T20:01:12.715116+00:00", "label": "clean", "label_explanation": "The image is clear and free of visual interferences."}]}, {"id": "001554", "name": "R. ISIDRO DE FIGUEIREDO X R. PROF. EURICO RABELO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91414, "longitude": -43.230735, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001554.png", "snapshot_timestamp": "2024-02-08T20:01:05.209463+00:00", "objects": ["image_condition", "water_level", "image_description", "water_in_road", "traffic_ease_vehicle", "road_blockade"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-08T20:01:24.021448+00:00", "label": "clean", "label_explanation": "The image is clear and free of visual interferences."}, {"object": "water_level", "timestamp": "2024-02-08T11:02:35.236856+00:00", "label": "low_indifferent", "label_explanation": "There is no water present on the road surface. The road is completely dry."}, {"object": "image_description", "timestamp": "2024-02-08T19:38:37.898087+00:00", "label": "null", "label_explanation": "The image is of a road with a large tree blocking the entire road. The road is surrounded by trees and buildings. The weather is clear and sunny."}, {"object": "water_in_road", "timestamp": "2024-02-08T20:01:24.502093+00:00", "label": "false", "label_explanation": "No water present on the road; the road is completely dry."}, {"object": "traffic_ease_vehicle", "timestamp": null, "label": null, "label_explanation": null}, {"object": "road_blockade", "timestamp": "2024-02-08T20:01:24.235264+00:00", "label": "free", "label_explanation": "The road is clear, without any obstructions impeding traffic flow."}]}, {"id": "001555", "name": "AV. BRASIL X ESTR. DA EQUITA\u00c7\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.862169, "longitude": -43.411317, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001556", "name": "AV. PRES. VARGAS, 3107 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909763, "longitude": -43.204178, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001556.png", "snapshot_timestamp": "2024-02-10T00:55:57.106212+00:00", "objects": ["image_condition", "traffic_ease_vehicle", "water_level", "image_description", "road_blockade", "water_in_road"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:56:13.503209+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:23.879540+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:23.597617+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:16.469948+00:00", "label": "null", "label_explanation": "The image shows a street scene in Rio de Janeiro. It is night time and the street is lit by streetlights. There are a few cars parked on the side of the street and a bus driving in the middle lane. There are also a few people walking on the sidewalk. The street is made of asphalt and is in good condition. There are no visible signs of construction or repair."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:34.205557+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:19.817169+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"id": "001557", "name": "AV. PRES. VARGAS, 3107 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90971, "longitude": -43.204042, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001557.png", "snapshot_timestamp": "2024-02-10T00:56:18.118012+00:00", "objects": ["water_level", "image_description", "road_blockade", "image_condition", "traffic_ease_vehicle", "water_in_road"], "identifications": [{"object": "water_level", "timestamp": "2024-02-10T00:56:42.696129+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:42.085169+00:00", "label": "null", "label_explanation": "The image is a night scene of a street in Rio de Janeiro. There are several large floats in the foreground, and a large crowd of people is walking along the street behind them. The street is lined with trees, and there are buildings in the background. The image is clear and well-lit."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:43.204327+00:00", "label": "totally_blocked", "label_explanation": "The road is completely blocked by the floats and the crowd."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:41.835519+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the overall quality is good."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:42.924856+00:00", "label": "impossible", "label_explanation": "The road is completely blocked by the floats and the crowd."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:42.391857+00:00", "label": "false", "label_explanation": "There is no water on the road."}]}, {"id": "001558", "name": "COMLURB - R. CUBA, 364 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.829038, "longitude": -43.277315, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001559", "name": "COMLURB - R. REP\u00daBLICA DO L\u00cdBANO, 67 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906517, "longitude": -43.185974, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001560", "name": "COMLURB - RUA BELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.886781, "longitude": -43.226187, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001561", "name": "COMLURB - R. RIO GRANDE DO SUL, 26 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.898263, "longitude": -43.276429, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001563", "name": "COMLURB - AV. AYRTON SENNA, 2001 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.53/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992821, "longitude": -43.366264, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001564", "name": "COMLURB - R. S\u00c3O CLEMENTE, 47 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949332, "longitude": -43.183939, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001565", "name": "COMLURB - RUA POMPEU LOUREIRO, 21 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971893, "longitude": -43.191684, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001566", "name": "R. BAR\u00c3O DE S\u00c3O FRANCISCO, 444 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915247, "longitude": -43.251244, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001567", "name": "R. FALC\u00c3O PADILHA, 264 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.85/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.872738, "longitude": -43.462313, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001568", "name": "COMLURB - AV. EPIT\u00c1CIO PESSOA, 532 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981579, "longitude": -43.213477, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001570", "name": "R. JO\u00c3O VICENTE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.861175, "longitude": -43.371214, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001571", "name": "AV. AYRTON SENNA, 2000 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.50.106.39/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.997074, "longitude": -43.365981, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001572", "name": "AV. AYRTON SENNA, 2000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.40/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9969612, "longitude": -43.3658624, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001573", "name": "AV. AYRTON SENNA, 2000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.52/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.996678, "longitude": -43.365629, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001574", "name": "AV. AYRTON SENNA, 2000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.996665, "longitude": -43.365818, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001575", "name": "AV. FRANCISCO BICALHO - IML - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90634047, "longitude": -43.21024614, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001577", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9074519, "longitude": -43.19798789, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001578", "name": "AV. PRESIDENTE VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907436, "longitude": -43.19752, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001579", "name": "AV. PRESIDENTE VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90737626, "longitude": -43.19790286, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001580", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907389, "longitude": -43.197549, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001581", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907179, "longitude": -43.196736, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001582", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9067, "longitude": -43.196613, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001583", "name": "AV. PRES. VARGAS X R. 1\u00ba MAR\u00c7O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9004745, "longitude": -43.17716349, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001584", "name": "AV. PRES.VARGAS X AV. RIO BRANCO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9011713, "longitude": -43.17903539, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001585", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909256, "longitude": -43.203505, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001586", "name": "AV. PRES. VARGAS, 2863 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90866558, "longitude": -43.20163206, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001587", "name": "AV. PRES. VARGAS, 2135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9065088, "longitude": -43.19450859, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001588", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90923, "longitude": -43.203407, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001589", "name": "AV. PRES. VARGAS, 2863 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90857, "longitude": -43.201632, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001590", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9070882, "longitude": -43.19642169, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001591", "name": "AV. PRES. VARGAS, 2135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90667, "longitude": -43.19429, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001593", "name": "AV. PRESIDENTE VARGAS 2014 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9066909, "longitude": -43.19675409, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001594", "name": "AV. SALVADOR DE S\u00c1, ALTURA DO BPCHQ - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911676, "longitude": -43.195227, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001594.png", "snapshot_timestamp": "2024-02-10T00:55:31.041302+00:00", "objects": ["traffic_ease_vehicle", "road_blockade", "image_condition", "image_description", "water_in_road", "water_level"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:51.687639+00:00", "label": "easy", "label_explanation": "The road is still passable for vehicles, although they may need to slow down and be cautious of the wet conditions. The puddles are not deep enough to cause any major problems, and there is no significant flooding."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:52.117677+00:00", "label": "free", "label_explanation": "The road is not blocked, and traffic is able to flow freely. There are no obstructions visible in the image."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:45.958401+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:46.216796+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road scene at night. It is night time and street lights are on. The road is partially wet from recent rain, with some puddles visible but not causing any significant traffic disruptions. There are several cars and people on the road, all of whom are navigating the wet conditions without difficulty. The road is lined with buildings and trees, and there are a few traffic signs visible."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:46.449764+00:00", "label": "true", "label_explanation": "There is water present on the road, but it is not covering the entire surface. There are some puddles, but they are small and shallow, and they do not appear to be causing any problems for traffic."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:46.650122+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. It is mostly confined to small puddles, and there are no areas where the water is completely covering the road."}]}, {"id": "001595", "name": "AV. SALVADOR DE S\u00c1, ALTURA DO BPCHQ - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911806, "longitude": -43.195233, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001596", "name": "RETORNO VIADUTO 31 DE MAR\u00c7O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911447, "longitude": -43.195545, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001597", "name": "RETORNO VIADUTO 31 DE MAR\u00c7O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911511, "longitude": -43.195651, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001598", "name": "SUB DO VIADUTO SAO SEBASTIAO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90887, "longitude": -43.196781, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001599", "name": "SUB DO VIADUTO SAO SEBASTIAO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909005, "longitude": -43.196809, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001600", "name": "VIADUTO S\u00c3O SEBASTI\u00c3O 1214 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908402, "longitude": -43.196919, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001601", "name": "SANTA TERESA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908283, "longitude": -43.196967, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001602", "name": "AV. PRES. VARGAS, 1733 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906115, "longitude": -43.19265, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001603", "name": "AV. PRES. VARGAS, 1733 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906054, "longitude": -43.192677, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001604", "name": "AV. PRES. VARGAS, 4-177 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906653, "longitude": -43.196331, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001605", "name": "MONUMENTO ZUMBI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906779, "longitude": -43.196588, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001606", "name": "AV. GOMES FREIRE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91082, "longitude": -43.184071, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001607", "name": "AV. GOMES FREIRE, 615- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911472, "longitude": -43.183563, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001608", "name": "R. DO REZENDE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911989, "longitude": -43.183258, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001609", "name": "AV. GOMES FREIRE, 758 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912689, "longitude": -43.183125, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001610", "name": "PRA\u00c7A JO\u00c3O PESSOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912844, "longitude": -43.182896, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001611", "name": "PRA\u00c7A JO\u00c3O PESSOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912874, "longitude": -43.182766, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001612", "name": "R. DR. LAGDEN, N.30 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914557, "longitude": -43.195153, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001612.png", "snapshot_timestamp": "2024-02-10T00:55:50.478332+00:00", "objects": ["image_description", "image_condition", "water_in_road", "traffic_ease_vehicle", "road_blockade", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:09.805232+00:00", "label": "null", "label_explanation": "The image shows a street scene at night. There are several cars parked on the side of the road, and a few people are walking around. There is a building on the left side of the image, and a wall with graffiti on the right side. The street is lit by streetlights."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:07.758608+00:00", "label": "clean", "label_explanation": "The image is clear and has good lighting. There are no visible signs of image corruption or blurring."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:10.014388+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:11.728571+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic can flow freely."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:11.933192+00:00", "label": "free", "label_explanation": "The road is not blocked and is open to traffic."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:10.278791+00:00", "label": "low_indifferent", "label_explanation": "The road is dry."}]}, {"id": "001613", "name": "R. DR. LAGDEN, N.30 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914635, "longitude": -43.195109, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001613.png", "snapshot_timestamp": "2024-02-10T00:55:55.795510+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "road_blockade", "image_description", "image_condition", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:56:16.658358+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some small puddles, but they are not large enough to impede traffic."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:18.706935+00:00", "label": "easy", "label_explanation": "The water on the road is not causing any traffic problems. The cars are able to drive through the water without any difficulty."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:19.034084+00:00", "label": "free", "label_explanation": "The road is not blocked. The cars are able to drive through the water without any difficulty."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:16.428160+00:00", "label": "null", "label_explanation": "The image shows a wide road with a large, white truck with a red stripe in the foreground. The truck is on the right side of the road, and there are people walking on the left side. In the background, there is a fence with a large crowd of people behind it. The road is partially covered with water, and there are some small puddles on the ground. The image is taken at night, and the street lights are on."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:10.721980+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear accurate, and there are no large areas of uniform color. There is some motion blur in the image, but it does not significantly affect the overall quality."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:18.304439+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. It is only covering the surface of the road, and it is not deep enough to submerge the tires of a car."}]}, {"id": "001614", "name": "R. DO LAVRADIO, 206D - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91371, "longitude": -43.181538, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001615", "name": "R. MEM DE S\u00c1 X R. INVALIDOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913227, "longitude": -43.181606, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001615.png", "snapshot_timestamp": "2024-02-10T00:55:45.370450+00:00", "objects": ["image_description", "traffic_ease_vehicle", "image_condition", "road_blockade", "water_in_road", "water_level"], "identifications": [{"object": "image_description", "timestamp": "2024-02-10T00:56:01.392791+00:00", "label": "null", "label_explanation": "The image shows a busy urban street scene at night. There are several cars and buses on the road, as well as a number of people walking on the sidewalks. The buildings on either side of the street are tall and brightly lit. The street is wet from the rain, and there are some puddles on the ground. There is a traffic light in the foreground, and a street sign that says 'Rua do Lavradio'."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:10.283404+00:00", "label": "easy", "label_explanation": "The traffic is not affected by the water on the road. The cars and buses are able to drive through the puddles without any problems. The traffic is moving smoothly."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:58.853900+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. The colors appear natural and vibrant, and there are no large areas of uniform color. There is some motion blur in the image, but it does not significantly affect the overall quality."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:10.476223+00:00", "label": "free", "label_explanation": "The road is not blocked. The cars and buses are able to drive through the puddles without any problems. There are no obstructions on the road."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:04.209480+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some puddles on the ground, but they are not large or deep. The water is not causing any problems for traffic."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:10.001465+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. It is not covering the entire surface of the road, and it is not causing any problems for traffic. The water level is low."}]}, {"id": "001616", "name": "PRA\u00c7A PARIS - ENTRADA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91701262, "longitude": -43.17634714, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001617", "name": "PRA\u00c7A PARIS - LAGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91610723, "longitude": -43.17616287, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001618", "name": "PRA\u00c7A PARIS - BOMBA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91542041, "longitude": -43.17619441, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001621", "name": "RUA DO PASSEIO, 70 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914498, "longitude": -43.178182, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001622", "name": "RUA DA LAPA, 1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915299, "longitude": -43.177856, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001623", "name": "RUA DA LAPA, 193B - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916222, "longitude": -43.177466, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001623.png", "snapshot_timestamp": "2024-02-10T00:55:44.973129+00:00", "objects": ["traffic_ease_vehicle", "image_description", "water_in_road", "road_blockade", "water_level", "image_condition"], "identifications": [{"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:56:09.526600+00:00", "label": "easy", "label_explanation": "The road is completely dry, with no visible signs of water. There are a few cars parked on the side of the road, and there are also a few people walking on the street. The road is relatively narrow, and there is a slight incline in the distance."}, {"object": "image_description", "timestamp": "2024-02-10T00:56:08.817372+00:00", "label": "null", "label_explanation": "The image is a night view of a street in Rio de Janeiro. The street is lit by streetlights, and there are a few cars parked on the side of the road. There are also a few people walking on the street. The buildings on either side of the street are mostly residential, with a few commercial buildings mixed in. The street is relatively narrow, and there is a slight incline in the distance."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:56:09.047947+00:00", "label": "false", "label_explanation": "There is no water on the road."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:56:09.790646+00:00", "label": "free", "label_explanation": "The road is completely clear, with no visible signs of obstructions. There are a few cars parked on the side of the road, and there are also a few people walking on the street. The road is relatively narrow, and there is a slight incline in the distance."}, {"object": "water_level", "timestamp": "2024-02-10T00:56:09.310918+00:00", "label": "low_indifferent", "label_explanation": "The road is completely dry."}, {"object": "image_condition", "timestamp": "2024-02-10T00:56:08.625918+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color, and the image is sharp and well-focused."}]}, {"id": "001624", "name": "AV. PRES. VARGAS X RIO BRANCO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90143, "longitude": -43.179173, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/001624.png", "snapshot_timestamp": "2024-02-10T00:58:20.811245+00:00", "objects": ["image_condition", "road_blockade", "water_in_road", "image_description", "traffic_ease_vehicle", "water_level"], "identifications": [{"object": "image_condition", "timestamp": "2024-02-10T00:55:49.932738+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no uniform color patches or blurring, and the overall quality is good."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:51.177092+00:00", "label": "free", "label_explanation": "The road is not blocked by any obstacles. The cars are able to drive through the intersection without any difficulty."}, {"object": "water_in_road", "timestamp": "2024-02-10T00:55:50.421449+00:00", "label": "true", "label_explanation": "There is water on the road, but it is not covering the entire surface. There are some puddles, but they are small and shallow, and they do not pose a significant obstacle to traffic."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:50.210642+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road scene at night. It is illuminated by streetlights, and there are cars, buses, and pedestrians on the road. The road is wet from recent rain, but there is no standing water. The buildings along the road are tall and brightly lit, and there are trees on either side of the road."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:50.915601+00:00", "label": "easy", "label_explanation": "The traffic is not affected by the water on the road. The cars are able to drive through the puddles without any difficulty."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:50.624012+00:00", "label": "low_indifferent", "label_explanation": "The water on the road is not very deep. It is mostly shallow puddles, with some areas of slightly deeper water. The deepest water is around the storm drain, but it is still not very deep."}]}, {"id": "001625", "name": "R. RIACHUELO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914124, "longitude": -43.182909, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001626", "name": "R. RIACHUELO X R. FRANCISCO MURAT\u00d3RI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914207, "longitude": -43.182463, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001627", "name": "AV. MEM DE S\u00c1, 1565 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913334, "longitude": -43.179936, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001628", "name": "LAPA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91317, "longitude": -43.179832, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001629", "name": "R. TEIXEIRA DE FREITAS, 1240 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914572, "longitude": -43.175205, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001630", "name": "AV. GABRIELA PRADO MAIA RIBEIRO, 289B - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.228/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923471, "longitude": -43.230543, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001631", "name": "AV. GABRIELA PRADO MAIA RIBEIRO, 289B - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923405, "longitude": -43.230503, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001632", "name": "AV. MARACAN\u00c3, 970 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923123, "longitude": -43.236016, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001633", "name": "AV. MARACAN\u00c3, 970 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.202/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923046, "longitude": -43.236094, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001634", "name": "ESTR. DA CACHAMORRA X R. OLINDA ELLIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914529, "longitude": -43.550027, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001635", "name": "AV. BRASIL, 418 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8873285, "longitude": -43.22437685, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001636", "name": "AV. BRASIL, 418 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887506, "longitude": -43.224199, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001637", "name": "AV. DOM HELDER CAMARA X R. PEDRAS ALTAS X R. SILVA MOUR\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.27/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.886872, "longitude": -43.280339, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001638", "name": "AV. ARMANDO LOMBARDI, 400 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006472, "longitude": -43.309784, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001639", "name": "AV. ARMANDO LOMBARDI, 675 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.83/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006517, "longitude": -43.31126, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001640", "name": "AV. ARMANDO LOMBARDI, N. 800 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.85/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006262, "longitude": -43.313202, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001641", "name": "RUA CONDE DE BONFIM - PRA\u00c7A SAENZ PE\u00d1A, 204 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.231/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925137, "longitude": -43.23246, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001642", "name": "R. PEREIRA NUNES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923836, "longitude": -43.236111, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001643", "name": "R. RIACHUELO X R. MONTE ALEGRE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914959, "longitude": -43.187317, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001644", "name": "AV. ARMANDO LOMBARDI, 704 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006261, "longitude": -43.31211, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001645", "name": "RUA VOLUNT\u00c1RIOS DA P\u00c1TRIA X RUA CAPIT\u00c3O SALOM\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955652, "longitude": -43.19636, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001646", "name": "RUA VOLUNT\u00c1RIOS DA P\u00c1TRIA E/F 190 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.13.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953112, "longitude": -43.189045, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001647", "name": "R. S\u00c3O CLEMENTE, 466 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952577, "longitude": -43.196284, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001648", "name": "RUA DONA MARIANA, N 02 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949766, "longitude": -43.18965, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001649", "name": "R. S\u00c3O CLEMENTE X DONA MARIANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94972696, "longitude": -43.19003593, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001650", "name": "ESTR. DAS CAPOEIRAS, 39 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.172/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895512, "longitude": -43.558826, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001651", "name": "ESTR. DO MENDANHA, 5", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.173/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885149, "longitude": -43.557064, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001652", "name": "ESTR. DO MENDANHA, 555", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.174/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88438, "longitude": -43.556973, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001653", "name": "ESTR. DO MENDANHA, 651 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.175/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.883682, "longitude": -43.556782, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001654", "name": "R. DO CATETE, 347", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931502, "longitude": -43.177558, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001655", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA, 187", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952754, "longitude": -43.188029, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001656", "name": "PRA\u00c7A JOS\u00c9 DE ALENCAR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.932673, "longitude": -43.177654, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001657", "name": "AV. MARACAN\u00c3, N\u00ba 160", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913204, "longitude": -43.227261, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001658", "name": "AV. MARACAN\u00c3, N\u00ba 196 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914047, "longitude": -43.227993, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001659", "name": "R. PROF. EURICO RABELO, 51 BILHETERIA 2 DO MARACAN\u00c3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914711, "longitude": -43.229761, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001660", "name": "R. PROF. EUR\u00cdCO RAB\u00caLO, 177 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912978, "longitude": -43.232722, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001661", "name": "AV. REI PEL\u00c9, 13 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9102784, "longitude": -43.23244921, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001662", "name": "AV. RADIAL OESTE, 6007", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910549, "longitude": -43.228401, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001663", "name": "AV. RADIAL OESTE, 2088", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910937, "longitude": -43.226156, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001664", "name": "RUA CONDE DE BONFIM N\u00ba 482 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.50.224.208/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.926931, "longitude": -43.235722, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001665", "name": "VIADUTO CRIST\u00d3V\u00c3O COLOMBO, 159", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.880774, "longitude": -43.289579, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001666", "name": "AV. DOM H\u00c9LDER C\u00c2MARA, 6444", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882782, "longitude": -43.292053, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001667", "name": "GALP\u00c3O DO ENGENH\u00c3O - R. JOS\u00c9 DOS REIS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894555, "longitude": -43.295494, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001668", "name": "R. DONA TERESA, 161", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.40/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893032, "longitude": -43.288075, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001669", "name": "AV. AMARO CAVALCANTI, 693", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.39/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897682, "longitude": -43.284035, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001670", "name": "R. DA ABOLI\u00c7\u00c3O, 058", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89004, "longitude": -43.29436, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001671", "name": "AV. TEIXEIRA DE CASTRO - BRT - SANTA LUZIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85522758, "longitude": -43.25209337, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001672", "name": "ESTRADA PADRE ROSER, 750", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.51/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841656, "longitude": -43.320068, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001673", "name": "AV. PADRE ROSE N. 430", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.57/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841467, "longitude": -43.317192, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001674", "name": "AV. BRASIL, 2385", "rtsp_url": "rtsp://admin:7LANMSTR@10.52.210.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893061, "longitude": -43.675072, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001675", "name": "R. PROFESSOR SOUZA MOREIRA X PRA\u00c7A JO\u00c3O WESLEI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910355, "longitude": -43.595242, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001676", "name": "ESTR. DO MENDANHA 142 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8696279, "longitude": -43.5544962, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001677", "name": "ESTR. DO MENDANHA 142 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86966767, "longitude": -43.55448323, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001678", "name": "EST. DO CABU\u00c7U, 747", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908756, "longitude": -43.550877, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001679", "name": "EST. DO CABU\u00c7U, 2219", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91266423, "longitude": -43.54424946, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001681", "name": "RUA CONDE DE BONFIM, 1037 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.247.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94007, "longitude": -43.249187, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001683", "name": "RUA CONDE DE BONFIM, 1339 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946315, "longitude": -43.255448, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001684", "name": "RUA CONDE BONFIM 1590 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946937, "longitude": -43.256866, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001685", "name": "R. MAL. PILSUDSKI, 94 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946085, "longitude": -43.258206, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001687", "name": "AV. \u00c9DISON PASSOS, 4200 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94808787, "longitude": -43.25942707, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001688", "name": "AV. \u00c9DISON PASSOS, 637 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94948, "longitude": -43.260452, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001689", "name": "AV. \u00c9DISON PASSOS, 742 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949137, "longitude": -43.261353, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001690", "name": "AV. \u00c9DISON PASSOS, 4200 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950155, "longitude": -43.262013, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001691", "name": "AV. \u00c9DISON PASSOS, 4200 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951439, "longitude": -43.261532, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001692", "name": "AV. \u00c9DISON PASSOS, 1237-1199 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.23/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951614, "longitude": -43.260078, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001693", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95131299, "longitude": -43.25870308, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001694", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950853, "longitude": -43.257698, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001695", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951593, "longitude": -43.25919, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001696", "name": "AV. RADIAL OESTE, 6007 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910649, "longitude": -43.228401, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001697", "name": "AV. RADIAL OESTE, 2088-2092 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.252.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911037, "longitude": -43.226156, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001698", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95294, "longitude": -43.261063, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001699", "name": "AV. \u00c9DISON PASSOS, 1980 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953747, "longitude": -43.262329, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001700", "name": "AV. \u00c9DISON PASSOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954586, "longitude": -43.264549, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001701", "name": "ESTR. VELHA DA TIJUCA, 1251 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955542, "longitude": -43.265244, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001702", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956146, "longitude": -43.265518, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001703", "name": "AV. \u00c9DISON PASSOS, 2799 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9569321, "longitude": -43.26768413, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001704", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957306, "longitude": -43.268509, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001705", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957254, "longitude": -43.267586, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001706", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.35/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957304, "longitude": -43.265045, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001710", "name": "T\u00daNEL NOEL ROSA - SA\u00cdDA VILA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91364966, "longitude": -43.2519458, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001711", "name": "T\u00daNEL NOEL ROSA - SA\u00cdDA VILA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91371616, "longitude": -43.25194227, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001714", "name": "AV. \u00c9DISON PASSOS, 97 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.247.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946111, "longitude": -43.258687, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001715", "name": "AV. \u00c9DISON PASSOS, 194-256 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.39/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946228, "longitude": -43.258804, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001716", "name": "AV. \u00c9DISON PASSOS, 346-398 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.40/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94731939, "longitude": -43.25925217, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001717", "name": "AV. \u00c9DISON PASSOS, 565-515 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.41/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.947475, "longitude": -43.259279, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001718", "name": "AV. \u00c9DISON PASSOS, 603- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.42/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94925764, "longitude": -43.26003008, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001719", "name": "AV. \u00c9DISON PASSOS, 667 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949477, "longitude": -43.260683, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001720", "name": "R. ARIPUA, 316 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8437861, "longitude": -43.4010439, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001721", "name": "AV. \u00c9DISON PASSOS, 800", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949345, "longitude": -43.261769, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001722", "name": "AV. \u00c9DISON PASSOS, 711 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949247, "longitude": -43.261025, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001723", "name": "AV. \u00c9DISON PASSOS, 934 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.46/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950587, "longitude": -43.2619, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001724", "name": "AV. \u00c9DISON PASSOS, 603- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.47/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949955, "longitude": -43.261717, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001725", "name": "AV. \u00c9DISON PASSOS, 1011 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.48/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951153, "longitude": -43.261803, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001727", "name": "AV. NAZAR\u00c9, 2319-2125 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8268803, "longitude": -43.400622, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001728", "name": "AV. \u00c9DISON PASSOS, 1271 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.49/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951528, "longitude": -43.260449, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001729", "name": "AV. \u00c9DISON PASSOS, 583 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.50/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951311, "longitude": -43.259854, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001730", "name": "AV. \u00c9DISON PASSOS, 1240-1410 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.51/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951255, "longitude": -43.259331, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001731", "name": "ALTO DA BOA VISTA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.52/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95136, "longitude": -43.259822, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001732", "name": "ALTO DA BOA VISTA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.53/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950746, "longitude": -43.257729, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001733", "name": "AV. \u00c9DISON PASSOS, 1240-1410 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951032, "longitude": -43.258427, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001734", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.55/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951172, "longitude": -43.258405, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001735", "name": "AV. \u00c9DISON PASSOS, 1596-1708 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.56/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951749, "longitude": -43.259494, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001736", "name": "AV. \u00c9DISON PASSOS, 1710-1874 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.57/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952617, "longitude": -43.260783, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001737", "name": "AV. \u00c9DISON PASSOS, 1875 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.58/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953212, "longitude": -43.261497, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001738", "name": "AV. \u00c9DISON PASSOS, 1919 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953563, "longitude": -43.261949, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001739", "name": "AV. \u00c9DISON PASSOS, 2029 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.60/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954388, "longitude": -43.262788, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001740", "name": "AV. \u00c9DISON PASSOS, 2261", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954463, "longitude": -43.264193, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001741", "name": "AV. \u00c9DISON PASSOS, 2272 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954949, "longitude": -43.264892, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001742", "name": "AV. \u00c9DISON PASSOS, 2395", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9554, "longitude": -43.265319, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001743", "name": "AV. \u00c9DISON PASSOS, 2477 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955851, "longitude": -43.264505, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001746", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.67/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956153, "longitude": -43.266385, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001747", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.68/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956529, "longitude": -43.267163, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001748", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.69/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956651, "longitude": -43.267671, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001749", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.70/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95704, "longitude": -43.268156, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001750", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.71/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957128, "longitude": -43.268289, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001751", "name": "ALTO DA BOA VISTA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95701, "longitude": -43.267601, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001753", "name": "AV. \u00c9DISON PASSOS, 3132 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956896, "longitude": -43.266799, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001754", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.74/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956703, "longitude": -43.26591, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001756", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957585, "longitude": -43.264546, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001757", "name": "AV. \u00c9DISON PASSOS, 3123", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.77/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95799102, "longitude": -43.2642709, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001758", "name": "AV. \u00c9DISON PASSOS, 3127 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957707, "longitude": -43.264287, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001760", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95839023, "longitude": -43.26501683, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001761", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.81/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958377, "longitude": -43.26524, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001762", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.82/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958189, "longitude": -43.265197, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001763", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.83/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957939, "longitude": -43.266824, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001765", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.85/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95806, "longitude": -43.266845, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001766", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.86/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958669, "longitude": -43.267636, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001767", "name": "AV. \u00c9DISON PASSOS, 4794 - FIXA", "rtsp_url": "rtsp://admin:admin@10.52.247.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958553, "longitude": -43.267638, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001768", "name": "AV. \u00c9DISON PASSOS, 4114 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95929148, "longitude": -43.26812473, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001769", "name": "AV. \u00c9DISON PASSOS, 4150 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.959186, "longitude": -43.26799, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001770", "name": "AV. \u00c9DISON PASSOS, 4200 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.959349, "longitude": -43.26842, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001771", "name": "AV. \u00c9DISON PASSOS, 4200 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95964727, "longitude": -43.26929764, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001772", "name": "AV. \u00c9DSON PASSOS, 4211 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.92/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95999363, "longitude": -43.26974274, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001773", "name": "AV. \u00c9DISON PASSOS, 4272 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96044798, "longitude": -43.27023367, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001774", "name": "AV. \u00c9DISON PASSOS, 4272", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.94/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96040846, "longitude": -43.27018003, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001775", "name": "ESTR. VELHA DA TIJUCA, 2400-2424 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96018739, "longitude": -43.27125237, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001776", "name": "AV. \u00c9DISON PASSOS, 4271 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.96/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9603921, "longitude": -43.27202794, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001777", "name": "ESTR. VELHA DA TIJUCA, 2424 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96034921, "longitude": -43.27170348, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001778", "name": "ESTR. VELHA DA TIJUCA, 4446 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96033003, "longitude": -43.27205116, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001780", "name": "AV. \u00c9DISON PASSOS, 4490 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96047842, "longitude": -43.27282894, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001781", "name": "PRA\u00c7A AFONSO VISEU, 27 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96099419, "longitude": -43.2731082, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001782", "name": "PRA\u00c7A AFONSO VISEU, 27 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96097443, "longitude": -43.272958, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001783", "name": "PRA\u00c7A AFONSO VISEU - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96140364, "longitude": -43.27338554, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001784", "name": "R. BOA VISTA, 42 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96200947, "longitude": -43.2743245, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001785", "name": "R. BOA VISTA - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.210.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96211984, "longitude": -43.27433736, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001786", "name": "R. BOA VISTA, 65 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962435, "longitude": -43.274715, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001788", "name": "R. BOA VISTA, 111-71 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96314255, "longitude": -43.2754886, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001789", "name": "R. BOA VISTA, 111-71 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963734, "longitude": -43.275644, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001790", "name": "R. FERREIRA DE ALMEIDA, 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964243, "longitude": -43.276656, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001799", "name": "ESTR. DAS FURNAS, 572 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968607, "longitude": -43.27963, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001800", "name": "ESTR. DAS FURNAS, 574 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968837, "longitude": -43.279005, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001801", "name": "ESTR. DAS FURNAS, 361 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.967892, "longitude": -43.279073, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001803", "name": "ESTR. DAS FURNAS, 572 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968776, "longitude": -43.278942, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001809", "name": "ESTR. DAS FURNAS, 775-681 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.17/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970419, "longitude": -43.281203, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001810", "name": "RUA ANAEL ROSA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.20/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971743, "longitude": -43.283226, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001811", "name": "ESTR. DAS FURNAS, 1042 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.11/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97178913, "longitude": -43.28336276, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001815", "name": "R. BOA VISTA, 1302-1456 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.974012, "longitude": -43.285632, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001816", "name": "R. BOA VISTA, 1302-1456 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97422, "longitude": -43.285824, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001817", "name": "ESTR. DAS FURNAS, 1440 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.974418, "longitude": -43.286016, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001819", "name": "ESTR. DAS FURNAS, 0 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977928, "longitude": -43.291448, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001821", "name": "ESTR. DAS FURNAS, 1850 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.209.46/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977092, "longitude": -43.290909, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001825", "name": "ESTR. DAS FURNAS, 915-803 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970872, "longitude": -43.282745, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001826", "name": "RUA FRANCISCO ROSALINO 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97255, "longitude": -43.284019, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001832", "name": "ESTR. CAP. CAMPOS, 29 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979525, "longitude": -43.292667, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001835", "name": "ESTR. DAS FURNAS, 168-260 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.51/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98005, "longitude": -43.293176, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001838", "name": "ESTR. DAS FURNAS, 2258-2408 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980298, "longitude": -43.292961, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001841", "name": "ESTR. DAS FURNAS, 2922 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.57/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98130648, "longitude": -43.29449188, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001843", "name": "ESTR. DAS FURNAS, 3000", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981574, "longitude": -43.294955, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001844", "name": "ESTR. DAS FURNAS, 3001 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982523, "longitude": -43.295625, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001845", "name": "ESTR. DAS FURNAS, 3006 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.60/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982214, "longitude": -43.295484, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001852", "name": "ESTR. DAS FURNAS, 3800 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98515021, "longitude": -43.30037482, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001853", "name": "ESTR. DAS FURNAS, 3805 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.209.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981653, "longitude": -43.300375, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001857", "name": "ESTR. DAS FURNAS, 3997-4055 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.71/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98243443, "longitude": -43.29986229, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001858", "name": "ESTR. DAS FURNAS, 3929-3995 - ITANHANG\u00c1", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98230635, "longitude": -43.29988018, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001860", "name": "ESTR. DAS FURNAS, 3950 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984217, "longitude": -43.300005, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001861", "name": "ESTR. DAS FURNAS, 395 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984728, "longitude": -43.30029, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001862", "name": "ESTR. DAS FURNAS, 4087 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98474297, "longitude": -43.30035618, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001865", "name": "ESTR. DAS FURNAS, 4234-4438 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985661, "longitude": -43.300264, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001866", "name": "ESTR. DAS FURNAS, 4234-4438 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986022, "longitude": -43.300499, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001867", "name": "ESTR. DAS FURNAS, 3700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986324, "longitude": -43.301322, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001868", "name": "AV. \u00c9DISON PASSOS, 2799-2791 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956902, "longitude": -43.267726, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001870", "name": "ESTR. DAS FURNAS, 3042-3044 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98263297, "longitude": -43.29571018, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001872", "name": "ESTR. DAS FURNAS, 3046 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.74/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983721, "longitude": -43.295952, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001873", "name": "ESTR. DAS FURNAS, 3050 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984007, "longitude": -43.296605, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001874", "name": "ESTR. DAS FURNAS, 3052 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984096, "longitude": -43.297036, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001875", "name": "AV. \u00c9DISON PASSOS, 1175 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951577, "longitude": -43.260438, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001876", "name": "AV. \u00c9DISON PASSOS, 4271-4211 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.119/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96089212, "longitude": -43.27313529, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001878", "name": "R. DOM ROSALVO COSTA R\u00caGO, 90 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.210/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9875407, "longitude": -43.3020504, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001880", "name": "R. AROEIRAS, 134 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838045, "longitude": -43.3997706, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001881", "name": "RUA CAPIT\u00c3O M\u00c1RIO BARBEDO, 460 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8349801, "longitude": -43.3996392, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001882", "name": "AV. NAZAR\u00c9, 2330 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8259421, "longitude": -43.4013715, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001883", "name": "R. JOS\u00c9 DO PATROC\u00cdNIO, 320-390", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919014, "longitude": -43.262755, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001884", "name": "R. JOS\u00c9 DO PATROC\u00cdNIO, 318 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918881, "longitude": -43.262847, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001885", "name": "PRACA JARDIM DO M\u00c9IER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90015, "longitude": -43.278465, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001886", "name": "R. BAR\u00c3O DE IGUATEMI, 370 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913473, "longitude": -43.215065, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001887", "name": "R. BAR\u00c3O DE IGUATEMI, 364 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91354, "longitude": -43.215151, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001888", "name": "R. VICENTE LIC\u00cdNIO, 140", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914344, "longitude": -43.216228, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001889", "name": "R. SOL\u00c2NEA, 299 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.177/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881948, "longitude": -43.556315, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001890", "name": "ESTR. DO MENDANHA, 1105 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.178/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.880277, "longitude": -43.555245, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001891", "name": "ESTR. DO MENDANHA, 1149 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.179/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879001, "longitude": -43.554758, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001892", "name": "ESTR. DO MENDANHA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.878112, "longitude": -43.554586, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001894", "name": "ESTRADA DO PEDREGOSO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8754749, "longitude": -43.5548017, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001895", "name": "ESTR. DO MENDANHA, 1532-1666 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.183/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8750096, "longitude": -43.5544452, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001896", "name": "ESTR. DO MENDANHA, 1966-1986 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.184/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8744188, "longitude": -43.5537439, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001897", "name": "ESTR. DO MENDANHA, 2066 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.185/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87345, "longitude": -43.553065, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001898", "name": "ESTR. DO MENDANHA, 2132 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.871624, "longitude": -43.554288, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001899", "name": "ESTR. DO MENDANHA, 2488 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.187/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.869131, "longitude": -43.553993, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001900", "name": "ESTR. DO MENDANHA, 2696 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.867893, "longitude": -43.553756, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001901", "name": "ESTR. DO MENDANHA, 2123 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.189/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.872356, "longitude": -43.55349, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001902", "name": "ESTR. DO MENDANHA, 3050 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.190/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.866407, "longitude": -43.551514, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001903", "name": "ESTR. DO MENDANHA, 3376 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.864806, "longitude": -43.549214, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001904", "name": "ESTR. DO MENDANHA, 3500 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.863843, "longitude": -43.547585, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001905", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES , 1674 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.194/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885709, "longitude": -43.569153, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001906", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES , 1762 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.884315, "longitude": -43.569696, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001907", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES , 1776 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.196/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.883704, "longitude": -43.570395, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001908", "name": "ESTR. RIO S\u00c3O PAULO, 1912 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882571, "longitude": -43.571383, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001909", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES, 1992 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.198/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882089, "longitude": -43.572254, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001910", "name": "ESTRADA DA BARRA DA TIJUCA, 79 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.211/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987156, "longitude": -43.302019, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001913", "name": "R. CASTRO ALVES, 1", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.247/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.900199, "longitude": -43.275442, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001914", "name": "ESTRADA RIO S\u00c3O PAULO, 1115 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.889992, "longitude": -43.566186, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001915", "name": "ESTRADA RIO S\u00c3O PAULO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890614, "longitude": -43.565622, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001916", "name": "ESTRADA RIO S\u00c3O PAULO 883 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891212, "longitude": -43.564705, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001917", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES, 745 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.202/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891957, "longitude": -43.563626, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001918", "name": "ESTR. DO MENDANHA, 4017 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.862775, "longitude": -43.544143, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001919", "name": "ESTR. DO MENDANHA, 3600 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.862548, "longitude": -43.543053, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001920", "name": "ESTR. DO MENDANHA, 4517 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.205/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8625515, "longitude": -43.5420935, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001921", "name": "ESTR. DO MENDANHA, 4240 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8618516, "longitude": -43.5414545, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001924", "name": "R. DR. RODRIGUES DE SANTANA, 3A", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895785, "longitude": -43.2374382, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001925", "name": "R. S\u00c3O LUIZ GONZAGA, 1667", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8979917, "longitude": -43.236923, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001926", "name": "R. DUVIVIER, 107", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96408239, "longitude": -43.17878411, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001930", "name": "RUA MIGUEL LEMOS X RUA BARATA RIBEIRO - LPR - FIXA", "rtsp_url": "rtsp://admin:cet@10.52.20.208/", "update_interval": 120, "latitude": -22.97752295, "longitude": -43.19287925, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001931", "name": "ESTR. DAS FURNAS, 3063-3055", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98296897, "longitude": -43.29826398, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001937", "name": "R. DR. RODRIGUES DE SANTANA, 69-15 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8962144, "longitude": -43.2386555, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001938", "name": "R. GEN. GUSTAVO CORDEIRO DE FARIAS, 571-455 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8971883, "longitude": -43.238429, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001939", "name": "R. GEN. GUSTAVO CORDEIRO DE FARIAS, 571- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897392, "longitude": -43.2381424, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001941", "name": "R. PROF. EURICO RABELO, 51 BILHETERIA 2 DO MARACAN\u00c3", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914813, "longitude": -43.229594, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001942", "name": "BLOCO L - R. MATA MACHADO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9125257, "longitude": -43.2259951, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001944", "name": "ESTRADA RIO S\u00c3O PAULO 1456 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.208/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8880079, "longitude": -43.5680954, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001962", "name": "MONUMENTO MARIELLE FRANCO (LADO) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90632793, "longitude": -43.17619575, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001963", "name": "MONUMENTO MARIELLE FRANCO (FRENTE) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9061647, "longitude": -43.1767343, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001964", "name": "RUA HIL\u00c1RIO DE GOUV\u00caIA 493", "rtsp_url": "rtsp://admin:7lanmstr@10.52.39.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968524, "longitude": -43.1836488, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001965", "name": "AV. NOSSA SRA. DE COPACABANA X RUA SIQUEIRA CAMPOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.39.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9690314, "longitude": -43.1845505, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001966", "name": "RUA DO PASSEIO, 70", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914468, "longitude": -43.17816, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001967", "name": "AV. AUGUSTO SEVERO N 1755", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9146656, "longitude": -43.1762009, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001968", "name": "AVENIDA AUGUSTO SEVERO, 272C", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9171035, "longitude": -43.17633739, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001970", "name": "ESTR. DO PONTAL, 1100 - RECREIO DOS BANDEIRANTES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.03338719, "longitude": -43.49205107, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001971", "name": "ESTR. VER. ALCEU DE CARVALHO, 126", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.220/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.032262, "longitude": -43.492225, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001972", "name": "R. S\u00c3O CLEMENTE, 466", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95274741, "longitude": -43.19648248, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001973", "name": "ESTR. VER. ALCEU DE CARVALHO, 226-564", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.029094, "longitude": -43.492394, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001974", "name": "RUA MINISTRO TAVARES DE LIRA, 17-1", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931026, "longitude": -43.179298, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001975", "name": "ESTR. VER. ALCEU DE CARVALHO, 902 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.222/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02558292, "longitude": -43.4925374, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001976", "name": "AV. TEOT\u00d4NIO VIL\u00c9LA, 842-930 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02335157, "longitude": -43.4926686, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001977", "name": "ESTR. VER. ALCEU DE CARVALHO, 555 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.209.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01833375, "longitude": -43.49286515, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001978", "name": "ESTR. VER. ALCEU DE CARVALHO , S/N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0163343, "longitude": -43.4929727, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001979", "name": "ESTR. VER. ALCEU DE CARVALHO, S/N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012254, "longitude": -43.4930573, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001980", "name": "ESTR. VER. ALCEU DE CARVALHO, 376 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0100552, "longitude": -43.4931783, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001981", "name": "ESTR. VER. ALCEU DE CARVALHO - 2865 - FIXA", "rtsp_url": "rtsp://admin:7LANMSTR@10.52.209.228/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00687639, "longitude": -43.49341895, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001982", "name": "ESTR. VER. ALCEU DE CARVALHO - 2879 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00406296, "longitude": -43.49352683, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001984", "name": "ESTR. VER. ALCEU DE CARVALHO, S/N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.231/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99937841, "longitude": -43.49383073, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001985", "name": "ESTR. VER. ALCEL DE CARVALHO, 2-222 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9974885, "longitude": -43.4947743, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001986", "name": "ESTR. VER. ALCEU DE CARVALHO, 51 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.233/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9958392, "longitude": -43.495055, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001988", "name": "ESTR. DO RIO MORTO, 410 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9889983, "longitude": -43.4919595, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001989", "name": "ESTR. DO RIO MORTO, 3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.236/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986815, "longitude": -43.489588, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001990", "name": "ESTR. DOS BANDEIRANTES, 22289 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.237/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987349, "longitude": -43.48883, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001991", "name": "ESTR. DOS BANDEIRANTES, 22310 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988026, "longitude": -43.487614, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001992", "name": "ESTR. DOS BANDEIRANTES, 22331 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988061, "longitude": -43.485957, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001993", "name": "R. URUGUAI, 453 - ANDARA\u00cd", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.53/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933642, "longitude": -43.240203, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001994", "name": "RUA ITACURU\u00c7\u00c1, 99 - TIJUCA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933836, "longitude": -43.238285, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001995", "name": "PRA\u00c7A GABRIEL SOARES, 409", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931481, "longitude": -43.23443, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001996", "name": "R. COSTA BASTOS X RIACHUELO 36", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9145919, "longitude": -43.189465, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001997", "name": "R. DOS INVALIDOS, 224", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9143509, "longitude": -43.1840155, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001998", "name": "R. HENRY FORD, 301", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.138/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9289714, "longitude": -43.2339482, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "001999", "name": "AV. PASTOR MARTIN LUTHER KING J\u00daNIOR, 11009 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8260986, "longitude": -43.3488001, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002000", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012314, "longitude": -43.458156, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002001", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012462, "longitude": -43.458615, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002002", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.4/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01242, "longitude": -43.45847, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002003", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012393, "longitude": -43.458908, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002004", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012114, "longitude": -43.45821, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002005", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012223, "longitude": -43.45876, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002015", "name": "SANTA LUZIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.43.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.855054, "longitude": -43.252503, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002016", "name": "SANTA LUZIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.43.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854711, "longitude": -43.253977, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002017", "name": "SANTA LUZIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.43.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854904, "longitude": -43.253251, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002018", "name": "MAR\u00c9 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.44.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8471, "longitude": -43.243876, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002019", "name": "MAR\u00c9 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.44.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.847137, "longitude": -43.244025, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002020", "name": "MAR\u00c9 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.44.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.846966, "longitude": -43.243391, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002021", "name": "PIRA OL\u00cdMPICA 2", "rtsp_url": "rtsp://10.52.15.4/2021-VIDEO", "update_interval": 120, "latitude": -22.90037933, "longitude": -43.17676935, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002022", "name": "CARDOSO DE MORAES - VI\u00daVA GARCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.42.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85747, "longitude": -43.258072, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002023", "name": "CARDOSO DE MORAES - VI\u00daVA GARCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.42.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.857512, "longitude": -43.25779, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002024", "name": "CARDOSO DE MORAES - VI\u00daVA GARCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.42.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85744, "longitude": -43.258357, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002025", "name": "PENHA I PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841316, "longitude": -43.276501, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002026", "name": "PENHA I PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84142691, "longitude": -43.27735112, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002027", "name": "PENHA I PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841666, "longitude": -43.277165, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002028", "name": "PENHA I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841913, "longitude": -43.277341, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002029", "name": "PENHA I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841229, "longitude": -43.276407, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002030", "name": "PENHA I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842146, "longitude": -43.277616, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002031", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84202, "longitude": -43.277129, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002032", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841944, "longitude": -43.277021, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002033", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842029, "longitude": -43.276621, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002034", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842129, "longitude": -43.276621, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002035", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842229, "longitude": -43.276621, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002036", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842329, "longitude": -43.276621, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002037", "name": "PASTOR JOS\u00c9 SANTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.37.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839275, "longitude": -43.283045, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002038", "name": "PASTOR JOS\u00c9 SANTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.37.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838975, "longitude": -43.283571, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002039", "name": "PASTOR JOS\u00c9 SANTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.37.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839119, "longitude": -43.283395, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002040", "name": "GUAPORE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.36.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83772, "longitude": -43.289513, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002041", "name": "GUAPORE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.36.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.837739, "longitude": -43.289829, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002042", "name": "GUAPORE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.36.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.837683, "longitude": -43.290059, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002043", "name": "PRACA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.35.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838994, "longitude": -43.295294, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002044", "name": "PRACA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.35.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838843, "longitude": -43.295112, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002045", "name": "PRACA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.35.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838619, "longitude": -43.294788, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002046", "name": "PEDRO TAQUES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.34.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841317, "longitude": -43.298487, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002047", "name": "PEDRO TAQUES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.34.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841507, "longitude": -43.298748, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002048", "name": "PEDRO TAQUES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.34.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841654, "longitude": -43.299033, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002049", "name": "VILA KOSMOS - NOSSA SENHORA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.33.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.849765, "longitude": -43.307977, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002050", "name": "VILA KOSMOS - NOSSA SENHORA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.33.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.849503, "longitude": -43.307684, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002051", "name": "VILA KOSMOS - NOSSA SENHORA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.33.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.850009, "longitude": -43.308189, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002052", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85213453, "longitude": -43.3122167, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002053", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852457, "longitude": -43.312151, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002054", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852257, "longitude": -43.312151, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002055", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852357, "longitude": -43.312151, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002056", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852557, "longitude": -43.312151, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002057", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852657, "longitude": -43.312151, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002058", "name": "MARAMBAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.31.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8531621, "longitude": -43.32054273, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002059", "name": "MARAMBAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.31.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85304655, "longitude": -43.3202815, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002060", "name": "MARAMBAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.31.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85287051, "longitude": -43.32007242, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002061", "name": "VAZ LOBO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.30.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85646674, "longitude": -43.32815793, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002062", "name": "VAZ LOBO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.30.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85658616, "longitude": -43.32841881, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002063", "name": "VAZ LOBO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.30.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85645305, "longitude": -43.3278757, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002064", "name": "VILA QUEIROZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.29.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86139071, "longitude": -43.3303634, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002065", "name": "VILA QUEIROZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.29.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86119299, "longitude": -43.33019979, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002066", "name": "VILA QUEIROZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.29.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86152911, "longitude": -43.33050019, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002067", "name": "SANTA EFIGENIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.15.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93662697, "longitude": -43.37175191, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002068", "name": "SANTA EFIGENIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.15.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93639206, "longitude": -43.37167409, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002069", "name": "SANTA EFIGENIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.15.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93695341, "longitude": -43.37187016, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002073", "name": "DIVINA PROVIDENCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.14.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94043702, "longitude": -43.37245835, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002074", "name": "DIVINA PROVIDENCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.14.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94099835, "longitude": -43.37257718, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002075", "name": "DIVINA PROVIDENCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.14.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9406659, "longitude": -43.37255207, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002076", "name": "MERCK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.16.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93540177, "longitude": -43.37173581, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002077", "name": "MERCK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.16.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93524096, "longitude": -43.37186184, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002078", "name": "MERCK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.16.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93499704, "longitude": -43.37201499, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002082", "name": "TANQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.20.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91509607, "longitude": -43.36115194, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002083", "name": "TANQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.20.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91497304, "longitude": -43.36101526, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002084", "name": "TANQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.20.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91515076, "longitude": -43.36103633, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002088", "name": "MADUREIRA-MANACEIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.26.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87681907, "longitude": -43.33569083, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002089", "name": "MADUREIRA-MANACEIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.26.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87677851, "longitude": -43.33586691, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002090", "name": "MADUREIRA-MANACEIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.26.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8766384, "longitude": -43.33570854, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002094", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97330863, "longitude": -43.38234783, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002095", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97323663, "longitude": -43.38204742, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002096", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97317984, "longitude": -43.38232637, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002097", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97329096, "longitude": -43.38324904, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002098", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97322551, "longitude": -43.3835092, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002099", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973165, "longitude": -43.38330535, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002100", "name": "PEDRO CORREIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.8.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96796082, "longitude": -43.39065165, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002101", "name": "PEDRO CORREIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.8.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96739961, "longitude": -43.39052093, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002102", "name": "PEDRO CORREIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.8.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96773789, "longitude": -43.3906047, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002103", "name": "REDE SARAH - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.6.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97340355, "longitude": -43.37663464, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002104", "name": "REDE SARAH - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.6.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97337407, "longitude": -43.37634622, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002105", "name": "REDE SARAH - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.6.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97338726, "longitude": -43.37693089, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002106", "name": "CENTRO METROPOLITANO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.5.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97346954, "longitude": -43.36564073, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002107", "name": "CENTRO METROPOLITANO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.5.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97341395, "longitude": -43.36530881, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002109", "name": "CURICICA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.9.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95983347, "longitude": -43.38837513, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002110", "name": "CURICICA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.9.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95992509, "longitude": -43.38871839, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002111", "name": "CURICICA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.9.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95996552, "longitude": -43.38896455, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002112", "name": "PRACA DO BANDOLIM - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.10.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95873944, "longitude": -43.3837118, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002113", "name": "PRACA DO BANDOLIM - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.10.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95860952, "longitude": -43.3833512, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002114", "name": "PRACA DO BANDOLIM - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.10.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95859639, "longitude": -43.38309386, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002115", "name": "ARROIO PAVUNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.11.02/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95529134, "longitude": -43.37732539, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002116", "name": "ARROIO PAVUNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.11.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95512988, "longitude": -43.37708085, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002117", "name": "ARROIO PAVUNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.11.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95551506, "longitude": -43.37757996, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002118", "name": "VILA SAPE - IV CENTENARIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.12.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95233839, "longitude": -43.37461184, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002119", "name": "VILA SAPE - IV CENTENARIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.12.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95198238, "longitude": -43.37435957, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002120", "name": "VILA SAPE - IV CENTENARIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.12.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95249963, "longitude": -43.3747636, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002121", "name": "RECANTO DAS PALMEIRAS - JARDIM SAO LUIZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.13.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94821246, "longitude": -43.37238414, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002122", "name": "RECANTO DAS PALMEIRAS - JARDIM SAO LUIZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.13.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94803135, "longitude": -43.37229189, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002123", "name": "RECANTO DAS PALMEIRAS - JARDIM SAO LUIZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.13.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94859265, "longitude": -43.3724939, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002124", "name": "ANDRE ROCHA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.17.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92950909, "longitude": -43.37340305, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002125", "name": "ANDRE ROCHA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.17.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92974, "longitude": -43.373328, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002126", "name": "ANDRE ROCHA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.17.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.929251, "longitude": -43.373532, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002127", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9236394, "longitude": -43.37404468, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002128", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92346647, "longitude": -43.3739508, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002129", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92356956, "longitude": -43.37383979, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002130", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92480474, "longitude": -43.37392562, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002131", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92497272, "longitude": -43.37379687, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002132", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92479485, "longitude": -43.37371506, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002133", "name": "ARACY CABRAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.19.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92020054, "longitude": -43.36821121, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002134", "name": "ARACY CABRAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.19.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91999796, "longitude": -43.36798054, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002135", "name": "ARACY CABRAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.19.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92023018, "longitude": -43.36834666, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002136", "name": "IPASE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.21.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90449587, "longitude": -43.35689819, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002137", "name": "IPASE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.21.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9050023, "longitude": -43.35715962, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002138", "name": "IPASE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.21.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9047268, "longitude": -43.35704472, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002139", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89816719, "longitude": -43.35272047, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002140", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89833317, "longitude": -43.35275072, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002141", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89771793, "longitude": -43.35224021, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002142", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89719163, "longitude": -43.35188615, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002143", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89728552, "longitude": -43.35188078, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002144", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89725586, "longitude": -43.35175471, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002145", "name": "CAPITAO MENEZES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.23.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89268233, "longitude": -43.34844923, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002146", "name": "CAPITAO MENEZES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.23.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89319981, "longitude": -43.34875819, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002147", "name": "CAPITAO MENEZES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.23.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89295582, "longitude": -43.34859234, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002148", "name": "PINTO TELES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.24.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88820104, "longitude": -43.34575175, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002149", "name": "PINTO TELES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.24.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88872955, "longitude": -43.34608448, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002150", "name": "PINTO TELES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.24.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88846097, "longitude": -43.34597015, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002151", "name": "CAMPINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.25.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88249078, "longitude": -43.34188378, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002152", "name": "CAMPINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.25.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8819292, "longitude": -43.3417911, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002153", "name": "CAMPINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.25.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88195638, "longitude": -43.34193057, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002156", "name": "IBIAPINA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.40.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84238043, "longitude": -43.27282892, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002157", "name": "IBIAPINA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.40.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8423759, "longitude": -43.27246268, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002158", "name": "IBIAPINA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.40.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84256548, "longitude": -43.27224424, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002159", "name": "OLARIA - CACIQUE DE RAMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.41.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84880418, "longitude": -43.26525872, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002160", "name": "OLARIA - CACIQUE DE RAMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.41.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84841593, "longitude": -43.26560581, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002161", "name": "OLARIA - CACIQUE DE RAMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.41.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84861779, "longitude": -43.2654647, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002162", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83982343, "longitude": -43.23911415, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002163", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83972949, "longitude": -43.2392563, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002164", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83950701, "longitude": -43.23942259, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002165", "name": "VIA PARQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.4.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98427211, "longitude": -43.36567944, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002166", "name": "VIA PARQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.4.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98367355, "longitude": -43.36566043, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002167", "name": "VIA PARQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.4.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98397341, "longitude": -43.36564722, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002168", "name": "AEROPORTO DE JACAREPAGUA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.3.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98934218, "longitude": -43.36579346, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002169", "name": "AEROPORTO DE JACAREPAGUA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.3.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98872603, "longitude": -43.36579347, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002170", "name": "AEROPORTO DE JACAREPAGUA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.3.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9890178, "longitude": -43.36577965, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002171", "name": "LOURENCO JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.2.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99500177, "longitude": -43.3658433, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002172", "name": "LOURENCO JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.2.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99465729, "longitude": -43.36584562, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002173", "name": "LOURENCO JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.2.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99431524, "longitude": -43.36584331, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002174", "name": "GALE\u00c3O TOM JOBIM 1 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.47.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81146072, "longitude": -43.25074992, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002175", "name": "GALE\u00c3O TOM JOBIM 1 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.47.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81079571, "longitude": -43.25201378, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002176", "name": "GALE\u00c3O TOM JOBIM 1 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.47.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81125714, "longitude": -43.2514816, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002177", "name": "GALE\u00c3O TOM JOBIM 2 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.46.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81462743, "longitude": -43.24586528, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002178", "name": "GALE\u00c3O TOM JOBIM 2 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.46.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81445227, "longitude": -43.24640981, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002179", "name": "GALE\u00c3O TOM JOBIM 2 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.46.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81396243, "longitude": -43.24685587, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002181", "name": "PARQUE OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.7.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97325042, "longitude": -43.39349294, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002182", "name": "PARQUE OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.7.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97325593, "longitude": -43.39317208, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002183", "name": "PARQUE OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.7.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97325592, "longitude": -43.39378408, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002184", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97228, "longitude": -43.40096, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002185", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9721, "longitude": -43.40096, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002186", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97187, "longitude": -43.40096, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002187", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97167, "longitude": -43.40093, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002188", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97174, "longitude": -43.4006, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002189", "name": "CESAR\u00c3O II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.38.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93338089, "longitude": -43.66169345, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002190", "name": "CESAR\u00c3O II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.38.03/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933539, "longitude": -43.662207, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002191", "name": "CESAR\u00c3O II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.38.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933434, "longitude": -43.661933, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002192", "name": "CESAR\u00c3O III - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.39.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931727, "longitude": -43.657266, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002193", "name": "CESAR\u00c3O III - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.39.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93162, "longitude": -43.656978, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002194", "name": "CESAR\u00c3O III - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.39.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931866, "longitude": -43.657472, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002195", "name": "VILA PACI\u00caNCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.40.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92838, "longitude": -43.653787, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002196", "name": "VILA PACI\u00caNCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.40.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.928256, "longitude": -43.653555, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002197", "name": "VILA PACI\u00caNCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.40.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.928573, "longitude": -43.654012, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002198", "name": "TR\u00caS PONTES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.41.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925685, "longitude": -43.650038, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002199", "name": "TR\u00caS PONTES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.41.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925432, "longitude": -43.649952, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002200", "name": "TR\u00caS PONTES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.41.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925227, "longitude": -43.649772, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002201", "name": "CESARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.42.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920447, "longitude": -43.643516, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002202", "name": "CESARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.42.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920366, "longitude": -43.643231, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002203", "name": "CESARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.42.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92063, "longitude": -43.643801, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002204", "name": "31 DE OUTUBRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.43.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918129, "longitude": -43.638782, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002205", "name": "31 DE OUTUBRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.43.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918411, "longitude": -43.639257, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002206", "name": "31 DE OUTUBRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.43.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918224, "longitude": -43.639028, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002207", "name": "SANTA EUG\u00caNIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.44.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916755, "longitude": -43.63245, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002208", "name": "SANTA EUG\u00caNIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.44.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916878, "longitude": -43.633078, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002209", "name": "SANTA EUG\u00caNIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.44.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916796, "longitude": -43.632772, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002210", "name": "JULIA MIGUEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.45.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915645, "longitude": -43.627563, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002211", "name": "JULIA MIGUEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.45.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915786, "longitude": -43.628286, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002212", "name": "JULIA MIGUEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.45.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915622, "longitude": -43.627952, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002213", "name": "PARQUE S\u00c3O PAULO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.46.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916265, "longitude": -43.62236, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002214", "name": "PARQUE S\u00c3O PAULO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.46.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916332, "longitude": -43.622011, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002215", "name": "PARQUE S\u00c3O PAULO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.46.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916227, "longitude": -43.622696, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002216", "name": "ICURANA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.48.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915123, "longitude": -43.605826, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002217", "name": "ICURANA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.48.03/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915082, "longitude": -43.605526, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002218", "name": "ICURANA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.48.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915293, "longitude": -43.606135, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002219", "name": "VILAR CARIOCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.49.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914197, "longitude": -43.601278, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002220", "name": "VILAR CARIOCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.49.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914219, "longitude": -43.600925, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002221", "name": "VILAR CARIOCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.49.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914219, "longitude": -43.601666, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002222", "name": "INHOA\u00cdBA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.50.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913315, "longitude": -43.595605, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002223", "name": "INHOA\u00cdBA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.50.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913215, "longitude": -43.595354, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002224", "name": "INHOA\u00cdBA - BRT - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.151.50.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913497, "longitude": -43.595962, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002225", "name": "GOLFE OLIMP\u00cdCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.7.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00002808, "longitude": -43.41219849, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002226", "name": "GOLFE OLIMP\u00cdCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.7.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00005924, "longitude": -43.41190637, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002227", "name": "GOLFE OLIMP\u00cdCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.7.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00002324, "longitude": -43.41249706, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002228", "name": "ANA GONZAGA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.51.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911277, "longitude": -43.589421, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002229", "name": "ANA GONZAGA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.51.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911436, "longitude": -43.590106, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002230", "name": "ANA GONZAGA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.51.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91131246, "longitude": -43.58971976, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002231", "name": "S\u00c3O JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.52.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91078418, "longitude": -43.58386923, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002232", "name": "S\u00c3O JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.52.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91097794, "longitude": -43.58449669, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002233", "name": "S\u00c3O JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.52.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91085092, "longitude": -43.58416815, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002234", "name": "PINA RANGEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.53.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90750444, "longitude": -43.57576085, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002235", "name": "PINA RANGEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.53.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90749032, "longitude": -43.57544603, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002236", "name": "PINA RANGEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.53.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90766646, "longitude": -43.57611152, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002237", "name": "PARQUE ESPERAN\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.54.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90704999, "longitude": -43.57126295, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002238", "name": "PARQUE ESPERAN\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.54.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90682098, "longitude": -43.57206154, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002239", "name": "PARQUE ESPERAN\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.54.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90690245, "longitude": -43.57163307, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002240", "name": "C\u00c2NDIDO MAGALH\u00c3ES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.55.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907631, "longitude": -43.56397519, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002241", "name": "C\u00c2NDIDO MAGALH\u00c3ES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.55.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90769338, "longitude": -43.56403486, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002242", "name": "C\u00c2NDIDO MAGALH\u00c3ES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.55.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9077082, "longitude": -43.564232, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002243", "name": "PREFEITO ALIM PEDRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.57.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90370172, "longitude": -43.56661271, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002244", "name": "PREFEITO ALIM PEDRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.57.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90367083, "longitude": -43.5663646, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002245", "name": "PREFEITO ALIM PEDRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.57.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90363623, "longitude": -43.56610844, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002249", "name": "GAST\u00c3O RANGEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.34.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92777928, "longitude": -43.67731911, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002250", "name": "GAST\u00c3O RANGEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.34.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.927563, "longitude": -43.677554, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002253", "name": "PARQUE DAS ROSAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.102.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00001993, "longitude": -43.35246438, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002254", "name": "PARQUE DAS ROSAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.102.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000094, "longitude": -43.352628, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002255", "name": "PARQUE DAS ROSAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.102.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000125, "longitude": -43.352172, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002256", "name": "CESAR\u00c3O I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.37.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934581, "longitude": -43.665326, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002257", "name": "CESAR\u00c3O I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.37.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934437, "longitude": -43.665154, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002258", "name": "CESAR\u00c3O I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.37.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934843, "longitude": -43.665477, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002259", "name": "COSMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.47.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915786, "longitude": -43.615699, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002260", "name": "COSMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.47.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915669, "longitude": -43.616059, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002261", "name": "COSMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.47.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915575, "longitude": -43.616402, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002262", "name": "RECANTO DAS GAR\u00c7AS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.20.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.021024, "longitude": -43.496661, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002263", "name": "RECANTO DAS GAR\u00c7AS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.20.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.021028, "longitude": -43.496898, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002264", "name": "RECANTO DAS GAR\u00c7AS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.20.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.021074, "longitude": -43.49627, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002265", "name": "DOM BOSCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.22.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018348, "longitude": -43.50867, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002266", "name": "DOM BOSCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.22.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018183, "longitude": -43.50929, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002267", "name": "DOM BOSCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.22.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018242, "longitude": -43.508985, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002274", "name": "TERMINAL CAMPO GRANDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.56.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90169173, "longitude": -43.55449447, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002275", "name": "TERMINAL CAMPO GRANDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.56.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90179056, "longitude": -43.55463126, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002276", "name": "TERMINAL CAMPO GRANDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.56.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90176338, "longitude": -43.55502286, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002277", "name": "NOVA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.16.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01573476, "longitude": -43.47177814, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002278", "name": "NOVA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.16.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01556316, "longitude": -43.4711079, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002279", "name": "NOVA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.16.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01560567, "longitude": -43.47145136, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002280", "name": "VENDAS DE VARANDA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.30.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95087538, "longitude": -43.65080841, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002281", "name": "VENDAS DE VARANDA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.30.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95112556, "longitude": -43.65057787, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002282", "name": "VENDAS DE VARANDA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.30.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95072935, "longitude": -43.65096291, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002283", "name": "CURRAL FALSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.32.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93654645, "longitude": -43.66693949, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002284", "name": "CURRAL FALSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.32.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93630431, "longitude": -43.66690327, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002289", "name": "TERMINAL JD. OCE\u00c2NICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006735, "longitude": -43.31183425, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002290", "name": "TERMINAL JD. OCE\u00c2NICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00683374, "longitude": -43.3120971, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002291", "name": "BOSQUE MARAPENDI - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.107.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00386122, "longitude": -43.32272939, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002292", "name": "BOSQUE MARAPENDI - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.107.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00361156, "longitude": -43.32327725, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002293", "name": "BOSQUE MARAPENDI - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.107.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00324512, "longitude": -43.32421251, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002294", "name": "BOSQUE MARAPENDI - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.107.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00385247, "longitude": -43.32281239, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002295", "name": "BOSQUE MARAPENDI - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.151.107.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00368952, "longitude": -43.32301355, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002296", "name": "BOSQUE MARAPENDI - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.107.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00355126, "longitude": -43.3232308, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002297", "name": "PAULO MALTA REZENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.106.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00141443, "longitude": -43.32881397, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002298", "name": "PAULO MALTA REZENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.106.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00118559, "longitude": -43.3293844, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002299", "name": "PAULO MALTA REZENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.106.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00130523, "longitude": -43.32916194, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002300", "name": "AFR\u00c2NIO COSTA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.105.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00053706, "longitude": -43.3356744, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002301", "name": "AFR\u00c2NIO COSTA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.105.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00055929, "longitude": -43.33552018, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002302", "name": "AFR\u00c2NIO COSTA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.105.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00062225, "longitude": -43.33478441, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002303", "name": "RIVIERA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.104.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00027454, "longitude": -43.34192265, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002304", "name": "RIVIERA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.104.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00027002, "longitude": -43.34231383, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002305", "name": "RIVIERA - BRT - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.151.104.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00028764, "longitude": -43.34162933, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002306", "name": "RICARDO MARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.103.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00017993, "longitude": -43.34645197, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002307", "name": "RICARDO MARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.103.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00023031, "longitude": -43.34681056, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002308", "name": "RICARDO MARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.103.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00021272, "longitude": -43.34622113, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002309", "name": "BARRA SHOPPING - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.100.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99996934, "longitude": -43.35946909, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002310", "name": "BARRA SHOPPING - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.100.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00003573, "longitude": -43.35984237, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002311", "name": "BARRA SHOPPING - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://user:sl123456@10.151.100.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99988881, "longitude": -43.35985519, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002312", "name": "BARRA SHOPPING - PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.100.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00007645, "longitude": -43.36144305, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002313", "name": "BARRA SHOPPING - PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.100.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99990609, "longitude": -43.36147524, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002314", "name": "BARRA SHOPPING - PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.100.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99999496, "longitude": -43.36160398, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002315", "name": "BOSQUE DA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.2.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00035279, "longitude": -43.37776479, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002316", "name": "BOSQUE DA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.2.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00035281, "longitude": -43.37709932, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002317", "name": "BOSQUE DA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.2.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00031967, "longitude": -43.3774403, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002318", "name": "NOVO LEBLON - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.3.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00044947, "longitude": -43.38356396, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002319", "name": "NOVO LEBLON - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.3.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00044949, "longitude": -43.38285095, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002320", "name": "NOVO LEBLON - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.3.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00041755, "longitude": -43.38318928, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002321", "name": "AM\u00c9RICAS PARK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.4.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00044932, "longitude": -43.39006663, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002322", "name": "AM\u00c9RICAS PARK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.4.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00047574, "longitude": -43.38943918, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002323", "name": "AM\u00c9RICAS PARK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.4.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00042668, "longitude": -43.38978219, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002324", "name": "SANTA M\u00d4NICA JARDINS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.5.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00022468, "longitude": -43.39882242, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002325", "name": "SANTA M\u00d4NICA JARDINS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.5.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00023789, "longitude": -43.39813793, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002326", "name": "SANTA M\u00d4NICA JARDINS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.5.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00022252, "longitude": -43.39848265, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002327", "name": "RIO MAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.6.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99994751, "longitude": -43.40689294, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002328", "name": "RIO MAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.6.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99997364, "longitude": -43.40723597, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002329", "name": "RIO MAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.6.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00000006, "longitude": -43.40656574, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002330", "name": "INTERLAGOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.8.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00101635, "longitude": -43.41776003, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002331", "name": "INTERLAGOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.8.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00085794, "longitude": -43.41711832, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002332", "name": "INTERLAGOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.8.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00088045, "longitude": -43.41746037, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002333", "name": "PEDRA DE ITA\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.9.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00306252, "longitude": -43.4243055, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002334", "name": "PEDRA DE ITA\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.9.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0028381, "longitude": -43.42372083, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002335", "name": "PEDRA DE ITA\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.9.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00291775, "longitude": -43.42403134, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002336", "name": "PONT\u00d5ES/BARRASUL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.10.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00549625, "longitude": -43.43193858, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002337", "name": "PONT\u00d5ES/BARRASUL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.10.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00545188, "longitude": -43.4316353, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002338", "name": "PONT\u00d5ES/BARRASUL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.10.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00561029, "longitude": -43.43223424, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002339", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00835122, "longitude": -43.44308538, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002340", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00843517, "longitude": -43.4433858, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002341", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0082844, "longitude": -43.4426875, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002342", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00816577, "longitude": -43.44238964, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002343", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00809197, "longitude": -43.44197403, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002344", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00821541, "longitude": -43.4425212, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002345", "name": "GELSON FONSECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.12.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00978007, "longitude": -43.44864289, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002346", "name": "GELSON FONSECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.12.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0099136, "longitude": -43.44893307, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002347", "name": "GELSON FONSECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.12.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0097288, "longitude": -43.44829135, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002348", "name": "GUIGNARD - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.13.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01090361, "longitude": -43.45288318, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002349", "name": "GUIGNARD - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.13.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01077161, "longitude": -43.45225572, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002350", "name": "GUIGNARD - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.13.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01077987, "longitude": -43.45265355, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002357", "name": "BENVINDO DE NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.15.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0143766, "longitude": -43.46667524, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002358", "name": "BENVINDO DE NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.15.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01452039, "longitude": -43.4669724, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002359", "name": "BENVINDO DE NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.15.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01436015, "longitude": -43.46682487, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002360", "name": "GILKA MACHADO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.17.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01705473, "longitude": -43.47706168, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002361", "name": "GILKA MACHADO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.17.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01696232, "longitude": -43.4766837, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002362", "name": "GILKA MACHADO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.17.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01716032, "longitude": -43.47732542, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002363", "name": "GUIOMAR NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.18.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01843611, "longitude": -43.48259779, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002364", "name": "GUIOMAR NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.18.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01857266, "longitude": -43.48288696, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002365", "name": "GUIOMAR NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.18.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01842747, "longitude": -43.48225951, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002366", "name": "RECREIO SHOPPING - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.19.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01964124, "longitude": -43.48727521, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002367", "name": "RECREIO SHOPPING - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.19.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01948341, "longitude": -43.48649484, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002368", "name": "RECREIO SHOPPING - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.19.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01986619, "longitude": -43.48797792, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002372", "name": "NOTRE DAME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02061049, "longitude": -43.5002661, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002373", "name": "NOTRE DAME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02072396, "longitude": -43.49982825, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002374", "name": "NOTRE DAME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02057875, "longitude": -43.5004557, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002375", "name": "PONTAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.23.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01638744, "longitude": -43.51568579, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002376", "name": "PONTAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.23.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01623563, "longitude": -43.51628473, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002377", "name": "PONTAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.23.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01628452, "longitude": -43.51601685, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002378", "name": "ILHA DE GUARATIBA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.24.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00927046, "longitude": -43.54013044, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002379", "name": "ILHA DE GUARATIBA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.24.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0094308, "longitude": -43.53987271, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002380", "name": "ILHA DE GUARATIBA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.24.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0096797, "longitude": -43.53956003, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002387", "name": "MAGAR\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.28.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96863034, "longitude": -43.62168602, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002388", "name": "MAGAR\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.28.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96876238, "longitude": -43.622342, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002389", "name": "MAGAR\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.28.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96864525, "longitude": -43.62203359, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002390", "name": "MAGAR\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.28.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96858351, "longitude": -43.62177073, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002394", "name": "GENERAL OL\u00cdMPIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.35.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9222396, "longitude": -43.67964339, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002395", "name": "GENERAL OL\u00cdMPIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.35.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92195666, "longitude": -43.67970959, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002396", "name": "GENERAL OL\u00cdMPIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.35.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92255416, "longitude": -43.67953252, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002400", "name": "CATEDRAL DO RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.2.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00387406, "longitude": -43.43406238, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002401", "name": "CATEDRAL DO RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.2.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00362998, "longitude": -43.4337458, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002402", "name": "CATEDRAL DO RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.2.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00403923, "longitude": -43.43417361, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002403", "name": "TAPEBUIAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.3.2/axis-media/media.amp?fps=15&resolution=1920x1080&compression=30", "update_interval": 120, "latitude": -23.00016448, "longitude": -43.42971181, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002404", "name": "TAPEBUIAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.3.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99995991, "longitude": -43.42949621, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002405", "name": "TAPEBUIAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.3.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00039557, "longitude": -43.42995253, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002406", "name": "ILHA PURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.4.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98935172, "longitude": -43.41732743, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002407", "name": "ILHA PURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.4.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98981433, "longitude": -43.41792998, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002408", "name": "ILHA PURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.4.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98957907, "longitude": -43.41763105, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002409", "name": "OLOF PALME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.5.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98180178, "longitude": -43.41019139, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002410", "name": "OLOF PALME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.5.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98147953, "longitude": -43.40993679, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002411", "name": "OLOF PALME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.5.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98217191, "longitude": -43.41045032, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002412", "name": "RIOCENTRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.6.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97669954, "longitude": -43.40618889, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002413", "name": "RIOCENTRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.6.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97726681, "longitude": -43.40664837, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002414", "name": "RIOCENTRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.6.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97694082, "longitude": -43.40640604, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002415", "name": "MORRO DO OUTEIRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.9.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97173719, "longitude": -43.40157374, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002416", "name": "MORRO DO OUTEIRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.9.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97127367, "longitude": -43.40119865, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002417", "name": "MORRO DO OUTEIRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.9.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97146744, "longitude": -43.40135684, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002420", "name": "MINHA PRAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.10.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96653011, "longitude": -43.39678355, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002421", "name": "MINHA PRAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.10.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9670253, "longitude": -43.39723512, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002422", "name": "MINHA PRAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.10.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96669204, "longitude": -43.39690042, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002423", "name": "ASA BRANCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.11.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96310579, "longitude": -43.39363021, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002424", "name": "ASA BRANCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.11.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96306548, "longitude": -43.39356192, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002425", "name": "ASA BRANCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.11.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9634997, "longitude": -43.39397693, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002426", "name": "MAGALH\u00c3ES BASTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.20.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8681799, "longitude": -43.41306149, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002427", "name": "MAGALH\u00c3ES BASTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.20.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86803019, "longitude": -43.41279524, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002428", "name": "MAGALH\u00c3ES BASTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.20.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86832751, "longitude": -43.41340843, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002429", "name": "VILA MILITAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.21.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86224644, "longitude": -43.40060053, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002430", "name": "VILA MILITAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.21.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86239487, "longitude": -43.40088882, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002431", "name": "VILA MILITAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.21.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86210303, "longitude": -43.40035407, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002432", "name": "OUTEIRO SANTO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.15.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.928239, "longitude": -43.395888, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002433", "name": "OUTEIRO SANTO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.15.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.928209, "longitude": -43.395845, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002434", "name": "OUTEIRO SANTO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.15.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.927676, "longitude": -43.396061, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002435", "name": "LEILA DINIZ- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.12.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953284, "longitude": -43.390734, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002436", "name": "LEILA DINIZ- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.12.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953103, "longitude": -43.390691, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002437", "name": "LEILA DINIZ- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.12.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952899, "longitude": -43.390386, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002438", "name": "PE. JO\u00c3O CRIBBIN / MARECHAL MALLET - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.19.2/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.875771, "longitude": -43.405322, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002439", "name": "PE. JO\u00c3O CRIBBIN / MARECHAL MALLET - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.19.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87624, "longitude": -43.40513, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002440", "name": "PE. JO\u00e3O CRIBBIN / MARECHAL MALLET - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.19.3/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87601, "longitude": -43.40523, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002441", "name": "MARECHAL FONTENELLE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88587, "longitude": -43.40056, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002442", "name": "MARECHAL FONTENELLE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.3/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88656897, "longitude": -43.40073802, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002443", "name": "MARECHAL FONTENELLE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88593, "longitude": -43.40071, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002444", "name": "MARECHAL FONTENELLE - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887184, "longitude": -43.40087, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002445", "name": "MARECHAL FONTENELLE - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8864, "longitude": -43.40089, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002446", "name": "MARECHAL FONTENELLE - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.7/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88642, "longitude": -43.40068, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002447", "name": "BOI\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.16.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9157, "longitude": -43.39805, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002448", "name": "BOI\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.16.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9159, "longitude": -43.39795, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002449", "name": "BOI\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.16.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91543, "longitude": -43.39823, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002450", "name": "COL\u00d4NIA / MUSEU BISPO DO ROS\u00c1RIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.14.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94118613, "longitude": -43.39461463, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002451", "name": "COL\u00d4NIA / MUSEU BISPO DO ROS\u00c1RIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.14.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94126529, "longitude": -43.39452565, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002452", "name": "COL\u00d4NIA / MUSEU BISPO DO ROS\u00c1RIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.14.4/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94073, "longitude": -43.39461, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002453", "name": "VENTURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.13.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94765, "longitude": -43.39196, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002454", "name": "VENTURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.13.3/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94802, "longitude": -43.39161, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002455", "name": "VENTURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.13.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94786, "longitude": -43.39174, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002456", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.2/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91663724, "longitude": -43.683693, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002457", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91710787, "longitude": -43.68353475, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002458", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.4/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91700905, "longitude": -43.68362326, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002459", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91739198, "longitude": -43.68343416, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002460", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.6/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91766126, "longitude": -43.68333492, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002461", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91672988, "longitude": -43.68372787, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002462", "name": "AV SALVADOR ALLENDE EM FRENTE BRT - RIOCENTRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.6.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97611109, "longitude": -43.40580522, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002463", "name": "LEILA DINIZ- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.12.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95225683, "longitude": -43.39004267, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002464", "name": "COL\u00d4NIA / MUSEU BISPO DO ROS\u00c1RIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.14.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94041877, "longitude": -43.3946851, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002465", "name": "OUTEIRO SANTO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.15.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92731039, "longitude": -43.39635067, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002466", "name": "BOI\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.16.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91516318, "longitude": -43.39856259, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002467", "name": "TERMINAL RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.1.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00826972, "longitude": -43.43968878, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002468", "name": "TERMINAL RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.1.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00836106, "longitude": -43.44007501, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002469", "name": "TERMINAL RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.1.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00843759, "longitude": -43.44038346, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002470", "name": "TERMINAL RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.1.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00850918, "longitude": -43.44065704, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002471", "name": "TERMINAL RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.1.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00858077, "longitude": -43.44098695, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002480", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88507925, "longitude": -43.39941201, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002481", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88484449, "longitude": -43.39936641, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002482", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88468634, "longitude": -43.39933422, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002483", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88453313, "longitude": -43.39930739, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002484", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88442687, "longitude": -43.39931677, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002485", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88417481, "longitude": -43.39939187, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002486", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88381897, "longitude": -43.39943478, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002487", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88377696, "longitude": -43.39984515, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002488", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88398453, "longitude": -43.3998827, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002489", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88412291, "longitude": -43.39989879, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002490", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88422669, "longitude": -43.39990415, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002491", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88439966, "longitude": -43.3999256, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002492", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88455781, "longitude": -43.39995242, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002493", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88470113, "longitude": -43.39997387, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002494", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88495812, "longitude": -43.40001142, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002495", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97185175, "longitude": -43.40056647, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002496", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97196874, "longitude": -43.40056646, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002497", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97215558, "longitude": -43.40056511, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002498", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0066313, "longitude": -43.31200859, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002499", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00653747, "longitude": -43.31303855, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002500", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.6/cam/realmonitor?channel=1&subtype=3&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00670042, "longitude": -43.31337114, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002501", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00649797, "longitude": -43.31339259, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002502", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00658684, "longitude": -43.31368226, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002503", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00678928, "longitude": -43.31266838, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002504", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00154037, "longitude": -43.3675571, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002505", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00152061, "longitude": -43.3670743, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002506", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00150085, "longitude": -43.36679535, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002507", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00148109, "longitude": -43.36644666, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002508", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0014564, "longitude": -43.36574392, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002509", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00144652, "longitude": -43.36557225, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002510", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.152.1.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00146133, "longitude": -43.36529866, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002511", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00144898, "longitude": -43.36509749, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002512", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00142922, "longitude": -43.36475953, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002513", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00141317, "longitude": -43.36456909, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002514", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87761271, "longitude": -43.33708333, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002515", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87764484, "longitude": -43.33706992, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002516", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87754599, "longitude": -43.33705516, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002517", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87756946, "longitude": -43.33695457, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002518", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87774862, "longitude": -43.33688483, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002519", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87784005, "longitude": -43.33663404, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002520", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87773872, "longitude": -43.33668767, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002521", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87779309, "longitude": -43.33669974, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002522", "name": "MERCAD\u00c3O - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.27.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87050319, "longitude": -43.33564924, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002523", "name": "MERCAD\u00c3O - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.27.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87039197, "longitude": -43.33553926, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002524", "name": "MERCAD\u00c3O - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.27.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87035737, "longitude": -43.33565995, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002525", "name": "OTAVIANO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.28.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86604602, "longitude": -43.3344451, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002526", "name": "OTAVIANO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.28.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86585571, "longitude": -43.33431098, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002527", "name": "OTAVIANO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.28.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8658174, "longitude": -43.33442899, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002528", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8392697, "longitude": -43.23964789, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002529", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83906453, "longitude": -43.23978736, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002530", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83889643, "longitude": -43.23992951, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002531", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83876788, "longitude": -43.24001802, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002532", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83901012, "longitude": -43.24032647, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002533", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83924, "longitude": -43.24014139, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002534", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83949707, "longitude": -43.23991608, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002535", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83969976, "longitude": -43.23975514, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "002536", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83988268, "longitude": -43.23958079, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003020", "name": "CFTV COR - ESTACIONAMENTO 1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91165522, "longitude": -43.20386116, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003021", "name": "CFTV COR - ESTACIONAMENTO 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91153045, "longitude": -43.20413474, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003022", "name": "CFTV COR - ESTACIONAMENTO 3", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911874, "longitude": -43.20402, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003100", "name": "AV. PASTOR MARTIN LUTHER KING J\u00daNIOR, 8888 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8274106, "longitude": -43.347624, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003101", "name": "R. SUSSEKIND DE MENDON\u00c7A, 163.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.810935, "longitude": -43.339436, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003102", "name": "AV. CEL. PHIDIAS T\u00c1VORA, 1095.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.807938, "longitude": -43.3447364, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003103", "name": "R. MERC\u00daRIO, 1545", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8047819, "longitude": -43.3508921, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003104", "name": "R. NETUNO 714 A 794.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8055026, "longitude": -43.35682072, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003105", "name": "R. SARGENTO ANT\u00d4NIO ERNESTO.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80749956, "longitude": -43.35605595, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003106", "name": "R. HERCULANO PINHEIRO, 32.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.247/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8111681, "longitude": -43.3528656, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003107", "name": "PRA\u00c7A \u00caNIO, 64 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.248/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8076635, "longitude": -43.3587199, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003109", "name": "ESTR. DOS BANDEIRANTES, 293.", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.51/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96076539, "longitude": -43.39278821, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003110", "name": "AV. PASTOR MARTIN LUTHER KING JR, 11763 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.249/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.820197, "longitude": -43.352603, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003111", "name": "R. JOS\u00c9 HIGINO, 244 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92942444, "longitude": -43.23878652, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003112", "name": "RUA CONDE DE BONFIM, 502 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92780455, "longitude": -43.23630193, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003115", "name": "AV. MARACAN\u00c3, 1281 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92957837, "longitude": -43.24094689, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003116", "name": "R. JOS\u00c9 HIGINO, 110 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92680941, "longitude": -43.24001454, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003117", "name": "RUA DOIS, 61 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92570411, "longitude": -43.24021454, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003119", "name": "R. URUGUAI, 260", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92847128, "longitude": -43.24379595, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003120", "name": "ESTR. CEL. PEDRO CORR\u00caA, 232 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96167, "longitude": -43.390449, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003121", "name": "ESTR. CEL. PEDRO CORR\u00caA, 232 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96177, "longitude": -43.390449, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003122", "name": "ESTR. DOS BANDEIRANTES, 5837", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96182402, "longitude": -43.39699792, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003123", "name": "AV. PASTOR MARTIN LUTHER KING JR., 7508 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84662418, "longitude": -43.32635235, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003125", "name": "ESTR. CEL. PEDRO CORR\u00caA, 22 - FIXA", "rtsp_url": "rtsp://admin:7LANMSTR@10.50.106.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.965315, "longitude": -43.390481, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003127", "name": "AV. PASTOR MARTIN LUTHER KING J\u00daNIOR, 8348 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.250/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.823646, "longitude": -43.350866, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003128", "name": "AV. PASTOR MARTIN LUTHER KING JR., 11363 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.251/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.824659, "longitude": -43.350029, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003129", "name": "ESTR. VEREADOR ALCEU DE CARVALHO, 190", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.020425, "longitude": -43.492627, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003130", "name": "ESTR. VEREADOR ALCEU DE CARVALHO, 2222 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.019721, "longitude": -43.492865, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003131", "name": "ESTR. VEREADOR ALCEU DE CARVALHO, 114 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.014347, "longitude": -43.493038, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003132", "name": "R. CAT\u00c3O, 13", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.806976, "longitude": -43.363851, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003133", "name": "AVENIDA ARMANDO LOMBARDI, 800.", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.56/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006362, "longitude": -43.313202, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003134", "name": "AV. ARMANDO LOMBARDI, 435", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.57/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006916, "longitude": -43.313425, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003135", "name": "AV. ARMANDO LOMBARDI 505.", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.58/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00726501, "longitude": -43.30978801, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003137", "name": "ESTRADA RIO D\u00b4OURO, S/N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.806369, "longitude": -43.34361, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003138", "name": "ESTRADA CEL. PEDRO CORR\u00caA 120-140.", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.74/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96808, "longitude": -43.390844, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003139", "name": "AV. NOSSA SRA. DE COPACABANA X RUA BOL\u00cdVAR.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.975875, "longitude": -43.190084, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003141", "name": "AV. DAS AM\u00c9RICAS X AV. AYRTON SENNA - CEBOL\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00016974, "longitude": -43.36926474, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003142", "name": "R. FRANCISCO DE PAULA, 71.", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968276, "longitude": -43.394788, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003143", "name": "R. FRANCISCO DE PAULA, 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.77/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970815, "longitude": -43.397451, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003144", "name": "AV. PASTOR MARTIN LUTHER KING JR., 7508 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.114/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84656485, "longitude": -43.32654546, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003145", "name": "ESTR. DO PONTAL X AV. ESTADO DA GUANABARA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.9/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.033393, "longitude": -43.492911, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003146", "name": "AV. SALVADOR ALLENDE, 750", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96998211, "longitude": -43.39979601, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003147", "name": "T\u00daNEL VELHO SENT. COPACABANA - 1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.961226, "longitude": -43.19089, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003148", "name": "T\u00daNEL VELHO SENT. COPACABANA - 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96104203, "longitude": -43.19089268, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003149", "name": "T\u00daNEL VELHO SENT. COPACABANA - 3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96130556, "longitude": -43.19095164, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003150", "name": "T\u00daNEL VELHO SENT. COPACABANA - 4 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96145362, "longitude": -43.19099758, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003151", "name": "T\u00faNEL VELHO SENT. COPACABANA - 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96114, "longitude": -43.190897, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003152", "name": "T\u00faNEL VELHO SENT. COPACABANA - 6 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962633, "longitude": -43.191353, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003153", "name": "T\u00faNEL VELHO SENT. COPACABANA - 7 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962533, "longitude": -43.191353, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003154", "name": "T\u00faNEL VELHO SENT. COPACABANA - 8 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962847, "longitude": -43.19146, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003155", "name": "T\u00faNEL VELHO SENT. COPACABANA - 9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963251, "longitude": -43.191548, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003156", "name": "T\u00faNEL VELHO SENT. COPACABANA - 10 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963151, "longitude": -43.191548, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003157", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96283953, "longitude": -43.19138361, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003158", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96279118, "longitude": -43.19136365, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003159", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.136/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96220281, "longitude": -43.19116781, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003160", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 4 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96220181, "longitude": -43.19116781, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003161", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96182065, "longitude": -43.19105804, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003162", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 6 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.20.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96207256, "longitude": -43.19112778, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003163", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 7 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.961207, "longitude": -43.190805, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003164", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 8 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.20.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.960992, "longitude": -43.190731, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003165", "name": "AV. EMBAIXADOR ABELARDO BUENO, 91.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97317814, "longitude": -43.3997101, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003166", "name": "AV. SALVADOR ALLENDE X AV. EMBAIXADOR ABELARDO BUENO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970809, "longitude": -43.400544, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003167", "name": "AV. EMBAIXADOR ABELARDO BUENO, N\u00ba 4801", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9732631, "longitude": -43.3994164, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003168", "name": "TERMINAL ALVORADA A", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.92/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00063386, "longitude": -43.3677265, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003169", "name": "TERMINAL ALVORADA B", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000664, "longitude": -43.36452, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003170", "name": "AV. AYRTON SENNA X TERMINAL ALVORADA C", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.001799, "longitude": -43.367594, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003171", "name": "ESTR. DAS FURNAS, 2082 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.77/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978638, "longitude": -43.291767, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003172", "name": "LAGUNE BARRA HOTEL - AV. SALVADOR ALLENDE, 6.555", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979958, "longitude": -43.409981, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003174", "name": "AV. SALVADOR ALLENDE, 2", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.967469, "longitude": -43.397707, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003175", "name": "AV. SALVADOR ALLENDE 4700", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963908, "longitude": -43.394301, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003176", "name": "ESTR. DOS BANDEIRANTES, 8613", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.974649, "longitude": -43.414683, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003177", "name": "AV. SALVADOR ALLENDE, 31087", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989308, "longitude": -43.416947, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003178", "name": "AV. SALVADOR ALLENDE RECREIO DOS BANDEIRANTES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.003092, "longitude": -43.433462, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003179", "name": "AV. SALVADOR ALLENDE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000213, "longitude": -43.430007, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003180", "name": "AV. SALVADOR ALLENDE - BARRA DA TIJUCA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.997562, "longitude": -43.426382, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003181", "name": "AVENIDA ARMANDO LOMBARDI", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0065595, "longitude": -43.31274066, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003183", "name": "AV. GLAUCIO GIL, 1125 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.014115, "longitude": -43.461273, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003184", "name": "AV. GLAUCIO GIL, 1125 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01419646, "longitude": -43.46147953, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003185", "name": "AV. GLAUCIO GIL, 1078 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.014862, "longitude": -43.460986, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003186", "name": "AV. GLAUCIO GIL, 1078 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01491631, "longitude": -43.46115229, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003187", "name": "AV. GLAUCIO GIL, 984 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.016037, "longitude": -43.460605, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003188", "name": "AV. GLAUCIO GIL, 984 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01608143, "longitude": -43.46075788, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003189", "name": "AV. GLAUCIO GIL, 810 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.016661, "longitude": -43.460269, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003190", "name": "AV. GLAUCIO GIL, 810 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.016739, "longitude": -43.460459, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003191", "name": "AV. GLAUCIO GIL, 770 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018084, "longitude": -43.459916, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003192", "name": "AV. GLAUCIO GIL, 770 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018014, "longitude": -43.459753, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003193", "name": "AV. GLAUCIO GIL, 680 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018904, "longitude": -43.459443, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003194", "name": "AV. GLAUCIO GIL, 680 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.170/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018927, "longitude": -43.459577, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003195", "name": "ESTRADA BENVINDO DE NOVAES, 2467 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.171/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.010714, "longitude": -43.461486, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003196", "name": "AV. GLAUCIO GIL, 595 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.172/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.019561, "longitude": -43.459146, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003197", "name": "AV. GLAUCIO GIL, 595 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.173/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.019627, "longitude": -43.459291, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003198", "name": "ESTRADA BENVINDO DE NOVAES, 2223 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.174/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.008713, "longitude": -43.459854, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003199", "name": "AV. GLAUCIO GIL, 480 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.175/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.020665, "longitude": -43.45875, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003200", "name": "AV. GLAUCIO GIL, 480 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.020683, "longitude": -43.458901, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003201", "name": "AV. GLAUCIO GIL, 374 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.177/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.021396, "longitude": -43.458461, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003202", "name": "AV. GLAUCIO GIL, 374 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.178/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.021422, "longitude": -43.458615, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003203", "name": "AV. GLAUCIO GIL, 201 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.179/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.022701, "longitude": -43.458038, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003204", "name": "AV. GLAUCIO GIL, 201 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0226615, "longitude": -43.45786633, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003206", "name": "ESTR. RIO S\u00e3O PAULO, 5799 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.181/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.868133, "longitude": -43.585724, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003207", "name": "AV. DAS AM\u00e9RICAS - PROX BRT INTERLAGOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0011545, "longitude": -43.41825536, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003208", "name": "AV. DAS AM\u00e9RICAS, 9818 - ALT. BRT GOLFE OLIMPICO", "rtsp_url": "rtsp://admin:7LANMSTR@10.52.209.183/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99969, "longitude": -43.411535, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003209", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES, 3941 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.184/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.868432, "longitude": -43.584167, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003210", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES, 3270 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.185/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.872218, "longitude": -43.580674, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003211", "name": "AV. AYRTON SENNA, 2547", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98816808, "longitude": -43.36605988, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003212", "name": "AV. AYRTON SENNA, 3437", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.47/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97971915, "longitude": -43.36540114, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003213", "name": "AV. MARACAN\u00e3 X S\u00e3O FRANCISCO XAVIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915998, "longitude": -43.229708, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003214", "name": "R. DEM\u00f3STENES MADUREIRA DE PINHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.023417, "longitude": -43.457761, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003215", "name": "R. DEM\u00f3STENES MADUREIRA DE PINHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.187/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.023517, "longitude": -43.457761, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003216", "name": "S\u00e3O FRANCISCO XAVIER X AVENIDA\u00a0PAULA\u00a0E\u00a0SOUZA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916274, "longitude": -43.228525, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003217", "name": "RUA JOAQUIM CARDOZO, 90 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.024175, "longitude": -43.457486, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003218", "name": "RUA JOAQUIM CARDOZO, 90 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.189/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.024275, "longitude": -43.457486, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003219", "name": "S\u00e3O FRANCISCO XAVIER X VISCONDE DE ITAMARATI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915896, "longitude": -43.230606, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003220", "name": "R. S\u00e3O FRANCISCO XAVIER X R. CONSELHEIRO OLEG\u00e1RIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913812, "longitude": -43.233708, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003221", "name": "R. S\u00e3O FRANCISCO XAVIER X R. ARTUR MENEZES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914593, "longitude": -43.233123, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003222", "name": "R. ISIDRO DE FIGUEIREDO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915653, "longitude": -43.232198, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003223", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES X R. VICENTE FRANCISCO DOS SANTOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.190/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.878867, "longitude": -43.573553, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003224", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES, 2595 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.875719, "longitude": -43.575257, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003225", "name": "ESTR. RIO S\u00e3O PAULO, 2172 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881164, "longitude": -43.57349, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003227", "name": "RUA AROAZES, 730", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97107634, "longitude": -43.39274418, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003228", "name": "ESTRADA DA CAROBA, 917 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897686, "longitude": -43.556483, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003229", "name": "ESTRADA DA CAROBA X R. LUC\u00edLIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.196/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.898398, "longitude": -43.555017, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003230", "name": "AV. CANAL ARROIO PAVUNA X PEDRO PEREIRA PINTO", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.152/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.961361, "longitude": -43.381074, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003231", "name": "AV. EMBAIXADOR ABELARDO BUENO, 95", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973026, "longitude": -43.400432, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003232", "name": "AV. EMBAIXADOR ABELARDO BUENO, 3300", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.198/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973004, "longitude": -43.401038, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003234", "name": "ESTRADA BENVINDO DE NOVAES, 1180", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.199/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0012253, "longitude": -43.4536353, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003235", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X PRA\u00e7A COP\u00e9RNICO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.806353, "longitude": -43.364915, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003236", "name": "ESTRADA BENVINDO DE NOVAES, 520 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99706317, "longitude": -43.45029918, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003238", "name": "AVENIDA SARGENTO DE MIL\u00edCIAS, 2113", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.804975, "longitude": -43.363106, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003239", "name": "AVENIDA SARGENTO DE MIL\u00edCIAS, 23", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.805157, "longitude": -43.363934, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003241", "name": "ESTR. DOS BANDEIRANTES X ESTR. BENVINDO DE NOVAES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99264709, "longitude": -43.44712635, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003242", "name": "ESTRADA BENVINDO DE NOVAES, 880 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.207/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9941285, "longitude": -43.44790195, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003243", "name": "ESTR. DOS BANDEIRANTES, 12877-12777 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.208/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99285195, "longitude": -43.44890552, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003244", "name": "ESTR. DOS BANDEIRANTES, 8325 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99282561, "longitude": -43.44777903, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003245", "name": "R. SRG. BASILEU DA COSTA X AV. SRG. DE MIL\u00edCIAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.254/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80469, "longitude": -43.36153, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003246", "name": "AV. SRG. DE MIL\u00edCIAS, 831 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.1/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8044862, "longitude": -43.3600062, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003247", "name": "R. MERC\u00faRIO, 459 - PAVUNA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.805915, "longitude": -43.3607577, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003251", "name": "R. BAR\u00e3O DE MESQUITA, SHOPPING TIJUCA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92347214, "longitude": -43.23523738, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003252", "name": "R. GEN. ROCA, 932 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.205/cam/realmonitor?channel=0&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92372365, "longitude": -43.23477908, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003253", "name": "R. GEN. ROCA, 894", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92391641, "longitude": -43.23449197, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003254", "name": "R. BENEDITO OTONI X R. SANTOS LIMA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.896795, "longitude": -43.216514, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003255", "name": "R. BENEDITO OTONI, 46 - S\u00e3O CRIST\u00f3V\u00e3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8995661, "longitude": -43.2146122, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003256", "name": "R. FIGUEIRA LIMA X S\u00e3O CRIST\u00f3V\u00e3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901123, "longitude": -43.216668, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003257", "name": "R. FONSECA T\u00e9LES X S\u00e3O CRIST\u00f3V\u00e3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902981, "longitude": -43.218469, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003258", "name": "AV. PEDRO II, 187", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903464, "longitude": -43.215008, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003259", "name": "AV. PEDRO II, 111", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902786, "longitude": -43.213196, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003260", "name": "MONUMENTO PEDRO I - PRA\u00e7A TIRADENTES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907288, "longitude": -43.182869, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003261", "name": "MONUMENTO PEDRO I - PRA\u00e7A TIRADENTES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906505, "longitude": -43.182908, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003262", "name": "MONUMENTO BALAUSTRES DA MURADA DA GL\u00f3RIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.922804, "longitude": -43.172565, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003263", "name": "MONUMENTO BALAUSTRES DA MURADA DA GL\u00f3RIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92261624, "longitude": -43.17240272, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003264", "name": "MONUMENTO BALAUSTRES DA MURADA DA GL\u00f3RIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92268047, "longitude": -43.17242417, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003265", "name": "MONUMENTO BALAUSTRES DA MURADA DA GL\u00f3RIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.922646, "longitude": -43.172481, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003266", "name": "MONUMENTO PEDRO II - QUINTA DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90535, "longitude": -43.22477, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003268", "name": "MONUMENTO JOS\u00e9 BONIF\u00e1CIO - LARGO DE S\u00e3O FRANCISCO DE PAULA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90522, "longitude": -43.18083, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003269", "name": "R. CLARA NUNES, 10-170 - PORTELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.870714, "longitude": -43.343139, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003270", "name": "RUA ANT\u00f4NIO BAS\u00edLIO X RUA CONDE DE ITAGUA\u00ed - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92702683, "longitude": -43.23786808, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003271", "name": "R. CAMPO DE S\u00e3O CRIST\u00f3V\u00e3O, 87 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89877, "longitude": -43.219888, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003272", "name": "R. CAMPO DE S\u00e3O CRIST\u00f3V\u00e3O, 87 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.6/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89878976, "longitude": -43.21983301, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003273", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 01 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97806987, "longitude": -43.19293536, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003274", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 02 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97857, "longitude": -43.19303, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003275", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 03 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.202/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97923, "longitude": -43.19306, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003276", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 04 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9795, "longitude": -43.19302, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003277", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 05 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98016, "longitude": -43.19286, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003278", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 06 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.210/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98044127, "longitude": -43.19275559, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003279", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 07 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98096, "longitude": -43.19261, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003280", "name": "PR. BELO JARDIM X ESTR. DO GALE\u00e3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.92/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.820537, "longitude": -43.227394, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003281", "name": "PR. BELO JARDIM X ESTR. DO GALE\u00e3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82036566, "longitude": -43.22713689, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003282", "name": "ESTR. DO GALE\u00e3O X AV. QUATRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.94/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82001445, "longitude": -43.22697693, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003283", "name": "ESTRADA DO GALE\u00e3O X R CINQUENTA E DOIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81779262, "longitude": -43.22454742, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003284", "name": "ESTRADA DO GALE\u00e3O PROX R. RIO DE JANEIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.96/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81580995, "longitude": -43.22240442, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003285", "name": "ESTRADA DO GALE\u00e3O PROX R. ESPUMAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81300069, "longitude": -43.21994918, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003286", "name": "ESTRADA DO GALE\u00e3O, 837", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.98/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8096719, "longitude": -43.2156804, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003287", "name": "ESTRADA DO GALE\u00e3O, 3359", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.99/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.806501, "longitude": -43.214118, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003288", "name": "ESTRADA DO GALE\u00e3O, 2940 - CHAFARIZ DA ILHA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.805456, "longitude": -43.211027, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003289", "name": "R.CAMPO DE S\u00e3O CRIST\u00f3V\u00e3O X R.FIGUEIRA DE MELO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89829678, "longitude": -43.21954664, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003290", "name": "PRA\u00e7A PADRE C\u00edCERO X R. CAMPO DE S\u00e3O CRIST\u00f3V\u00e3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.5/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89673643, "longitude": -43.22126191, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003292", "name": "ESTR. DOS BANDEIRANTES, 21979 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987522, "longitude": -43.484395, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003293", "name": "ESTR. DOS BANDEIRANTES, 21717 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987968, "longitude": -43.481604, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003294", "name": "ESTR. DOS BANDEIRANTES, 21717 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987888, "longitude": -43.481604, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003295", "name": "ESTR. DOS BANDEIRANTES, 21577 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987626, "longitude": -43.479585, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003296", "name": "ESTR. DOS BANDEIRANTES, 21577 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987546, "longitude": -43.479585, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003297", "name": "ESTR. DOS BANDEIRANTES, 21361 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98717, "longitude": -43.47776, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003298", "name": "ESTR. DOS BANDEIRANTES, 21361 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98711, "longitude": -43.47776, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003299", "name": "ESTR. DOS BANDEIRANTES, 21152 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986483, "longitude": -43.476327, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003300", "name": "ESTR. DOS BANDEIRANTES, 21152 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986403, "longitude": -43.476327, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003301", "name": "ESTR. DOS BANDEIRANTES, 20732 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985117, "longitude": -43.473939, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003302", "name": "ESTR. DOS BANDEIRANTES, 20732 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985037, "longitude": -43.473939, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003303", "name": "ESTR. DOS BANDEIRANTES,20265 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983681, "longitude": -43.470621, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003304", "name": "ESTR. DOS BANDEIRANTES,20265 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9836, "longitude": -43.470621, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003305", "name": "RUA CAMBA\u00faBA, 27 - JARDIM GUANABARA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.115/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.812899, "longitude": -43.2076877, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003306", "name": "AV. SERNAMBETIBA X PRA\u00e7A DO O", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.67/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01274517, "longitude": -43.31835682, "snapshot_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/003306.png", "snapshot_timestamp": "2024-02-10T00:58:13.937241+00:00", "objects": ["water_in_road", "traffic_ease_vehicle", "image_condition", "road_blockade", "image_description", "water_level"], "identifications": [{"object": "water_in_road", "timestamp": "2024-02-10T00:55:50.922127+00:00", "label": "false", "label_explanation": "There is no water on the road. The road is dry and clear."}, {"object": "traffic_ease_vehicle", "timestamp": "2024-02-10T00:55:51.526755+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "image_condition", "timestamp": "2024-02-10T00:55:50.558916+00:00", "label": "clean", "label_explanation": "The image is clear, with no visible signs of corruption or distortion. There are no large areas of uniform color or blurring. The image quality is good, and all objects are clearly visible."}, {"object": "road_blockade", "timestamp": "2024-02-10T00:55:51.808123+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions. Traffic is flowing smoothly."}, {"object": "image_description", "timestamp": "2024-02-10T00:55:50.803560+00:00", "label": "null", "label_explanation": "The image is a night view of a four-lane road with a pedestrian crossing. The road is lit by streetlights, and there are trees on either side of the road. There are cars parked on the side of the road, and there are people crossing the street. The traffic lights are red and green."}, {"object": "water_level", "timestamp": "2024-02-10T00:55:51.204878+00:00", "label": "low_indifferent", "label_explanation": "There is no water on the road. The road is dry and clear."}]}, {"id": "003307", "name": "RUA CAMBA\u00faBA, 1290 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8152141, "longitude": -43.2064024, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003308", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.175/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978972, "longitude": -43.230064, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003309", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979047, "longitude": -43.230644, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003310", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.177/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979108, "longitude": -43.231871, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003311", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:admin@10.52.37.178/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979376, "longitude": -43.231852, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003312", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.179/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979495, "longitude": -43.23113, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003313", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979432, "longitude": -43.230711, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003314", "name": "RUA CAMBA\u00faBA, 1664", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.118/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8173098, "longitude": -43.2029786, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003315", "name": "PRA\u00e7A JERUSAL\u00e9M PR\u00f3XIMO AO N\u00ba29", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.119/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8191751, "longitude": -43.2014486, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003317", "name": "AV. ALM. ALVES C\u00e2MARA J\u00faNIOR, 302 - PRAIA DA BICA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.121/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8183498, "longitude": -43.1969481, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003318", "name": "RIO MARACAN\u00e3 ALT. DA R. DEPUTADO SOARES FILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918432, "longitude": -43.232287, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003319", "name": "R. IPIRU, 416", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.122/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8194611, "longitude": -43.1919038, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003320", "name": "PRAIA DA BICA PR\u00f3X. AV FRANCISCO ALVES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.123/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8187325, "longitude": -43.1998025, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003321", "name": "RUA CAMBA\u00faBA, 448 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.124/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8091289, "longitude": -43.2083119, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003322", "name": "PRA\u00e7A JERUSAL\u00e9M N\u00ba 241", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.125/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8193511, "longitude": -43.2020761, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003323", "name": "COMPORTA RUA GEN. GARZON - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96756, "longitude": -43.217717, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003324", "name": "RUA CAMBA\u00faBA , 1510 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.816474, "longitude": -43.204871, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003325", "name": "RUA CAMBA\u00faBA, 1135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8138271, "longitude": -43.2067662, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003326", "name": "LARGO DA PAVUNA, 97 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80604516, "longitude": -43.36676706, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003327", "name": "R. MARIA HELENA, 93 FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8057282, "longitude": -43.3699047, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003328", "name": "ESTRADA DO GALE\u00e3O X RUA VISTULA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.808073, "longitude": -43.196808, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003329", "name": "ESTRADA DO GALE\u00e3O X R. COPENHAGUE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81020484, "longitude": -43.19521244, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003330", "name": "ESTRADA DO GALE\u00e3O X ESTR. DA CACUIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8119983, "longitude": -43.1915522, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003331", "name": "PARQUE COL\u00faMBIA X AV CEL. PHIDIAS T\u00e1VORA- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.808826, "longitude": -43.341769, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003332", "name": "ESTR. DO RIO JEQUI\u00e1, 200", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.154/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8165634, "longitude": -43.1856707, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003333", "name": "ESTRADA DO GALE\u00e3O, 12 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8160293, "longitude": -43.1871324, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003334", "name": "ESTR. DO RIO JEQUI\u00e1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8164087, "longitude": -43.1865506, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003335", "name": "R. COMENDADOR GUERRA, 425 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80875435, "longitude": -43.37094428, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003336", "name": "PRA\u00e7A NOSSA SRA. DAS DORES, 232", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80883537, "longitude": -43.3698123, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003337", "name": "ESTRADA DA BICA X ESTR. DO RIO JEQUI\u00e1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81659498, "longitude": -43.18749598, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003338", "name": "ESTRADA DO GALE\u00e3O, 123 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81617109, "longitude": -43.1885125, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003339", "name": "ESTRADA DO GALE\u00e3O . EM FRENTE A PARANAPUAN - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81516361, "longitude": -43.18799908, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003340", "name": "ESTRADA DO GALE\u00e3O X RUA IACO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8136348, "longitude": -43.1894917, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003341", "name": "R. BOM RETIRO, 31 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80659819, "longitude": -43.1984414, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003342", "name": "AV. AUTOM\u00f3VEL CLUBE, 41", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8045866, "longitude": -43.3668765, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003343", "name": "ESTRADA DO GALE\u00e3O, 1803", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8061436, "longitude": -43.1999468, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003344", "name": "R. REP\u00faBLICA \u00c1RABE DA S\u00edRIA, 2289 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8041552, "longitude": -43.2045045, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003345", "name": "RUA CAMBA\u00faBA 6", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.808138, "longitude": -43.207306, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003346", "name": "ESTRADA DO GALE\u00e3O X RUA CAMBA\u00faBA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8056069, "longitude": -43.2090232, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003347", "name": "R. ENG. ROZAURO ZAMBRANO, 74 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.817787, "longitude": -43.201544, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003354", "name": "RUA JOS\u00e9 DUARTE, 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.178/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982997, "longitude": -43.46928, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003355", "name": "RUA JOS\u00e9 DUARTE, 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.179/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98306, "longitude": -43.46928, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003356", "name": "ESTR. DOS BANDEIRANTES, 16231 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982182, "longitude": -43.466654, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003357", "name": "ESTR. DOS BANDEIRANTES, 16231 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.181/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982282, "longitude": -43.466654, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003358", "name": "ESTR. DOS BANDEIRANTES, 15050 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982512, "longitude": -43.463208, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003359", "name": "ESTR. DOS BANDEIRANTES, 15050 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.183/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982612, "longitude": -43.463208, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003360", "name": "ESTR. DOS BANDEIRANTES, 14914 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.184/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982854, "longitude": -43.462664, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003361", "name": "ESTR. DOS BANDEIRANTES, 14914 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.185/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982954, "longitude": -43.462664, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003362", "name": "ESTR. DOS BANDEIRANTES, 14732-14772 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983833, "longitude": -43.461807, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003364", "name": "ESTR. DOS BANDEIRANTES, 13840 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984679, "longitude": -43.460939, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003365", "name": "ESTR. DOS BANDEIRANTES, 13840 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.189/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984779, "longitude": -43.460939, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003366", "name": "ESTR. DOS BANDEIRANTES, 14603-14485 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.190/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985465, "longitude": -43.460122, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003367", "name": "ESTR. DOS BANDEIRANTES, 14603-14485 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985565, "longitude": -43.460122, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003368", "name": "ESTR. DOS BANDEIRANTES, 14172-14254 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986195, "longitude": -43.457426, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003369", "name": "ESTR. DOS BANDEIRANTES, 14172-14254 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986295, "longitude": -43.457426, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003370", "name": "ESTR. DOS BANDEIRANTES, 14040 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.194/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987046, "longitude": -43.456313, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003371", "name": "ESTR. DOS BANDEIRANTES, 14040 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987146, "longitude": -43.456313, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003373", "name": "ESTR. DOS BANDEIRANTES, 13951 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987873, "longitude": -43.455468, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003374", "name": "ESTR. DOS BANDEIRANTES, 13833 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.198/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988371, "longitude": -43.454566, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003375", "name": "ESTR. DOS BANDEIRANTES, 13833 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988471, "longitude": -43.454566, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003376", "name": "ESTR. DOS BANDEIRANTES, 13787 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98894827, "longitude": -43.45402382, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003377", "name": "ESTR. DOS BANDEIRANTES, 13787 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98897295, "longitude": -43.45411501, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003378", "name": "ESTR. DOS BANDEIRANTES, 13595-13257 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.202/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99172, "longitude": -43.451088, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003379", "name": "ESTR. DOS BANDEIRANTES, 13595-13257 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99182, "longitude": -43.451088, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003380", "name": "ESTR. DOS BANDEIRANTES, 12790 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992676, "longitude": -43.448693, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003381", "name": "ESTR. DOS BANDEIRANTES, 12790 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.205/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992776, "longitude": -43.448693, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003382", "name": "ESTR. DOS BANDEIRANTES, 12833-12817 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992414, "longitude": -43.446726, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003383", "name": "ESTR. DOS BANDEIRANTES, 12833-12817 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.207/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992514, "longitude": -43.446726, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003384", "name": "ESTR. DOS BANDEIRANTES, 12427 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.208/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.991737, "longitude": -43.445642, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003385", "name": "ESTR. DOS BANDEIRANTES, 12427 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.991837, "longitude": -43.445642, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003386", "name": "ESTR. DOS BANDEIRANTES, 12310 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.210/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990033, "longitude": -43.443091, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003387", "name": "ESTR. DOS BANDEIRANTES, 12310 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.211/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990133, "longitude": -43.443091, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003388", "name": "ESTR. DOS BANDEIRANTES, 12250 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.212/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989462, "longitude": -43.442276, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003389", "name": "ESTR. DOS BANDEIRANTES, 12250 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.213/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989562, "longitude": -43.442276, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003390", "name": "ESTR. DOS BANDEIRANTES, 12179-12067 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988949, "longitude": -43.440787, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003391", "name": "ESTR. DOS BANDEIRANTES, 12179-12067 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989049, "longitude": -43.440787, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003401", "name": "R. FIGUEIREDO CAMARGO X R. SIDNEI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8715036, "longitude": -43.4557122, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003403", "name": "R. GEN. GUSTAVO CORDEIRO DE FARIAS, 346", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.10/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89658355, "longitude": -43.23965004, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003411", "name": "ESTR. DOS BANDEIRANTES, 25.976 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984509, "longitude": -43.506172, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003412", "name": "ESTR. DOS BANDEIRANTES, 25.976 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.236/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98451517, "longitude": -43.50599765, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003413", "name": "ESTR. DOS BANDEIRANTES, 25976 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.237/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983798, "longitude": -43.506167, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003414", "name": "ESTR. DOS BANDEIRANTES, 25976 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983798, "longitude": -43.5060758, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003415", "name": "ESTR. DOS BANDEIRANTES, 26325 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981787, "longitude": -43.506265, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003416", "name": "ESTR. DOS BANDEIRANTES, 26325 - FIXA", "rtsp_url": "rtsp://admin:admin@10.52.210.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98179502, "longitude": -43.50613491, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003420", "name": "ESTR. DOS BANDEIRANTES, 25997", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984334, "longitude": -43.505867, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003423", "name": "ESTR. DOS BANDEIRANTES X ESTR. DO RIO MORTO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986552, "longitude": -43.48961, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003424", "name": "ESTR. DOS BANDEIRANTES, 22667 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986421, "longitude": -43.48969, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003425", "name": "ESTR. DOS BANDEIRANTES X R. MANHUA\u00e7U - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978412, "longitude": -43.492566, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003426", "name": "ESTR. DOS BANDEIRANTES X R. MANHUA\u00e7U - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978191, "longitude": -43.492693, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003427", "name": "ESTR. DOS BANDEIRANTES, 24131 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976666, "longitude": -43.493969, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003428", "name": "ESTR. DOS BANDEIRANTES, 24131 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976492, "longitude": -43.494036, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003429", "name": "ESTR. DOS BANDEIRANTES X ESTRADA DO PACU\u00ed", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976424, "longitude": -43.494349, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003433", "name": "ESTR. DOS BANDEIRANTES, 7416 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979823, "longitude": -43.50587, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003434", "name": "ESTR. DOS BANDEIRANTES, 7416 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980108, "longitude": -43.5059, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003437", "name": "R. REP\u00faBLICA \u00c1RABE DA S\u00edRIA, 2716", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.252/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80473162, "longitude": -43.20805224, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003438", "name": "R. REP\u00faBLICA \u00c1RABE DA S\u00edRIA, 111", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.253/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8048, "longitude": -43.206975, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003445", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91364458, "longitude": -43.25179475, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003446", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913433, "longitude": -43.251867, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003447", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9130557, "longitude": -43.25192761, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003448", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91269358, "longitude": -43.25197113, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003450", "name": "ESTR. DOS BANDEIRANTES, 11864-11912 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988824, "longitude": -43.438931, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003451", "name": "ESTR. DOS BANDEIRANTES, 11864-11912 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988924, "longitude": -43.438931, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003452", "name": "ESTRADA DOS BANDEIRANTES, 11632 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98923, "longitude": -43.436909, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003453", "name": "ESTRADA DOS BANDEIRANTES, 11632 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98933, "longitude": -43.436909, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003454", "name": "ESTR. DOS BANDEIRANTES, 11460-11630 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989126, "longitude": -43.435108, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003455", "name": "ESTR. DOS BANDEIRANTES, 11460-11630 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989226, "longitude": -43.435108, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003456", "name": "ESTR. DOS BANDEIRANTES, 11.216- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988072, "longitude": -43.43391, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003457", "name": "ESTR. DOS BANDEIRANTES, 11.216- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988172, "longitude": -43.43391, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003458", "name": "ESTR. DOS BANDEIRANTES, 11059 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986507, "longitude": -43.432039, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003459", "name": "ESTR. DOS BANDEIRANTES, 11059 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986607, "longitude": -43.432039, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003461", "name": "ESTR. DOS BANDEIRANTES, 10915-10639 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985215, "longitude": -43.430104, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003475", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91215247, "longitude": -43.25217358, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003476", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91180907, "longitude": -43.25227149, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003477", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9113792, "longitude": -43.25252361, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003482", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90970906, "longitude": -43.25465061, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003483", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91000061, "longitude": -43.25404178, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003484", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9095559, "longitude": -43.25504493, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003485", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90930388, "longitude": -43.25554917, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003486", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90903705, "longitude": -43.25590322, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003491", "name": "R. DO CRUZEIRO, 10 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91959103, "longitude": -43.68381847, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003492", "name": "R. TERESA CRISTINA, 98 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91954902, "longitude": -43.68450924, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003494", "name": "R. TERESA CRISTINA, 62", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.47/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918241, "longitude": -43.68486803, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003495", "name": "R. MARINO DA COSTA, 725 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.810323, "longitude": -43.208662, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003496", "name": "RUA CAMBA\u00faBA, 875- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.49/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8119613, "longitude": -43.2084123, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003499", "name": "AV. ISABEL, 362 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.52/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92599, "longitude": -43.69024, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003501", "name": "ESTR. DOS BANDEIRANTES, 8484 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973995, "longitude": -43.414602, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003502", "name": "ESTR. DOS BANDEIRANTES, 8484 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.974186, "longitude": -43.414674, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003503", "name": "ESTR. DOS BANDEIRANTES X R. PEDRO CALMON - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.56/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.975027, "longitude": -43.415011, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003504", "name": "ESTR. DOS BANDEIRANTES X R. PEDRO CALMON - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.57/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.975183, "longitude": -43.415097, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003505", "name": "ESTR. DOS BANDEIRANTES, 8614 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.58/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97702, "longitude": -43.416811, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003506", "name": "ESTR. DOS BANDEIRANTES, 8614 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977121, "longitude": -43.416883, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003507", "name": "ESTR. DOS BANDEIRANTES, 275 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.60/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979051, "longitude": -43.419163, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003508", "name": "ESTR. DOS BANDEIRANTES, 275 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979023, "longitude": -43.419076, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003509", "name": "ESTR. DOS BANDEIRANTES, 9399-9133 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980016, "longitude": -43.422012, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003510", "name": "ESTR. DOS BANDEIRANTES, 9399-9133 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98, "longitude": -43.421971, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003511", "name": "ESTR. DOS BANDEIRANTES, 9799-9753 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98128, "longitude": -43.424169, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003512", "name": "ESTR. DOS BANDEIRANTES, 9799-9753 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981302, "longitude": -43.42419, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003513", "name": "ESTR. DOS BANDEIRANTES, 9860-9890 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.66/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982836, "longitude": -43.424606, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003514", "name": "ESTR. DOS BANDEIRANTES, 9860-9890 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.67/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982888, "longitude": -43.424616, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003515", "name": "ESTR. DOS BANDEIRANTES, 10567-10561 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.68/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985001, "longitude": -43.426804, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003516", "name": "ESTR. DOS BANDEIRANTES, 10567-10561 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.69/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985021, "longitude": -43.426894, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003517", "name": "ESTR. DOS BANDEIRANTES, 8462 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.70/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971562, "longitude": -43.413988, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003518", "name": "ESTR. DOS BANDEIRANTES, 8462 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.71/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971618, "longitude": -43.413996, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003527", "name": "ESTR. DO RIO JEQUI\u00e1, 1000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81943595, "longitude": -43.18271388, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003531", "name": "ESTR. DO RIO JEQUI\u00e1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.92/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.820521, "longitude": -43.179965, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003532", "name": "ESTR. DO RIO JEQUI\u00e1, 518 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82373241, "longitude": -43.17510943, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003533", "name": "ESTR. DO RIO JEQUI\u00e1, 501 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.96/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82010753, "longitude": -43.17842103, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003534", "name": "PRAIA DO JEQUI\u00e1, 3- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82541349, "longitude": -43.17240039, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003537", "name": "R. MALDONADO, 297 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.824728, "longitude": -43.169422, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003538", "name": "ESTR. DO RIO JEQUI\u00e1, 518", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82051363, "longitude": -43.17970018, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003539", "name": "PRAIA DO ZUMBI, 25 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.102/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82129583, "longitude": -43.17415738, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003540", "name": "R. MALDONADO, 46 - RIBEIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82544819, "longitude": -43.1718835, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003544", "name": "PRAIA DO ZUMBI, 5 - ZUMBI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82126943, "longitude": -43.17330718, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003545", "name": "R. FORMOSA DO ZUMB\u00ed, 183", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81992481, "longitude": -43.17766444, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003546", "name": "RUA FERNANDES DA FONSECA - RIBEIRA 7", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82538, "longitude": -43.169337, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003547", "name": "ESTR. DO RIO JEQUI\u00e1, 1118", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.819184, "longitude": -43.182904, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003548", "name": "MONUMENTO GENERAL OS\u00d3RIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902897, "longitude": -43.174804, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003549", "name": "MONUMENTO DOM JO\u00c3O VI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902244, "longitude": -43.172817, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003550", "name": "ESTR. DO RIO JEQUI\u00e1, 582 - ZUMBI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.818661, "longitude": -43.184914, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003559", "name": "ESTR. DO CACUIA 458 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.810752, "longitude": -43.186777, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003562", "name": "ESTR. VISC. DE LAMARE, 657", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.115/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81145373, "longitude": -43.18390909, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003563", "name": "ESTR. DA CACUIA, 745 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.116/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.811116, "longitude": -43.184515, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003564", "name": "AV. PRES. ANTONIO CARLOS X R. ARA\u00faJO PORTO ALEGRE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908099, "longitude": -43.172981, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003565", "name": "R. PRIMEIRO DE MAR\u00c7O X R. SETE DE SETEMBRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903397, "longitude": -43.175241, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003566", "name": "ESTR. DA CACUIA X R. MORAVIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.118/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80820096, "longitude": -43.18255613, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003567", "name": "RUA MORAVIA, 38", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.119/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80797853, "longitude": -43.18287491, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003568", "name": "PRAIA DA OLARIA X R. MAREANTE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.120/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80545516, "longitude": -43.18115732, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003569", "name": "AV. PARANAPUAM, 2326 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.121/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80302183, "longitude": -43.18173504, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003570", "name": "PARQUE POETA MANUEL BANDEIRA, S/N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.122/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80368271, "longitude": -43.1790265, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003571", "name": "PRAIA DA BANDEIRA, 726-728", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.123/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8044594, "longitude": -43.17912073, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003572", "name": "AV. PARANAPUAM, 2326", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.124/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80317637, "longitude": -43.18164117, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003573", "name": "RUA MAREANTE - (COCOT\u00e1)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.125/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8054, "longitude": -43.181298, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003574", "name": "AV. PASTOR MARTIN LUTHER KING JR. 5000", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.126/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.853477, "longitude": -43.313522, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003575", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 5000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.127/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854195, "longitude": -43.312727, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003576", "name": "AV. VICENTE DE CARVALHO, 1052", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.853229, "longitude": -43.313962, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003577", "name": "ESTR. DOS BANDEIRANTES, 5450 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96074053, "longitude": -43.39239367, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003578", "name": "ESTR. DOS BANDEIRANTES, 5450 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96058, "longitude": -43.39245, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003579", "name": "ESTR. DOS BANDEIRANTES, 5832 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9611289, "longitude": -43.3942711, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003580", "name": "ESTR. DOS BANDEIRANTES, 5832 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96104, "longitude": -43.39431, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003581", "name": "ESTR. DOS BANDEIRANTES, 5900 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96154411, "longitude": -43.39564416, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003582", "name": "ESTR. DOS BANDEIRANTES, 5900 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96137, "longitude": -43.39573, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003583", "name": "ESTR. DOS BANDEIRANTES, 5920 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96161, "longitude": -43.3967, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003584", "name": "ESTR. DOS BANDEIRANTES, 5920 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96177052, "longitude": -43.39664635, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003585", "name": "ESTR. DOS BANDEIRANTES, 6994 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96466, "longitude": -43.40665, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003586", "name": "ESTR. DOS BANDEIRANTES, 6994 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96453157, "longitude": -43.40630667, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003587", "name": "ESTR. DOS BANDEIRANTES, 7276 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96574, "longitude": -43.41043, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003588", "name": "ESTR. DOS BANDEIRANTES, 7276 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96587582, "longitude": -43.41036562, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003589", "name": "ESTR. DOS BANDEIRANTES, 7590 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96632, "longitude": -43.41186, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003590", "name": "ESTR. DOS BANDEIRANTES, 7590 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96642619, "longitude": -43.41177551, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003591", "name": "ESTR. DOS BANDEIRANTES, 7700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96753, "longitude": -43.41312, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003592", "name": "ESTR. DOS BANDEIRANTES, 7700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9676189, "longitude": -43.41295638, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003593", "name": "ESTR. DOS BANDEIRANTES, 8626 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97815308, "longitude": -43.41769977, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003594", "name": "ESTR. DOS BANDEIRANTES, 8626 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9782, "longitude": -43.41774, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003595", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 6388 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.851251, "longitude": -43.316807, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003596", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 6400", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.851014, "longitude": -43.317227, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003597", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X ESTR. CEL. VIEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.850445, "longitude": -43.318389, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003598", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X ESTR. CEL. VIEIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.850609, "longitude": -43.31805, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003599", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 6407 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.851316, "longitude": -43.317446, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003600", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X R. LU\u00edSA DE CARVALHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85113, "longitude": -43.317752, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003601", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X R. ENG. MARIO CARVALHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852564, "longitude": -43.315701, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003602", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X R. DONA MARIA ENFERMEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.170/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854227, "longitude": -43.313313, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003603", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X R. DONA MARIA ENFERMEIRA", "rtsp_url": "rtsp://admin2:7lanmstr@10.52.211.171/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854433, "longitude": -43.312986, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003604", "name": "ESTR. DOS TR\u00eaS RIOS X RUA GEMINIANO G\u00f3IS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93709, "longitude": -43.335415, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003605", "name": "ESTR. DOS TR\u00eaS RIOS X R. CMTE. RUBENS SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.937493, "longitude": -43.337169, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003611", "name": "ESTR. DOS TR\u00eaS RIOS, 961-875 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.937015, "longitude": -43.335859, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003612", "name": "ESTR. DOS TR\u00eaS RIOS, 920-998 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.936807, "longitude": -43.334757, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003613", "name": "ESTR. DOS TR\u00eaS RIOS, 873-697 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.937295, "longitude": -43.336612, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003616", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X RUA ITAPUCA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86402737, "longitude": -43.30732944, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003617", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X RUA ARC\u00e1DIA", "rtsp_url": "rtsp://admin2:7lanmstr@10.52.211.181/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.864895, "longitude": -43.30713, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003618", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 4221 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.866589, "longitude": -43.30606, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003619", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3839 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.183/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86671, "longitude": -43.30226, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003620", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3779", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.184/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86687, "longitude": -43.30165, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003622", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3401 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86794, "longitude": -43.29766, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003627", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.863936, "longitude": -43.306273, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003628", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.866739, "longitude": -43.305709, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003631", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 2113 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.873178, "longitude": -43.287599, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003632", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 2091 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.196/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.873479, "longitude": -43.287288, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003633", "name": "PRA\u00e7A ALM. JOS\u00e9 JOAQUIM IN\u00e1CIO, 1899 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.197/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.874549, "longitude": -43.286168, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003635", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 426 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87512, "longitude": -43.282725, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003636", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 126 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.875123, "longitude": -43.281622, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003637", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3416", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.867306, "longitude": -43.298537, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003638", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3480 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.202/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.867112, "longitude": -43.299277, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003639", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3844", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.203/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.868055, "longitude": -43.295751, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003640", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3838 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86827, "longitude": -43.29494, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003641", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.205/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86952, "longitude": -43.291093, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003642", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3525 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.870179, "longitude": -43.28998, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003644", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 1", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.208/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.873752, "longitude": -43.286157, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003645", "name": "ESTR. VELHA DA PAVUNA, 4982 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86573, "longitude": -43.30402, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003646", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR 4138 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.210/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86566, "longitude": -43.30442, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003647", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 7130 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.211/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.847653, "longitude": -43.323607, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003648", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 7337 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.212/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84734, "longitude": -43.32519, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003649", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 7225 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.213/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84806, "longitude": -43.3237, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003650", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 1020", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84734, "longitude": -43.3244, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003652", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 7249 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.216/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84779, "longitude": -43.32429, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003653", "name": "AV. PASTOR MARTIN LUTHER KING JUNIOR 74 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.217/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.874603, "longitude": -43.281488, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003654", "name": "AV. PASTOR MARTIN LUTHER KING JUNIOR 70", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.874771, "longitude": -43.280598, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003655", "name": "AV. PASTOR MARTIN LUTHER KING JUNIOR X R. CMTE. CLARE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.846218, "longitude": -43.327648, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003657", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 8046 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.843981, "longitude": -43.330452, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003659", "name": "ESTR. DOS TR\u00eaS RIOS X ESTR. DO BANANAL", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.936349, "longitude": -43.333114, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003660", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 7269 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86566, "longitude": -43.30442, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003661", "name": "ESTRADA DO COLEGIO 57 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842359, "longitude": -43.334886, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003662", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 9202 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839605, "longitude": -43.337488, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003663", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 9154 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839242, "longitude": -43.33762, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003664", "name": "AV. GENERAL C\u00e2NDIDO DA SILVA, 989 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.875543, "longitude": -43.279611, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003665", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 9652 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.228/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.835896, "longitude": -43.33968, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003666", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 9702 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.836304, "longitude": -43.339324, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003667", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 380 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.230/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83261, "longitude": -43.341671, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003668", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 1250 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.231/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.833056, "longitude": -43.341346, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003669", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 8395 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.843194, "longitude": -43.333895, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003670", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 8395 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.233/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.843126, "longitude": -43.333574, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003672", "name": "AV. PASTOR MARTIN LUTHER KING JR, 467 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.234/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82959, "longitude": -43.345181, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003673", "name": "AV. PASTOR MARTIN LUTHER KING JR, 7015 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.828781, "longitude": -43.345866, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003674", "name": "ESTR. DOS TR\u00eaS RIOS X ESTR. DO GUANUMBI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934194, "longitude": -43.328658, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003675", "name": "AV. PASTOR MARTIN LUTHER KING JR, 4333 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.236/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87623113, "longitude": -43.27603775, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003676", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR , ALT. SHOP. NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.237/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87835657, "longitude": -43.27338113, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003677", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 4806-4878", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.864583, "longitude": -43.305901, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003678", "name": "AV. GEREM\u00e1RIO DANTAS, 1421", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.939825, "longitude": -43.343887, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003679", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR , ALT. SHOP. NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879834, "longitude": -43.27039, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003680", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR , ALT. SHOP. NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87977851, "longitude": -43.27031325, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003681", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR , ALT. SHOP. NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879838, "longitude": -43.270106, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003682", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR , ALT. SHOP. NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87945816, "longitude": -43.27107526, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003683", "name": "ESTRADA EM\u00edLIO MAURELL FILHO 1900 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.880385, "longitude": -43.269244, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003684", "name": "AV. PASTOR MARTIN LUTHER KING JR. 10972 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82725, "longitude": -43.34717, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003685", "name": "AV. PASTOR MARTIN LUTHER KING JR., 10974 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.826941, "longitude": -43.34739, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003686", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 1335 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842324, "longitude": -43.335184, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003687", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, ALT. METRO NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.247/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87944602, "longitude": -43.27191215, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003688", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, ALT. METRO NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.248/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87924338, "longitude": -43.27238555, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003689", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, ALT. METRO NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.249/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87632239, "longitude": -43.2759797, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003690", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, ALT. METRO NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.250/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87816593, "longitude": -43.2736891, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003692", "name": "AV. PASTOR MARTIN LUTHER KING JR.,11046 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.252/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82467, "longitude": -43.34936, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003693", "name": "AV. PASTOR MARTIN LUTHER KING JR.,11165 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.253/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.824918, "longitude": -43.349764, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003694", "name": "ESTR. DOS TR\u00eaS RIOS X RUA XING\u00fa", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93886, "longitude": -43.340906, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003695", "name": "AV. NOSSA SRA. DE COPACABANA X R BELFORT ROXO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96469202, "longitude": -43.17592198, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003696", "name": "AV. ATL\u00e2NTICA X R. RODOLFO DANTAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96749614, "longitude": -43.17836992, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003698", "name": "ESTR. DO GALE\u00e3O - BASE A\u00e9REA ILHA - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82896186, "longitude": -43.23560302, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003699", "name": "AV. ATL\u00e2NTICA X REP. DO PERU", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.187/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968898, "longitude": -43.180944, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003701", "name": "AV. NIEMEYER PROX. HOTEL NACIONAL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.181/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99834617, "longitude": -43.25616871, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003702", "name": "AV. LUCIO COSTA X AV. DO CONTORNO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02229573, "longitude": -43.44721846, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003703", "name": "AV. L\u00faCIO COSTA, 16.000", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02496997, "longitude": -43.45719857, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003708", "name": "R. DOMINGUES LOPES X R. QUAXIMA - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.208.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.878911, "longitude": -43.341199, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003709", "name": "R. DOMINGUES LOPES X R. QUAXIMA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87904444, "longitude": -43.34125934, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003710", "name": "R. QUAXIMA X PAULO PORTELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879044, "longitude": -43.337069, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003711", "name": "R. QUAXIMA X PAULO PORTELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87902423, "longitude": -43.33692281, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003712", "name": "AV. ERNANI CARDOSO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882895, "longitude": -43.341249, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003713", "name": "AV. ERNANI CARDOSO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.210/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88292094, "longitude": -43.34137238, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003714", "name": "RUA MARIA JOS\u00e9, 318 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.211/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.880237, "longitude": -43.344752, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003715", "name": "RUA MARIA JOS\u00e9, 318 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.212/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8801851, "longitude": -43.34449987, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003716", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.213/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882794, "longitude": -43.345176, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003717", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88291137, "longitude": -43.34499495, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003718", "name": "R. PINTO TELES, 1307 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.234/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.883566, "longitude": -43.35647, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003719", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88085876, "longitude": -43.35315488, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003720", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.236/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88078091, "longitude": -43.35325143, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003721", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.237/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88077596, "longitude": -43.3534137, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003722", "name": "RUA MARIA JOS\u00e9, 987 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879379, "longitude": -43.351638, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003723", "name": "RUA MARIA JOS\u00e9, 987 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87929497, "longitude": -43.35161386, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003724", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES, 323-297 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881944, "longitude": -43.350054, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003725", "name": "AV. ERNANI CARDOSO, 371-361", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882715, "longitude": -43.339471, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003726", "name": "AV. ERNANI CARDOSO, 371-361 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.216/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88273229, "longitude": -43.33935834, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003727", "name": "AV. ERNANI CARDOSO, 371-361 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.217/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88276935, "longitude": -43.33965606, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003728", "name": "AV. ERNANI CARDOSO, 240 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88242834, "longitude": -43.3356408, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003729", "name": "AV. ERNANI CARDOSO, 240 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88244811, "longitude": -43.33545841, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003730", "name": "AV. ERNANI CARDOSO, 240", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.220/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88247282, "longitude": -43.33598949, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003731", "name": "AV. ERNANI CARDOSO, 190 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8823184, "longitude": -43.33441852, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003732", "name": "AV. ERNANI CARDOSO, 190 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.222/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882353, "longitude": -43.334558, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003733", "name": "AV. ERNANI CARDOSO, 154 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88220252, "longitude": -43.33333844, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003734", "name": "AV. ERNANI CARDOSO, 154 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88218522, "longitude": -43.333207, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003735", "name": "R. CANDIDO BENICIO X ESTRADA INTENDENTE MAGALH\u00e3ES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88311445, "longitude": -43.34257344, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003736", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES, 323-297 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88198848, "longitude": -43.34990379, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003737", "name": "RUA C\u00e2NDIDO BEN\u00edCIO ALT. BRT - PINTO TELES", "rtsp_url": "rtsp://admin:7lanmstr@10.152.24.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88803522, "longitude": -43.34563638, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003738", "name": "AV. VIEIRA SOUTO X R. RAINHA ELIZABETH - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98696236, "longitude": -43.19769346, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003742", "name": "PRA\u00e7A WALDIR VIEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.75/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91231, "longitude": -43.388107, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003743", "name": "PRA\u00e7A WALDIR VIEIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912245, "longitude": -43.388554, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003744", "name": "PRA\u00e7A WALDIR VIEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.79/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912285, "longitude": -43.387257, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003745", "name": "PRA\u00e7A WALDIR VIEIRA", "rtsp_url": "rtsp://admin:123smart@10.50.106.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911377, "longitude": -43.387924, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003746", "name": "R. MARQU\u00caS DE ABRANTES X ALTURA DA P.DE BOTAFOGO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94083003, "longitude": -43.17871437, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003747", "name": "AV. D. HELDER C\u00e2MARA X R. HENRIQUE SCHEID", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88683421, "longitude": -43.28773303, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003748", "name": "RUA REINALDO MATOS REIS, 10 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.172/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88609403, "longitude": -43.28884014, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003749", "name": "RUA REINALDO MATOS REIS, 10 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.173/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.886162, "longitude": -43.28893, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003750", "name": "AV. DOM H\u00e9LDER C\u00e2MARA X ALTURA LINHA AMARELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.216/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.884748, "longitude": -43.29071, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003751", "name": "AV. DOM H\u00e9LDER C\u00e2MARA X ALTURA LINHA AMARELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.99/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88484684, "longitude": -43.29069927, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003752", "name": "R. JOS\u00e9 DOS REIS, 1788 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881509, "longitude": -43.287155, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003753", "name": "R. JOS\u00e9 DOS REIS, 1788 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.217/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88151888, "longitude": -43.28726228, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003754", "name": "AV. DOM H\u00e9LDER C\u00e2MARA X R. VASCO DA GAMA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.220/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887605, "longitude": -43.282868, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003755", "name": "AV. DOM H\u00e9LDER C\u00e2MARA X R. VASCO DA GAMA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88765442, "longitude": -43.28281972, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003756", "name": "AV. DOM H\u00e9LDER C\u00e2MARA 7000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.234/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882797, "longitude": -43.296028, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003757", "name": "AV. DOM H\u00e9LDER C\u00e2MARA 7000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88275869, "longitude": -43.29597301, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003758", "name": "RUA GOI\u00e1S X RUA GUILHERMINA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.177/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895303, "longitude": -43.301011, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003759", "name": "RUA GOI\u00e1S X RUA GUILHERMINA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89532, "longitude": -43.30093, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003761", "name": "RUA GUILHERMINA X RUA JOS\u00e9 DOMINGUES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89393875, "longitude": -43.30111216, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003762", "name": "R. GUILHERMINA, 239 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.230/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892897, "longitude": -43.301058, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003763", "name": "R. GUILHERMINA, 239 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89295012, "longitude": -43.30100837, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003764", "name": "RUA GOI\u00e1S X RUA SILVANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.233/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892656, "longitude": -43.306341, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003765", "name": "RUA GOI\u00e1S X RUA SILVANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89270047, "longitude": -43.30625248, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003766", "name": "AV. DOM H\u00e9LDER C\u00e2MARA 7765 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.886123, "longitude": -43.302425, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003767", "name": "AV. DOM H\u00e9LDER C\u00e2MARA 7765 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88616253, "longitude": -43.30249741, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003768", "name": "AV. DELFIM MOREIRA X R. BARTOLOMEU MITRE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.120/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98688031, "longitude": -43.22237263, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003769", "name": "AV. DELFIM MOREIRA X R. BARTOLOMEU MITRE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.122/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98708897, "longitude": -43.22247322, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003774", "name": "RUA HENRIQUE SCHEID, N\u00ba 580", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.79/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88724442, "longitude": -43.2880453, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003775", "name": "RUA HENRIQUE SCHEID, 294 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88938432, "longitude": -43.28981555, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003776", "name": "RUA HENRIQUE SCHEID, N\u00ba 294 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.78/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88932625, "longitude": -43.28976592, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003777", "name": "PASSARELA ENGENH\u00e3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895152, "longitude": -43.295265, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003778", "name": "PASSARELA ENGENH\u00e3O - PORT\u00e3O ALA SUL - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8950692, "longitude": -43.29262032, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003779", "name": "PASSARELA ENGENH\u00e3O - PORT\u00e3O ALA SUL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89506056, "longitude": -43.29283759, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003780", "name": "PASSARELA ENGENH\u00e3O - PORT\u00e3O ALA SUL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.75/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89506179, "longitude": -43.29296365, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003781", "name": "AV. DOM H\u00e9LDER C\u00e2MARA X ALTURA LINHA AMARELA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88480236, "longitude": -43.29061612, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003782", "name": "R. DR. PADILHA - ENGENH\u00e3O PORT\u00e3O LESTE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.51/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89427446, "longitude": -43.29014248, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003783", "name": "RUA REINALDO MATOS REI,10", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88620523, "longitude": -43.28879454, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003784", "name": "ESTRADA DO LAMEIR\u00e3O X ESTRADA DA POSSE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.875651, "longitude": -43.526372, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003785", "name": "AV. L\u00faCIO COSTA, 5800", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.94/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.010475, "longitude": -43.355403, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003786", "name": "ESTR. DA PEDRA - ALT. BRT CURRAL FALSO", "rtsp_url": "rtsp://admin:7lanmstr@10.151.32.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93704754, "longitude": -43.66696519, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003788", "name": "AV. DELFIM MOREIRA X R. BARTOLOMEU MITRE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.123/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98725686, "longitude": -43.22228008, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003791", "name": "AV. PASTOR MARTIN LUTHER KING JUNIOR, 4036 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86590855, "longitude": -43.30193277, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003792", "name": "ESTRADA ADHEMAR BEBIANO, 4797 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86586, "longitude": -43.30188, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003793", "name": "ESTRADA ADHEMAR BEBIANO 4835", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86582539, "longitude": -43.30217638, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003794", "name": "AV. MARACAN\u00e3, 160 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91315088, "longitude": -43.2272154, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003795", "name": "PRA\u00e7A SIB\u00e9LUIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97840648, "longitude": -43.22674309, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003796", "name": "PRA\u00e7A SIB\u00e9LUIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.185/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97844231, "longitude": -43.22659423, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003797", "name": "AV. MARACAN\u00e3 X RUA MARECHAL TROMPOWSKI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.936171, "longitude": -43.245977, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003798", "name": "MONUMENTO ALDIR BLANC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93622657, "longitude": -43.24591235, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003799", "name": "RUA VISCONDE DO RIO BRANCO X RUA DO LAVRADIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90784288, "longitude": -43.18424019, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003800", "name": "RUA VISCONDE DO RIO BRANCO X RUA DO LAVRADIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.137/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90785152, "longitude": -43.18407254, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003801", "name": "RUA VISCONDE DO RIO BRANCO X RUA DO LAVRADIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.138/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90773785, "longitude": -43.18412619, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003802", "name": "R. RIO GRANDE DO SUL X R. ARISTIDES CAIRE - M\u00e9IER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.898427, "longitude": -43.277293, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003803", "name": "R. RIO GRANDE DO SUL X R. ARISTIDES CAIRE - M\u00e9IER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.898553, "longitude": -43.277564, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003804", "name": "ESTR. DOS BANDEIRANTES, 802 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.930285, "longitude": -43.373434, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003805", "name": "ESTR. DOS BANDEIRANTES, 802 - FIXA", "rtsp_url": "rtsp://admin:7lansmtr@10.50.106.60/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93050732, "longitude": -43.37338572, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003806", "name": "AV. BRASIL X ESTA\u00e7\u00e3O PARADA DE LUCAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.92/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81607381, "longitude": -43.3009009, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003807", "name": "AV. BRASIL X ESTA\u00e7\u00e3O PARADA DE LUCAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81601941, "longitude": -43.30109938, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003808", "name": "MONUMENTO DOM JO\u00c3O VI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90229465, "longitude": -43.17296049, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003809", "name": "AV. CES\u00e1RIO DE MELO, 986 X RUA SENHORA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89632, "longitude": -43.546808, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003810", "name": "AV. CES\u00e1RIO DE MELO, 776 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895439, "longitude": -43.544651, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003811", "name": "AV. CES\u00e1RIO DE MELO, 677 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894786, "longitude": -43.543746, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003812", "name": "R. PRAC. EL\u00edDIO MARTINS, 451 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894425, "longitude": -43.54197, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003813", "name": "AV. CES\u00e1RIO DE MELO, 276 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893709, "longitude": -43.540378, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003814", "name": "AV. CES\u00e1RIO DE MELO, 276 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89327411, "longitude": -43.53955187, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003815", "name": "AV. JOAQUIM MAGALH\u00e3ES, 45 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89308631, "longitude": -43.53830732, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003816", "name": "AV. JOAQUIM MAGALH\u00e3ES, 1240 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8929677, "longitude": -43.53791303, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003817", "name": "AV. JOAQUIM MAGALH\u00e3ES, 985 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89154196, "longitude": -43.53637075, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003818", "name": "AV. CES\u00e1RIO DE MELO, 3393 X BRT C\u00e2NDIDO MAGALH\u00e3ES", "rtsp_url": "rtsp://admin:7lanmstr@10.151.55.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90771405, "longitude": -43.56433403, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003819", "name": "AV. CES\u00e1RIO DE MELO, 4158 X BRT PARQUE ESPERAN\u00e7A", "rtsp_url": "rtsp://admin:7lanmstr@10.151.54.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90678137, "longitude": -43.57211049, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003820", "name": "AV. JOAQUIM MAGALH\u00e3ES, 521 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890583, "longitude": -43.534361, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003821", "name": "AV. JOAQUIM MAGALH\u00e3ES, 495 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89117, "longitude": -43.53269, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003822", "name": "AV. JOAQUIM MAGALH\u00e3ES, 272 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891465, "longitude": -43.531213, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003823", "name": "AV. JOAQUIM MAGALH\u00e3ES, 180 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891842, "longitude": -43.529575, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003824", "name": "AV. JOAQUIM MAGALH\u00e3ES, 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89216675, "longitude": -43.52918524, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003826", "name": "R. JOAQUIM SILVA, 93 X ESCADARIA SELAR\u00f3N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915195, "longitude": -43.179095, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003827", "name": "R. JOAQUIM SILVA, 93 X ESCADARIA SELAR\u00f3N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91513446, "longitude": -43.17897429, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003828", "name": "R. JOAQUIM SILVA,93 X ESCADARIA SELARON", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91526788, "longitude": -43.17904135, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003829", "name": "AV. MEM DE S\u00e1, 30 - ARCOS DA LAPA | AQUEDUTO DA CARIOCA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91315888, "longitude": -43.1799138, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003830", "name": "AV. PASTEUR X R. RAMON FRANCO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954387, "longitude": -43.167437, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003831", "name": "AV. PASTEUR X R. RAMON FRANCO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95442034, "longitude": -43.16750941, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003832", "name": "AV. PASTEUR X R. RAMON FRANCO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95446232, "longitude": -43.16744503, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003833", "name": "AV. PASTEUR ALT. PRA\u00e7A GENERAL TIB\u00faRCIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95437579, "longitude": -43.16656111, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003834", "name": "AV. PASTEUR ALT. PRA\u00e7A GENERAL TIB\u00faRCIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95444247, "longitude": -43.16659597, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003835", "name": "AV. PASTEUR ALT. PRA\u00e7A GENERAL TIB\u00faRCIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95444741, "longitude": -43.16647796, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003836", "name": "ESTR. DOS BANDEIRANTES, 24499 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97725042, "longitude": -43.49738505, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003837", "name": "ESTR. DOS BANDEIRANTES, 24499 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977285, "longitude": -43.497318, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003838", "name": "ESTR. DOS BANDEIRANTES, 24160 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976372, "longitude": -43.494885, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003839", "name": "ESTR. DOS BANDEIRANTES, 24160 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97635841, "longitude": -43.49478441, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003840", "name": "ESTR. DOS BANDEIRANTES, 24179 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97664, "longitude": -43.495579, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003841", "name": "ESTR. DOS BANDEIRANTES, 24179 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97663629, "longitude": -43.49565543, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003842", "name": "ESTR. DOS BANDEIRANTES, 25121 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977513, "longitude": -43.499562, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003843", "name": "ESTR. DOS BANDEIRANTES, 25121 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97749571, "longitude": -43.49965319, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003844", "name": "PRA\u00e7A ITAPEVI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90227, "longitude": -43.293289, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003845", "name": "PRA\u00e7A ITAPEVI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902275, "longitude": -43.293229, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003846", "name": "PRA\u00e7A ITAPEVI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902568, "longitude": -43.293274, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003847", "name": "R. DIAS DA CRUZ X R. JURUNAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904732, "longitude": -43.294165, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003848", "name": "ESTR. DOS BANDEIRANTES, 25422-25636 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97847111, "longitude": -43.50243195, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003849", "name": "ESTR. DOS BANDEIRANTES, 25422-25636 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97864396, "longitude": -43.50239171, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003850", "name": "ESTR. DOS BANDEIRANTES, 25422-25636 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979256, "longitude": -43.504892, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003851", "name": "ESTR. DOS BANDEIRANTES, 25422-25636 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.39/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97936465, "longitude": -43.50489199, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003938", "name": "ESTR. DOS BANDEIRANTES, 25139-25135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.40/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976899, "longitude": -43.493689, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003939", "name": "ESTR. DOS BANDEIRANTES, 25139-25135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.41/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9768422, "longitude": -43.49364608, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003977", "name": "RUA CONDE DE BONFIM, 1301 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.196/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.945313, "longitude": -43.254429, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003978", "name": "RUA CONDE DE BONFIM, 1331 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94618134, "longitude": -43.25534062, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003979", "name": "RUA CONDE DE BONFIM, 1310-1382 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.67/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94627, "longitude": -43.25563, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003980", "name": "R. CONDE DE BONFIM 301 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92336, "longitude": -43.2311, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003981", "name": "R. CONDE DE BONFIM 297 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92319695, "longitude": -43.23089346, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003982", "name": "RUA CONDE DE BONFIM, 1181 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.66/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94241, "longitude": -43.253189, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003983", "name": "RUA CONDE DE BONFIM, 1142 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.941553, "longitude": -43.252377, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003984", "name": "RUA CONDE DE BONFIM, 1084 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94074, "longitude": -43.25037, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003985", "name": "RUA CONDE DE BONFIM, 1052 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.940351, "longitude": -43.249538, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003986", "name": "ESTR. DOS BANDEIRANTES, 23487 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.49/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97924223, "longitude": -43.49189917, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003987", "name": "ESTR. DOS BANDEIRANTES, 23487 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97925766, "longitude": -43.49188575, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003988", "name": "ESTR. DOS BANDEIRANTES, 23551 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.51/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9797631, "longitude": -43.49149269, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003989", "name": "ESTR. DOS BANDEIRANTES, 23551 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.52/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97982545, "longitude": -43.49144978, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003990", "name": "ESTR. DOS BANDEIRANTES, 23436 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.53/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980666, "longitude": -43.490926, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003991", "name": "ESTR. DOS BANDEIRANTES, 23488 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98078361, "longitude": -43.49090593, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003992", "name": "RUA CONDE DE BONFIM, 815 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.935369, "longitude": -43.243638, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003993", "name": "ESTR. DOS BANDEIRANTES, 24051 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981798, "longitude": -43.490435, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003994", "name": "ESTR. DOS BANDEIRANTES, 24051 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.56/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98188689, "longitude": -43.49037062, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003995", "name": "RUA CONDE DE BONFIM, 773 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.126/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934289, "longitude": -43.242612, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003996", "name": "RUA CONDE DE BONFIM, 743 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.127/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933515, "longitude": -43.241798, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003997", "name": "RUA CONDE DE BONFIM, 703-697 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.932398, "longitude": -43.240868, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003998", "name": "RUA CONDE DE BONFIM, 685 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.932264, "longitude": -43.240329, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "003999", "name": "RUA CONDE DE BONFIM, 665 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931959, "longitude": -43.239685, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004000", "name": "ESTR. DOS BANDEIRANTES, 26825 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.57/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99050202, "longitude": -43.50300436, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004001", "name": "ESTR. DOS BANDEIRANTES, 26825 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.58/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99060325, "longitude": -43.50299363, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004002", "name": "ESTR. DOS BANDEIRANTES, 22975 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9829366, "longitude": -43.48981803, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004003", "name": "ESTR. DOS BANDEIRANTES, 22975 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.60/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982865, "longitude": -43.489869, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004004", "name": "R. CONDE DE BONFIM 610 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93088, "longitude": -43.2383, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004005", "name": "RUA CONDE DE BONFIM, 425 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.212/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925821, "longitude": -43.234967, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004006", "name": "RUA CONDE DE BONFIM, 422 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.213/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92529, "longitude": -43.234645, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004007", "name": "RUA CONDE DE BONFIM, 529 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9287197, "longitude": -43.2366668, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004008", "name": "R. CONDE DE BONFIM 302 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9233627, "longitude": -43.2316941, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004009", "name": "ESTR. DOS BANDEIRANTES, 27629 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.991441, "longitude": -43.504588, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004010", "name": "ESTR. DOS BANDEIRANTES, 27629 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99145458, "longitude": -43.50448674, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004011", "name": "ESTR. DOS BANDEIRANTES, 26971 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989425, "longitude": -43.503284, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004012", "name": "ESTR. DOS BANDEIRANTES, 26971 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98952994, "longitude": -43.50326254, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004013", "name": "ESTR. DOS BANDEIRANTES, 27596 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.66/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99239351, "longitude": -43.50620294, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004014", "name": "ESTR. DOS BANDEIRANTES, 27596 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.67/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99231633, "longitude": -43.5061466, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004015", "name": "ESTRADA DO GUERENGU\u00ea, 2 X ESTRADA DOS BANDEIRANTES - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931525, "longitude": -43.373296, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004016", "name": "ESTRADA DO GUERENGU\u00ea, 2 X ESTRADA DOS BANDEIRANTES - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93163492, "longitude": -43.3733483, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004017", "name": "ESTR. DOS BANDEIRANTES, 1000 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.183/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93259, "longitude": -43.37315, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004018", "name": "ESTR. DOS BANDEIRANTES, 1000 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.190/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93270115, "longitude": -43.37316877, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004019", "name": "ESTR. DOS BANDEIRANTES, 1296 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934661, "longitude": -43.372361, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004020", "name": "ESTR. DOS BANDEIRANTES, 1296 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93472151, "longitude": -43.37233686, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004021", "name": "ESTR. DOS BANDEIRANTES, 1458 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93668, "longitude": -43.37202, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004022", "name": "ESTR. DOS BANDEIRANTES, 1458 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93654414, "longitude": -43.37197976, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004023", "name": "AV. BRASIL, ALT. BRT IGREJINHA - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.32.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.889377, "longitude": -43.219613, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004024", "name": "AV. BRASIL, ALT. BRT IGREJINHA - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.32.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88939676, "longitude": -43.21918384, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004025", "name": "AV. BRASIL, ALT. BRT IGREJINHA", "rtsp_url": "rtsp://admin:123smart@10.52.32.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88919907, "longitude": -43.2202299, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004026", "name": "ESTR. DOS BANDEIRANTES, 2091 - FIXA", "rtsp_url": "rtsp://user:123smart@10.50.106.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94434258, "longitude": -43.37199311, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004027", "name": "ESTR. DOS BANDEIRANTES, 2091 - FIXA", "rtsp_url": "rtsp://user:123smart@10.50.106.217/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94420055, "longitude": -43.3720159, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004028", "name": "ESTR. DOS BANDEIRANTES, 2508 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94611973, "longitude": -43.37201321, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004029", "name": "ESTR. DOS BANDEIRANTES, 2508 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94624569, "longitude": -43.37200516, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004030", "name": "AV. DE SANTA CRUZ, 12055 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892837, "longitude": -43.529942, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004031", "name": "AV. DE SANTA CRUZ, 12055 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.74/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89282217, "longitude": -43.5301673, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004032", "name": "ESTR. DOS BANDEIRANTES, 2593 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.220/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.948442, "longitude": -43.372597, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004033", "name": "ESTR. DOS BANDEIRANTES, 2593 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94857043, "longitude": -43.37263991, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004034", "name": "AV. DE SANTA CRUZ, 12457 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.75/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894063, "longitude": -43.53368, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004035", "name": "ESTR. DOS BANDEIRANTES, 2830 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.222/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949112, "longitude": -43.372807, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004036", "name": "ESTR. DOS BANDEIRANTES, 2830 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94919844, "longitude": -43.37284723, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004037", "name": "ESTR. DOS BANDEIRANTES, 2856 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949265, "longitude": -43.372846, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004038", "name": "ESTR. DOS BANDEIRANTES, 2856 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94941319, "longitude": -43.37291573, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004039", "name": "ESTR. DO PR\u00e9, 13 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894384, "longitude": -43.534168, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004040", "name": "ESTR. DO PR\u00e9, 13 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89444083, "longitude": -43.53428065, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004041", "name": "R. ARTUR RIOS, 50 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.228/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894471, "longitude": -43.536556, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004042", "name": "R. ARTUR RIOS, 50 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89457972, "longitude": -43.53667938, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004043", "name": "ESTR. DOS BANDEIRANTES, 3786 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951027, "longitude": -43.373808, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004044", "name": "ESTR. DOS BANDEIRANTES, 3786 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95117025, "longitude": -43.37392065, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004045", "name": "ESTR. DOS BANDEIRANTES, 3458 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951833, "longitude": -43.3745, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004046", "name": "ESTR. DOS BANDEIRANTES, 3458 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95207998, "longitude": -43.37463947, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004047", "name": "ESTR. DOS BANDEIRANTES, 3329 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.251/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952327, "longitude": -43.374806, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004048", "name": "ESTR. DOS BANDEIRANTES, 3329 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95254434, "longitude": -43.37493474, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004049", "name": "ESTR. DO MONTEIRO 648 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.230/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921626, "longitude": -43.563778, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004050", "name": "ESTR. DO MONTEIRO 636-664 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.231/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921698, "longitude": -43.56387, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004051", "name": "ESTR. DO MONTEIRO, 930 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923681, "longitude": -43.567533, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004052", "name": "ESTR. DO MONTEIRO, 670 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.233/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925033, "longitude": -43.570476, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004053", "name": "ESTR. DO MONTEIRO, 1070 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.234/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.926151, "longitude": -43.571625, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004054", "name": "ESTR. DO MONTEIRO, 1119 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.927637, "longitude": -43.572492, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004055", "name": "ESTR. DO MONTEIRO, 2 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.236/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92879, "longitude": -43.573596, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004056", "name": "ESTR. DO MONTEIRO, 1317 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.237/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93073, "longitude": -43.57411, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004057", "name": "ESTRADA DO MONTEIRO 1500 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.932809, "longitude": -43.574929, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004058", "name": "ESTR. DO MONTEIRO ALT. PARK SHOPPING", "rtsp_url": "rtsp://admin:123smart@10.52.216.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92752954, "longitude": -43.57236056, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004059", "name": "ESTR. DO MONTEIRO, 567 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920325, "longitude": -43.563067, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004060", "name": "ESTR. DO MONTEIRO, 519 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918806, "longitude": -43.563246, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004061", "name": "ESTR. DO MONTEIRO, 430 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916629, "longitude": -43.563665, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004062", "name": "ESTR. DO MONTEIRO, 206 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91203711, "longitude": -43.56481739, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004063", "name": "ESTR. DO MONTEIRO, 206 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9121137, "longitude": -43.56476241, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004064", "name": "AV. BRASIL, ALT. BRT INTO - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.30.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89585, "longitude": -43.214835, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004065", "name": "AV. BRASIL, ALT. BRT INTO - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.30.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8960872, "longitude": -43.21459896, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004066", "name": "ESTR. DOS BANDEIRANTES, 3300 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.172/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953559, "longitude": -43.375731, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004067", "name": "ESTR. DOS BANDEIRANTES, 3300 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.173/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95363432, "longitude": -43.37574306, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004068", "name": "ESTR. DOS BANDEIRANTES, 3586 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.174/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954336, "longitude": -43.376221, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004069", "name": "ESTR. DOS BANDEIRANTES, 3586 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95437057, "longitude": -43.37625855, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004070", "name": "ESTR. DOS BANDEIRANTES, 3917-3961 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955249, "longitude": -43.377613, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004071", "name": "ESTR. DOS BANDEIRANTES, 3917-3961 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.177/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95529222, "longitude": -43.37765993, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004072", "name": "ESTR. DOS BANDEIRANTES, 3914 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.178/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95629, "longitude": -43.378832, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004073", "name": "ESTR. DOS BANDEIRANTES, 3914 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.179/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95632704, "longitude": -43.37888564, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004074", "name": "ESTR. DOS BANDEIRANTES, 4148 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957668, "longitude": -43.380737, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004075", "name": "ESTR. DOS BANDEIRANTES, 4148 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95775444, "longitude": -43.38084965, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004076", "name": "ESTR. DOS BANDEIRANTES, 5148 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96, "longitude": -43.38998, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004077", "name": "ESTR. DOS BANDEIRANTES, 5148 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96002716, "longitude": -43.39007119, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004078", "name": "ESTR. DOS BANDEIRANTES, 4926 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95945418, "longitude": -43.38767865, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004079", "name": "ESTR. DOS BANDEIRANTES, 4926 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95950357, "longitude": -43.38790395, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004080", "name": "ESTR. DOS BANDEIRANTES, 1902 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.940676, "longitude": -43.372824, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004081", "name": "ESTR. DOS BANDEIRANTES, 1902 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94057473, "longitude": -43.37282668, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004082", "name": "ESTR. DOS BANDEIRANTES, 1700 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.939767, "longitude": -43.372813, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004083", "name": "ESTR. DOS BANDEIRANTES, 1700 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93990038, "longitude": -43.37277813, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004084", "name": "ESTR. DOS BANDEIRANTES, 1540 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.937721, "longitude": -43.372344, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004085", "name": "ESTR. DOS BANDEIRANTES, 1540 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93779016, "longitude": -43.3723735, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004086", "name": "ESTR. DOS BANDEIRANTES, 4666 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.959139, "longitude": -43.386255, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004087", "name": "ESTR. DOS BANDEIRANTES, 4666 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95907972, "longitude": -43.38609406, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004088", "name": "ESTR. DOS BANDEIRANTES, 4722 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.170/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958604, "longitude": -43.384327, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004089", "name": "ESTR. DO MONTEIRO, 11 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91426413, "longitude": -43.5632458, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004090", "name": "ESTR. DO MONTEIRO, 101 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910055, "longitude": -43.566089, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004092", "name": "AV. ATL\u00e2NTICA, 22 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.31.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.966379, "longitude": -43.17618, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004093", "name": "AV. ATL\u00e2NTICA, 22 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.31.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96634689, "longitude": -43.17610221, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004098", "name": "LARGO ALUNO HOR\u00e1CIO LUCAS X RUA LUIZ GAMA - BAR DOS CHICOS", "rtsp_url": "rtsp://admin:123smart@10.50.224.11/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915384, "longitude": -43.226567, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004099", "name": "AV. AYRTON SENNA, 5850 - EM FRENTE AO ESPA\u00c7O HALL", "rtsp_url": "rtsp://admin:123smart@10.50.106.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96025712, "longitude": -43.35735218, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004100", "name": "AV. ATL\u00c2NTICA, 22 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.47/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96694167, "longitude": -43.17722478, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004101", "name": "AV. ATL\u00c2NTICA, 7 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.967521, "longitude": -43.178236, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004102", "name": "AV. ATL\u00c2NTICA, 7 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.49/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96749136, "longitude": -43.17817565, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004103", "name": "AV. ATL\u00c2NTICA, 1702", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9677873, "longitude": -43.1787878, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004104", "name": "AV. ATL\u00c2NTICA X R. DUVIVIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.966889, "longitude": -43.177194, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004105", "name": "PRA\u00e7A CARDEAL ARCOVERDE, 190", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964632, "longitude": -43.180141, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004106", "name": "LADEIRA DO LEME, 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964417, "longitude": -43.180257, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004107", "name": "R. TONELERO, 36", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964655, "longitude": -43.180979, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004108", "name": "ESTR. DOS BANDEIRANTES, 21629 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.208.249/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987583, "longitude": -43.47997, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004109", "name": "ESTR. DOS BANDEIRANTES, 21629 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.250/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98760644, "longitude": -43.4800471, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004110", "name": "R. DOM PEDRITO, 158 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90359653, "longitude": -43.57273545, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004111", "name": "R. DOM PEDRITO, 163 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903927, "longitude": -43.572717, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004112", "name": "R. DOM PEDRITO, 200", "rtsp_url": "rtsp://admin:123smart@10.52.216.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904379, "longitude": -43.572908, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004113", "name": "R. TAQUAREMBO, 234 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903552, "longitude": -43.573556, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004114", "name": "R. COXILHA X R. CAMPO GRANDE", "rtsp_url": "rtsp://admin:123smart@10.52.216.77/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904451, "longitude": -43.573627, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004115", "name": "R. COXILHA, 60 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90381201, "longitude": -43.57356194, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004116", "name": "ESTR. DO MENDANHA, 3053-3011 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.866843, "longitude": -43.552967, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004118", "name": "AV. NIEMEYER, 393", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99931595, "longitude": -43.24774696, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004119", "name": "AV. PRES. VARGAS ALT. CORREIOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90919052, "longitude": -43.20283578, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004120", "name": "R. FREI CANECA 8-40, HEMORIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90927359, "longitude": -43.18937921, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004121", "name": "AV. NIEMEYER, 72", "rtsp_url": "rtsp://admin:123smart@10.52.37.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99078853, "longitude": -43.22938085, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004122", "name": "RUA S\u00e3O CLEMENTE, 345", "rtsp_url": "rtsp://admin:123smart@10.52.11.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9512505, "longitude": -43.1938351, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004123", "name": "AV. NIEMEYER, 121", "rtsp_url": "rtsp://admin:123smart@10.52.37.207/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992, "longitude": -43.233611, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004124", "name": "RUA S\u00c3O JANU\u00c1RIO X R. DO BONFIM", "rtsp_url": "rtsp://admin:123smart@10.52.32.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89086, "longitude": -43.22656, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004125", "name": "R. FRANCISCO PALHETA, 40", "rtsp_url": "rtsp://admin:123smart@10.52.32.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89062, "longitude": -43.2272, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004126", "name": "R. DOM CARLOS, 27", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892973, "longitude": -43.228685, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004127", "name": "R. S\u00e3O JANU\u00e1RIO, 832", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892849, "longitude": -43.227543, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004128", "name": "AV. ROBERTO DINAMITE, 183", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890965, "longitude": -43.22916, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004129", "name": "R. DON\u00e1 DARC\u00ed VARGAS, 14", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.889885, "longitude": -43.229552, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004130", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85340831, "longitude": -43.38454536, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004131", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85344664, "longitude": -43.38448235, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004132", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85347876, "longitude": -43.38441931, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004133", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85352324, "longitude": -43.38434822, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004134", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85355663, "longitude": -43.38425571, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004135", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.39/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85360359, "longitude": -43.38417121, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004136", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.40/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85363694, "longitude": -43.38411086, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004137", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.41/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8536765, "longitude": -43.3839982, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004138", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85372963, "longitude": -43.38391236, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004139", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85379512, "longitude": -43.38380104, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004140", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85386431, "longitude": -43.38362131, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004141", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85388406, "longitude": -43.38354218, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004151", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85403599, "longitude": -43.38389481, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004152", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85405823, "longitude": -43.38383043, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004153", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85409777, "longitude": -43.38374996, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004154", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85412248, "longitude": -43.38368558, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004155", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85416696, "longitude": -43.38360511, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004156", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85418673, "longitude": -43.38355414, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004157", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85420897, "longitude": -43.38350049, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004158", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85423368, "longitude": -43.38345757, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004159", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85425345, "longitude": -43.38339319, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004160", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85427569, "longitude": -43.38333149, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004163", "name": "ESTR. DO GALE\u00c3O - 1588 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80666708, "longitude": -43.19814185, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004164", "name": "AV. MAESTRO PAULO E SILVA 400 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.81/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80177, "longitude": -43.20228, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004165", "name": "AV. MAESTRO PAULO E SILVA 400 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80190846, "longitude": -43.20239801, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004166", "name": "AV. MAESTRO PAULO E SILVA 109", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.83/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80116, "longitude": -43.2018, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004167", "name": "PRAIA DO ZUMBI, 11", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.84/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.821096, "longitude": -43.173475, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004168", "name": "RUA HAROLDO L\u00d4BO, 400", "rtsp_url": "rtsp://admin:123smart@10.52.216.85/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8023177, "longitude": -43.2093106, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004169", "name": "RUA FIGUEIRA DA FOZ, 123", "rtsp_url": "rtsp://admin:123smart@10.52.216.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8026143, "longitude": -43.2092311, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004170", "name": "RUA HAROLDO L\u00d4BO, 294", "rtsp_url": "rtsp://admin:123smart@10.52.216.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8026599, "longitude": -43.2097652, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004171", "name": "RUA HAROLDO L\u00d4BO, 415", "rtsp_url": "rtsp://admin:123smart@10.52.216.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8018588, "longitude": -43.209507, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004172", "name": "R. PRAIA DA ENGENHOCA 95 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82223, "longitude": -43.16993, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004173", "name": "R. PRAIA DA ENGENHOCA 95", "rtsp_url": "rtsp://admin:123smart@10.52.216.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82222629, "longitude": -43.17003058, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004174", "name": "RUA LOUREN\u00e7O DA VEIGA, 40 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.823976, "longitude": -43.168124, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004175", "name": "ESTRADA DO GALE\u00e3O, 5800 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.92/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.820982, "longitude": -43.227867, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004176", "name": "ESTR. DO RIO JEQUI\u00e1, 2167 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81634333, "longitude": -43.18706157, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004177", "name": "ESTR. DO RIO JEQUI\u00e1, 2167 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.94/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8165065, "longitude": -43.18674775, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004178", "name": "ESTR. DO RIO JEQUI\u00e1, 2167 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81659179, "longitude": -43.18691002, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004179", "name": "R. IPIRU, 815", "rtsp_url": "rtsp://admin:123smart@10.52.216.96/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81961685, "longitude": -43.19189575, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004180", "name": "AV. ALM. ALVEZ C\u00c2MARA JUNIOR, 1242", "rtsp_url": "rtsp://admin:123smart@10.52.216.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82177118, "longitude": -43.18950359, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004181", "name": "AV. PARANAPU\u00c3 X RUA CAPANEMA", "rtsp_url": "rtsp://admin:123smart@10.52.216.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79521, "longitude": -43.18245, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004182", "name": "AV. PARANAPU\u00c3 X RUA CAPANEMA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.99/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79512345, "longitude": -43.18252778, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004183", "name": "R. EUT\u00edQUIO SOLEDADE X R. CAPANEMA", "rtsp_url": "rtsp://admin:123smart@10.52.216.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79412817, "longitude": -43.1838206, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004184", "name": "R. EUT\u00edQUIO SOLEDADE X R. CAPANEMA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79409108, "longitude": -43.183775, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004185", "name": "R. DEM\u00e9TRIO DE TOL\u00eaDO, 151 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79319, "longitude": -43.18413, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004186", "name": "PRAIA DA GUANABARA, 535", "rtsp_url": "rtsp://admin:123smart@10.52.216.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79315675, "longitude": -43.17018841, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004187", "name": "PRAIA DA GUANABARA, 535 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79356599, "longitude": -43.17016695, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004188", "name": "PRAIA DA GUANABARA, 09", "rtsp_url": "rtsp://admin:123smart@10.52.216.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.7935656, "longitude": -43.17030267, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004189", "name": "R. PIO DUTRA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.792821, "longitude": -43.174245, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004193", "name": "AV. SALVADOR DE S\u00e1, 214", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911943, "longitude": -43.202715, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004194", "name": "R. NERI PINHEIRO, 395", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912651, "longitude": -43.202911, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004195", "name": "AV. SALVADOR DE S\u00e1, 214", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912863, "longitude": -43.202307, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004196", "name": "RUA CORREIA VASQUES, 54", "rtsp_url": "rtsp://admin:123smart@10.52.33.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91157, "longitude": -43.20183, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004197", "name": "RUA AFONSO CAVALCANTI 20", "rtsp_url": "rtsp://admin:123smart@10.52.19.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909937, "longitude": -43.202483, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004198", "name": "RUA CORREIA VASQUES, 250", "rtsp_url": "rtsp://admin:123smart@10.52.33.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91041, "longitude": -43.201338, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004199", "name": "RUA ULYSSES GUIMAR\u00e3ES, 300 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91173012, "longitude": -43.20345721, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004200", "name": "RUA ULYSSES GUIMAR\u00e3ES, 15", "rtsp_url": "rtsp://admin:123smart@10.52.245.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91243, "longitude": -43.205217, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004201", "name": "RUA ULYSSES GUIMAR\u00e3ES, 108", "rtsp_url": "rtsp://admin:123smart@10.52.245.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91272, "longitude": -43.20614, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004202", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 10142", "rtsp_url": "rtsp://admin:123smart@10.52.216.115/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88199093, "longitude": -43.32481791, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004203", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 10142 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.116/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88202306, "longitude": -43.3247227, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004204", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 10238 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88178386, "longitude": -43.3254544, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004205", "name": "TERMINAL RODOVI\u00e1RIO NOSSA SRA. DO AMPARO, 177-143 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.118/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8811809, "longitude": -43.325386, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004206", "name": "TERMINAL RODOVI\u00e1RIO NOSSA SRA. DO AMPARO, 80", "rtsp_url": "rtsp://admin:123smart@10.52.216.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88109934, "longitude": -43.32522372, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004207", "name": "TERMINAL RODOVI\u00e1RIO NOSSA SRA. DO AMPARO, 80 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88151573, "longitude": -43.32544633, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004208", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 10158", "rtsp_url": "rtsp://admin:123smart@10.52.216.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88192844, "longitude": -43.32533008, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004209", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 10238", "rtsp_url": "rtsp://admin:123smart@10.52.216.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882014, "longitude": -43.325516, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004210", "name": "R. CERQUEIRA DALTRO, 31", "rtsp_url": "rtsp://admin:123smart@10.52.216.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881581, "longitude": -43.324594, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004224", "name": "AV. DO PEP\u00ea 159", "rtsp_url": "rtsp://admin:123smart@10.50.106.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.014218, "longitude": -43.29786, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004227", "name": "AV. PEDRO II, 111 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.30.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902817, "longitude": -43.2133, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004228", "name": "VIADUTO DO GAS\u00f4METRO, 29 - LPR - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.30.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892369, "longitude": -43.216451, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004229", "name": "AV. PEDRO II X R. S\u00c3O CRIST\u00d3V\u00c3O - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.28.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90519, "longitude": -43.21812, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004230", "name": "AV. PEDRO II X R. S\u00c3O CRIST\u00d3V\u00c3O - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.28.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90466868, "longitude": -43.21794029, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004231", "name": "AV. PEDRO II, 187 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.30.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90372046, "longitude": -43.21500318, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004232", "name": "R. DA IGREJINHA, 10 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.30.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89573666, "longitude": -43.21491454, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004233", "name": "R. JOS\u00e9 CLEMENTE, 15 - LPR - FIXA", "rtsp_url": "rtsp://admin:smart123@10.52.32.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.888609, "longitude": -43.223128, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004234", "name": "R. S\u00e1 FREIRE, 58 - LPR - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.32.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890419, "longitude": -43.221437, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004235", "name": "R. CONDE DE LEOPOLDINA, 432", "rtsp_url": "rtsp://admin:123smart@10.52.32.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891665, "longitude": -43.220498, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004236", "name": "R. CONDE DE LEOPOLDINA, 210 LPR - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.32.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890508, "longitude": -43.219063, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004237", "name": "RUA INHOMIRIM, 370 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.30.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.900439, "longitude": -43.216042, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004238", "name": "PARQUE GAROTA DE IPANEMA", "rtsp_url": "rtsp://admin:123smart@10.52.22.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989555, "longitude": -43.19098, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004239", "name": "AV. FRANCISCO BHERING, 200", "rtsp_url": "rtsp://admin:123smart@10.52.22.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98884877, "longitude": -43.19190216, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004241", "name": "R. DEGAS X R. CACHAMBI", "rtsp_url": "rtsp://admin:123smart@10.52.211.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88340619, "longitude": -43.27990169, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004242", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 5800", "rtsp_url": "rtsp://admin:123smart@10.52.211.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88706032, "longitude": -43.28716575, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004245", "name": "R. DA ABOLI\u00e7\u00e3O X R. MARIO CARPENTER", "rtsp_url": "rtsp://admin:123smart@10.52.211.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887936, "longitude": -43.296514, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004246", "name": "R. AMARO CAVALCANTI, 975 X VIADUTO DE TODOS OS SANTOS", "rtsp_url": "rtsp://admin:123smart@10.52.211.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89726351, "longitude": -43.28582696, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004247", "name": "R. ARQUIAS CORDEIRO X R. JOSE BONIFACIO", "rtsp_url": "rtsp://admin:123smart@10.52.211.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89741519, "longitude": -43.2832885, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004248", "name": "AV. HENRIETE DE HOLANDA AMADO, 1567", "rtsp_url": "rtsp://admin:123smart@10.52.211.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887389, "longitude": -43.292448, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004250", "name": "RUA PIAUI 119", "rtsp_url": "rtsp://admin:123smart@10.52.211.40/cam/realmonitor?channel=1&subtype=2&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89414126, "longitude": -43.28737618, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004251", "name": "R. HON\u00d3RIO, 548", "rtsp_url": "rtsp://admin:123smart@10.52.211.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891765, "longitude": -43.282792, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004253", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 6088", "rtsp_url": "rtsp://admin:123smart@10.52.211.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885614, "longitude": -43.289901, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004254", "name": "AV. AMARO CAVALCANTI, 1387", "rtsp_url": "rtsp://admin:123smart@10.52.211.74/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89619068, "longitude": -43.29028061, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004256", "name": "R. GUINEZA, 297", "rtsp_url": "rtsp://admin:123smart@10.52.211.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892514, "longitude": -43.298613, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004257", "name": "PRA\u00c7A SARGENTO EUD\u00d3XIDO PASSOS, 14", "rtsp_url": "rtsp://admin:123smart@10.52.211.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895867, "longitude": -43.302212, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004258", "name": "R. MANOEL VITORINO, 57", "rtsp_url": "rtsp://admin:123smart@10.52.216.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8953457, "longitude": -43.30295273, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004259", "name": "R. DOIS DE FEVEREIRO X AV. AMARO CAVALCANTI", "rtsp_url": "rtsp://admin:123smart@10.52.216.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895956, "longitude": -43.300677, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004260", "name": "R. BENTO GON\u00e7ALVES, 352", "rtsp_url": "rtsp://admin:123smart@10.52.216.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893925, "longitude": -43.298856, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004261", "name": "PRA\u00c7A PARIS - BOMBA", "rtsp_url": "rtsp://admin:123smart@10.52.17.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91579593, "longitude": -43.17620513, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004262", "name": "RUA PINTO DE AZEVEDO, 190 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.245.49/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91185076, "longitude": -43.20410896, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004263", "name": "RUA ULYSSES GUIMAR\u00e3ES, 4 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.245.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91220851, "longitude": -43.20521777, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004264", "name": "RUA ULYSSES GUIMAR\u00e3ES, 4 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.245.51/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91222827, "longitude": -43.20525934, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004265", "name": "AV. PRES. VARGAS, 2863", "rtsp_url": "rtsp://admin:123smart@10.52.34.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90883605, "longitude": -43.20135847, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004266", "name": "RUA ULYSSES GUIMAR\u00e3ES, 15 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.245.52/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91237194, "longitude": -43.20526662, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004267", "name": "RUA PINTO DE AZEVEDO, ESTACIONAMENTO EXTERNO BLOCO 2 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.245.53/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91149252, "longitude": -43.20444691, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004275", "name": "AV. DAS AM\u00c9RICAS X R. FELIC\u00cdSSIMO CARDOSO - LPR - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.228/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00024907, "longitude": -43.35371153, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004276", "name": "PRA\u00c7A SIB\u00c9LIUS - LPR - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.37.205/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97844725, "longitude": -43.2265768, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004279", "name": "RUA PINTO DE AZEVEDO 190", "rtsp_url": "rtsp://admin:123smart@10.52.245.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91189317, "longitude": -43.20411434, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004280", "name": "R. ALVARO CHAVES 41", "rtsp_url": "rtsp://admin:123smart@10.52.14.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93622053, "longitude": -43.18492926, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004281", "name": "R. PINHEIRO MACHADO 112", "rtsp_url": "rtsp://admin:123smart@10.52.14.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93631935, "longitude": -43.18397171, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004282", "name": "AV. RODRIGO OT\u00c1VIO, PROX. ARENA JOCKEY", "rtsp_url": "rtsp://admin:123smart@10.52.37.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97318928, "longitude": -43.22524783, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004284", "name": "VIADUTO PREF. ALIM PEDRO, ALT. BRT", "rtsp_url": "rtsp://admin:123smart@10.151.57.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90369801, "longitude": -43.56614734, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004285", "name": "RUA MARQUES DE S\u00c3O VICENTE X RUA ARTUR ARARIPE", "rtsp_url": "rtsp://admin:123smart@10.52.37.200/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.975861, "longitude": -43.228367, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004286", "name": "AV. RODRIGO OT\u00e1VIO, 165", "rtsp_url": "rtsp://admin:123smart@10.52.37.183/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9763801, "longitude": -43.2264813, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}, {"id": "004287", "name": "AV. RIO BRANCO X R. EVARISTO DA VEIGA", "rtsp_url": "rtsp://admin:123smart@10.52.17.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909629, "longitude": -43.176542, "snapshot_url": null, "snapshot_timestamp": null, "objects": [], "identifications": []}] \ No newline at end of file +[{"id": "001505", "name": "CAMPO DE S\u00c3O CRIST\u00d3V\u00c3O X COL\u00c9GIO PEDRO II - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.899081, "longitude": -43.220322, "objects": ["image_corrupted", "rain", "image_description", "water_level", "traffic", "road_blockade"], "identifications": [{"id": "dba6cf77-8b79-41bd-91d1-b5c3fe6cb209", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.278562+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible obstructions or traffic congestion. Traffic can flow smoothly without any hindrance.", "snapshot": {"id": "6f46b7d7-a617-4190-b4fa-baeffe403515", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/6f46b7d7-a617-4190-b4fa-baeffe403515.png", "timestamp": "2024-02-15T20:30:34.446820+00:00"}}, {"id": "9fa45e3d-a86d-4198-8e1c-b490c78f0221", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.925930+00:00", "label": "low", "label_explanation": "The road surface is mostly dry, with only a few small puddles scattered around. The water level is low, and it does not pose any significant hindrance to traffic.", "snapshot": {"id": "6f46b7d7-a617-4190-b4fa-baeffe403515", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/6f46b7d7-a617-4190-b4fa-baeffe403515.png", "timestamp": "2024-02-15T20:30:34.446820+00:00"}}, {"id": "e0d3bea8-a693-447f-8936-227ca01ee636", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.375613+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is mostly dry, with a few small puddles scattered around. There are several parked cars on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "6f46b7d7-a617-4190-b4fa-baeffe403515", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/6f46b7d7-a617-4190-b4fa-baeffe403515.png", "timestamp": "2024-02-15T20:30:34.446820+00:00"}}, {"id": "9511017e-f78d-4a54-9665-cb4eb958a370", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.081076+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6f46b7d7-a617-4190-b4fa-baeffe403515", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/6f46b7d7-a617-4190-b4fa-baeffe403515.png", "timestamp": "2024-02-15T20:30:34.446820+00:00"}}, {"id": "074cd0d2-60b2-4823-a31d-2da2023ff6d3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.538288+00:00", "label": "free", "label_explanation": "The road is completely free of any obstructions or blockades. There are no parked cars or other obstacles that could impede traffic flow.", "snapshot": {"id": "6f46b7d7-a617-4190-b4fa-baeffe403515", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/6f46b7d7-a617-4190-b4fa-baeffe403515.png", "timestamp": "2024-02-15T20:30:34.446820+00:00"}}, {"id": "a7c58939-8d11-4f30-ac01-18be51cd5339", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.653792+00:00", "label": "false", "label_explanation": "Although there are a few small puddles on the road surface, the overall road condition is dry. There is no visible rain or water on the road.", "snapshot": {"id": "6f46b7d7-a617-4190-b4fa-baeffe403515", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/6f46b7d7-a617-4190-b4fa-baeffe403515.png", "timestamp": "2024-02-15T20:30:34.446820+00:00"}}, {"id": "e85797eb-cff7-4bfb-a2b3-d55a64aaee9f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.212086+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "1a5fb326-344f-4de7-94ca-93e5c104ac7e", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/1a5fb326-344f-4de7-94ca-93e5c104ac7e.png", "timestamp": "2024-02-15T20:35:41.153041+00:00"}}, {"id": "b3d9569b-80df-428a-87e2-f695205f200c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.435353+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street, featuring a runner on the left side of the image and parked cars on the right.", "snapshot": {"id": "1a5fb326-344f-4de7-94ca-93e5c104ac7e", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/1a5fb326-344f-4de7-94ca-93e5c104ac7e.png", "timestamp": "2024-02-15T20:35:41.153041+00:00"}}, {"id": "47de46f1-0918-4c20-a913-b940af0ed2cd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.957044+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "1a5fb326-344f-4de7-94ca-93e5c104ac7e", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/1a5fb326-344f-4de7-94ca-93e5c104ac7e.png", "timestamp": "2024-02-15T20:35:41.153041+00:00"}}, {"id": "ef4d0d10-e1ce-4f06-839d-e468bb493bd8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.079059+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "1a5fb326-344f-4de7-94ca-93e5c104ac7e", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/1a5fb326-344f-4de7-94ca-93e5c104ac7e.png", "timestamp": "2024-02-15T20:35:41.153041+00:00"}}, {"id": "139b8015-1577-453f-a27d-310e0aaa2fcb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.724271+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "1a5fb326-344f-4de7-94ca-93e5c104ac7e", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/1a5fb326-344f-4de7-94ca-93e5c104ac7e.png", "timestamp": "2024-02-15T20:35:41.153041+00:00"}}, {"id": "dcc61462-cf43-47db-a184-661588ed74cf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.245055+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1a5fb326-344f-4de7-94ca-93e5c104ac7e", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/1a5fb326-344f-4de7-94ca-93e5c104ac7e.png", "timestamp": "2024-02-15T20:35:41.153041+00:00"}}, {"id": "ebc7809a-044a-4dd3-b36a-6d9649703a65", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:27.076953+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is clear and passable for vehicles.", "snapshot": {"id": "62c071e3-897e-4e9a-a5eb-670c2fae089f", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/62c071e3-897e-4e9a-a5eb-670c2fae089f.png", "timestamp": "2024-02-15T20:38:13.393699+00:00"}}, {"id": "ab45188e-ad16-4808-8e6b-bd56b19235fa", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.862398+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars driving on the road. The parked cars on the left side of the road are not impeding traffic.", "snapshot": {"id": "62c071e3-897e-4e9a-a5eb-670c2fae089f", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/62c071e3-897e-4e9a-a5eb-670c2fae089f.png", "timestamp": "2024-02-15T20:38:13.393699+00:00"}}, {"id": "c564d285-72a4-45ca-8a80-472e9067a2bb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.640504+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water is not deep enough to cause any problems for vehicles.", "snapshot": {"id": "62c071e3-897e-4e9a-a5eb-670c2fae089f", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/62c071e3-897e-4e9a-a5eb-670c2fae089f.png", "timestamp": "2024-02-15T20:38:13.393699+00:00"}}, {"id": "067246e2-aecf-4830-b0ec-4309cab8d866", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.362724+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "62c071e3-897e-4e9a-a5eb-670c2fae089f", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/62c071e3-897e-4e9a-a5eb-670c2fae089f.png", "timestamp": "2024-02-15T20:38:13.393699+00:00"}}, {"id": "6df474a0-1546-420f-b71d-b7a0ff80823c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.162212+00:00", "label": "null", "label_explanation": "The image captures an urban road scene. It is daytime and the weather appears to be cloudy. There are several parked cars on the left side of the road, and a few cars driving on the right side. The road surface is wet from recent rain.", "snapshot": {"id": "62c071e3-897e-4e9a-a5eb-670c2fae089f", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/62c071e3-897e-4e9a-a5eb-670c2fae089f.png", "timestamp": "2024-02-15T20:38:13.393699+00:00"}}, {"id": "e195f86f-7a65-4a59-bf44-5d223e46bb37", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.948992+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "62c071e3-897e-4e9a-a5eb-670c2fae089f", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/62c071e3-897e-4e9a-a5eb-670c2fae089f.png", "timestamp": "2024-02-15T20:38:13.393699+00:00"}}, {"id": "c1c2bbff-b369-4871-9ada-fff53ff6e2fa", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.614143+00:00", "label": "easy", "label_explanation": "The road has moderate traffic, with vehicles moving smoothly without any significant congestion.", "snapshot": {"id": "2505155b-b121-426b-8369-b8397713ab3a", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2505155b-b121-426b-8369-b8397713ab3a.png", "timestamp": "2024-02-15T20:40:39.232511+00:00"}}, {"id": "3c802340-1ddd-4793-9ae1-6ddd83948cd4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.410173+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "2505155b-b121-426b-8369-b8397713ab3a", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2505155b-b121-426b-8369-b8397713ab3a.png", "timestamp": "2024-02-15T20:40:39.232511+00:00"}}, {"id": "50c3a673-e1f0-4986-bfa3-d1784f9625c4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.128451+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "2505155b-b121-426b-8369-b8397713ab3a", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2505155b-b121-426b-8369-b8397713ab3a.png", "timestamp": "2024-02-15T20:40:39.232511+00:00"}}, {"id": "74979948-0e61-4d61-9df0-c6ae25822013", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.907262+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "2505155b-b121-426b-8369-b8397713ab3a", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2505155b-b121-426b-8369-b8397713ab3a.png", "timestamp": "2024-02-15T20:40:39.232511+00:00"}}, {"id": "c3c3f57a-460c-4c6a-b784-acfee842d64f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.693773+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2505155b-b121-426b-8369-b8397713ab3a", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2505155b-b121-426b-8369-b8397713ab3a.png", "timestamp": "2024-02-15T20:40:39.232511+00:00"}}, {"id": "3c1092c6-3d06-4dd8-a3ec-d436a1f2ba1d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.957500+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "2505155b-b121-426b-8369-b8397713ab3a", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2505155b-b121-426b-8369-b8397713ab3a.png", "timestamp": "2024-02-15T20:40:39.232511+00:00"}}, {"id": "f1be20af-7f03-47ef-9e8c-34aee7076e0e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.970868+00:00", "label": "false", "label_explanation": "There are no visible signs of rain or wetness on the road surface.", "snapshot": {"id": "375cf206-86b0-41ac-bb34-6b351b226ef7", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/375cf206-86b0-41ac-bb34-6b351b226ef7.png", "timestamp": "2024-02-15T20:47:50.631976+00:00"}}, {"id": "d7b0187e-2ba3-43a4-b97a-3e81ec2aa99f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.763170+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "375cf206-86b0-41ac-bb34-6b351b226ef7", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/375cf206-86b0-41ac-bb34-6b351b226ef7.png", "timestamp": "2024-02-15T20:47:50.631976+00:00"}}, {"id": "83ed8f07-fca4-4f16-8c70-43a158b7d915", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.544056+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "375cf206-86b0-41ac-bb34-6b351b226ef7", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/375cf206-86b0-41ac-bb34-6b351b226ef7.png", "timestamp": "2024-02-15T20:47:50.631976+00:00"}}, {"id": "04d9ad78-d683-43f4-9821-4fc559282348", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.666931+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road.", "snapshot": {"id": "375cf206-86b0-41ac-bb34-6b351b226ef7", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/375cf206-86b0-41ac-bb34-6b351b226ef7.png", "timestamp": "2024-02-15T20:47:50.631976+00:00"}}, {"id": "32033de7-e581-455e-9ce6-226abfa02501", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.405109+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a steady flow of vehicles in both directions.", "snapshot": {"id": "375cf206-86b0-41ac-bb34-6b351b226ef7", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/375cf206-86b0-41ac-bb34-6b351b226ef7.png", "timestamp": "2024-02-15T20:47:50.631976+00:00"}}, {"id": "f048bc22-9635-42b4-8e37-86011653330e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.197097+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "375cf206-86b0-41ac-bb34-6b351b226ef7", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/375cf206-86b0-41ac-bb34-6b351b226ef7.png", "timestamp": "2024-02-15T20:47:50.631976+00:00"}}, {"id": "b0f90964-550b-440f-8f0c-86da14b5ed73", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.509976+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "60791ee6-dadb-47c5-a642-afd74c4c28e2", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/60791ee6-dadb-47c5-a642-afd74c4c28e2.png", "timestamp": "2024-02-15T20:45:27.609549+00:00"}}, {"id": "d43d7ab4-8c9e-4e10-973b-4d32b8a4564c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.776483+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "60791ee6-dadb-47c5-a642-afd74c4c28e2", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/60791ee6-dadb-47c5-a642-afd74c4c28e2.png", "timestamp": "2024-02-15T20:45:27.609549+00:00"}}, {"id": "f4888b7a-af4e-423f-a0f9-6fc699831c85", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.280352+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "60791ee6-dadb-47c5-a642-afd74c4c28e2", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/60791ee6-dadb-47c5-a642-afd74c4c28e2.png", "timestamp": "2024-02-15T20:45:27.609549+00:00"}}, {"id": "75270f74-4281-42bf-af88-47a32ac6beb8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.084739+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "60791ee6-dadb-47c5-a642-afd74c4c28e2", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/60791ee6-dadb-47c5-a642-afd74c4c28e2.png", "timestamp": "2024-02-15T20:45:27.609549+00:00"}}, {"id": "04aaa3bd-d2ee-43bd-8ffa-4141972ece1d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.863592+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars and buses. The road is divided into multiple lanes, separated by painted lines. On either side of the road, there are buildings and trees.", "snapshot": {"id": "60791ee6-dadb-47c5-a642-afd74c4c28e2", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/60791ee6-dadb-47c5-a642-afd74c4c28e2.png", "timestamp": "2024-02-15T20:45:27.609549+00:00"}}, {"id": "b29ef74c-1b6e-4af4-9f88-457ab38e62aa", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.666289+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "60791ee6-dadb-47c5-a642-afd74c4c28e2", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/60791ee6-dadb-47c5-a642-afd74c4c28e2.png", "timestamp": "2024-02-15T20:45:27.609549+00:00"}}, {"id": "64ccce5a-4793-4b7f-ac90-a41e4c9290d2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.907569+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road. The road is completely clear.", "snapshot": {"id": "271e35a4-9aaf-4576-bed5-573873b0de12", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/271e35a4-9aaf-4576-bed5-573873b0de12.png", "timestamp": "2024-02-15T20:43:02.545044+00:00"}}, {"id": "607f415c-55fd-4347-8847-4d6f2e61ab85", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.666212+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion. Traffic is flowing smoothly.", "snapshot": {"id": "271e35a4-9aaf-4576-bed5-573873b0de12", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/271e35a4-9aaf-4576-bed5-573873b0de12.png", "timestamp": "2024-02-15T20:43:02.545044+00:00"}}, {"id": "72014def-adba-4d80-a9b9-de3f874fb289", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.804947+00:00", "label": "null", "label_explanation": "The image captures a wide, urban road with multiple lanes. It is daytime, and the weather appears to be clear. There are several parked cars on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "271e35a4-9aaf-4576-bed5-573873b0de12", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/271e35a4-9aaf-4576-bed5-573873b0de12.png", "timestamp": "2024-02-15T20:43:02.545044+00:00"}}, {"id": "688a28ad-9fdd-4138-9b56-9fe07fe3f8fa", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.329002+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "271e35a4-9aaf-4576-bed5-573873b0de12", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/271e35a4-9aaf-4576-bed5-573873b0de12.png", "timestamp": "2024-02-15T20:43:02.545044+00:00"}}, {"id": "6a85faa3-23de-4eff-bc2b-35cef6863e6b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.092374+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "271e35a4-9aaf-4576-bed5-573873b0de12", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/271e35a4-9aaf-4576-bed5-573873b0de12.png", "timestamp": "2024-02-15T20:43:02.545044+00:00"}}, {"id": "6f6f7980-d77b-4c83-88cb-99544b4b824d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.544128+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "271e35a4-9aaf-4576-bed5-573873b0de12", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/271e35a4-9aaf-4576-bed5-573873b0de12.png", "timestamp": "2024-02-15T20:43:02.545044+00:00"}}, {"id": "32e3c787-6717-4607-9a42-72c01fd4af77", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:32.609827+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely without any hindrances.", "snapshot": {"id": "2cc7960d-e7cf-4ab8-bb66-dfd11e59b828", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2cc7960d-e7cf-4ab8-bb66-dfd11e59b828.png", "timestamp": "2024-02-15T20:33:15.064540+00:00"}}, {"id": "6c6851de-9f46-487d-9d79-5f8708785548", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:32.301106+00:00", "label": "easy", "label_explanation": "The image shows moderate traffic, with several vehicles visible on the road. Traffic appears to be flowing smoothly, with no major congestion or disruptions.", "snapshot": {"id": "2cc7960d-e7cf-4ab8-bb66-dfd11e59b828", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2cc7960d-e7cf-4ab8-bb66-dfd11e59b828.png", "timestamp": "2024-02-15T20:33:15.064540+00:00"}}, {"id": "b79dbfae-9f02-4aee-9571-0ea00e582218", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:31.839977+00:00", "label": "false", "label_explanation": "As mentioned earlier, there are no visible signs of rain or water on the road surface, indicating a dry road condition.", "snapshot": {"id": "2cc7960d-e7cf-4ab8-bb66-dfd11e59b828", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2cc7960d-e7cf-4ab8-bb66-dfd11e59b828.png", "timestamp": "2024-02-15T20:33:15.064540+00:00"}}, {"id": "579801b9-10f5-435a-b127-0912922d2094", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:32.105436+00:00", "label": "low", "label_explanation": "Since the road surface is dry, with no signs of water accumulation, the water level can be labeled as 'low'.", "snapshot": {"id": "2cc7960d-e7cf-4ab8-bb66-dfd11e59b828", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2cc7960d-e7cf-4ab8-bb66-dfd11e59b828.png", "timestamp": "2024-02-15T20:33:15.064540+00:00"}}, {"id": "bea3ee16-d6a1-4434-aaeb-b4d31cf615bb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:31.507515+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear, with no visible signs of rain or water on the road surface.", "snapshot": {"id": "2cc7960d-e7cf-4ab8-bb66-dfd11e59b828", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2cc7960d-e7cf-4ab8-bb66-dfd11e59b828.png", "timestamp": "2024-02-15T20:33:15.064540+00:00"}}, {"id": "f7d52110-895b-4295-99d6-749e80a5c1f3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:31.308178+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2cc7960d-e7cf-4ab8-bb66-dfd11e59b828", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/2cc7960d-e7cf-4ab8-bb66-dfd11e59b828.png", "timestamp": "2024-02-15T20:33:15.064540+00:00"}}, {"id": "10721a47-d524-4b1c-a8fe-37cf21312137", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.718677+00:00", "label": "low", "label_explanation": "Since there is no visible water on the road surface, the water level can be classified as 'low'.", "snapshot": {"id": "d80e7656-732c-43ad-b33f-2d74324c2aa4", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/d80e7656-732c-43ad-b33f-2d74324c2aa4.png", "timestamp": "2024-02-15T20:52:41.538602+00:00"}}, {"id": "a64d9c2b-bdfd-494b-a5e4-987bfe7a5939", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.250753+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear, with no visible signs of rain or water on the road surface.", "snapshot": {"id": "d80e7656-732c-43ad-b33f-2d74324c2aa4", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/d80e7656-732c-43ad-b33f-2d74324c2aa4.png", "timestamp": "2024-02-15T20:52:41.538602+00:00"}}, {"id": "f3a4aa51-3adb-43e3-a2ac-0285bb6e028e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.027167+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d80e7656-732c-43ad-b33f-2d74324c2aa4", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/d80e7656-732c-43ad-b33f-2d74324c2aa4.png", "timestamp": "2024-02-15T20:52:41.538602+00:00"}}, {"id": "5bd49a61-1ebd-4a2c-b9dc-e1cee939673c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.446551+00:00", "label": "false", "label_explanation": "As mentioned earlier, there are no visible signs of rain or water on the road surface, indicating a dry road condition.", "snapshot": {"id": "d80e7656-732c-43ad-b33f-2d74324c2aa4", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/d80e7656-732c-43ad-b33f-2d74324c2aa4.png", "timestamp": "2024-02-15T20:52:41.538602+00:00"}}, {"id": "1286ea58-0baf-4e8a-815b-984700c309b6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:54.137502+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is flowing freely without any hindrances.", "snapshot": {"id": "d80e7656-732c-43ad-b33f-2d74324c2aa4", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/d80e7656-732c-43ad-b33f-2d74324c2aa4.png", "timestamp": "2024-02-15T20:52:41.538602+00:00"}}, {"id": "4777d48f-943e-434e-9948-9582005d9e07", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.940331+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be smooth, with no major congestion or disruptions observed. Vehicles are seen moving at a steady pace.", "snapshot": {"id": "d80e7656-732c-43ad-b33f-2d74324c2aa4", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/d80e7656-732c-43ad-b33f-2d74324c2aa4.png", "timestamp": "2024-02-15T20:52:41.538602+00:00"}}, {"id": "767bd8f7-cf56-421c-817e-95dcb87b6c26", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:26.195149+00:00", "label": "false", "label_explanation": "There are no visible signs of rain or wetness on the road surface.", "snapshot": {"id": "73664dc5-d2a3-4f36-ae57-2afb6d2746a6", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/73664dc5-d2a3-4f36-ae57-2afb6d2746a6.png", "timestamp": "2024-02-15T20:50:15.483988+00:00"}}, {"id": "78b6c0f4-bc9f-468a-9b4b-8c470a2828e4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:26.007426+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "73664dc5-d2a3-4f36-ae57-2afb6d2746a6", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/73664dc5-d2a3-4f36-ae57-2afb6d2746a6.png", "timestamp": "2024-02-15T20:50:15.483988+00:00"}}, {"id": "3c71ed14-4966-40e8-ace4-2f124cb419fc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.796784+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "73664dc5-d2a3-4f36-ae57-2afb6d2746a6", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/73664dc5-d2a3-4f36-ae57-2afb6d2746a6.png", "timestamp": "2024-02-15T20:50:15.483988+00:00"}}, {"id": "c7e80e34-0603-48b6-883a-c967b9e0de10", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:26.977828+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions or blockades. Traffic is able to flow unimpeded.", "snapshot": {"id": "73664dc5-d2a3-4f36-ae57-2afb6d2746a6", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/73664dc5-d2a3-4f36-ae57-2afb6d2746a6.png", "timestamp": "2024-02-15T20:50:15.483988+00:00"}}, {"id": "d3f665b3-a8e7-4693-a549-bbd3cf252592", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:26.777600+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with vehicles moving smoothly in both directions. There are no significant traffic disruptions or congestions.", "snapshot": {"id": "73664dc5-d2a3-4f36-ae57-2afb6d2746a6", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/73664dc5-d2a3-4f36-ae57-2afb6d2746a6.png", "timestamp": "2024-02-15T20:50:15.483988+00:00"}}, {"id": "218ebad4-b4d5-4b7f-8227-bf9135afad2a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:26.474823+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "73664dc5-d2a3-4f36-ae57-2afb6d2746a6", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/73664dc5-d2a3-4f36-ae57-2afb6d2746a6.png", "timestamp": "2024-02-15T20:50:15.483988+00:00"}}, {"id": "689b578c-9648-4438-9f47-549bd3548bc9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.611286+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "bad160c8-6380-4ea7-a7da-59e9a6d559d1", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/bad160c8-6380-4ea7-a7da-59e9a6d559d1.png", "timestamp": "2024-02-15T20:55:07.716374+00:00"}}, {"id": "9f572ba7-eee2-4103-9db8-d8a27bb1e47b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:19.083619+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "bad160c8-6380-4ea7-a7da-59e9a6d559d1", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/bad160c8-6380-4ea7-a7da-59e9a6d559d1.png", "timestamp": "2024-02-15T20:55:07.716374+00:00"}}, {"id": "718a8b54-2572-4241-a624-cffe4c42889f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.807109+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a steady flow of vehicles in both directions. Traffic appears to be moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "bad160c8-6380-4ea7-a7da-59e9a6d559d1", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/bad160c8-6380-4ea7-a7da-59e9a6d559d1.png", "timestamp": "2024-02-15T20:55:07.716374+00:00"}}, {"id": "eb7fef50-7393-4c56-ba05-85eb4e22903a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.409677+00:00", "label": "false", "label_explanation": "There are no visible signs of rain or wetness on the road surface.", "snapshot": {"id": "bad160c8-6380-4ea7-a7da-59e9a6d559d1", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/bad160c8-6380-4ea7-a7da-59e9a6d559d1.png", "timestamp": "2024-02-15T20:55:07.716374+00:00"}}, {"id": "ce19c6db-9c96-440a-a204-aa724b2df7e9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.202077+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "bad160c8-6380-4ea7-a7da-59e9a6d559d1", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/bad160c8-6380-4ea7-a7da-59e9a6d559d1.png", "timestamp": "2024-02-15T20:55:07.716374+00:00"}}, {"id": "b93d1e86-4046-4ae2-991c-05094d477862", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.997633+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bad160c8-6380-4ea7-a7da-59e9a6d559d1", "camera_id": "001505", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001505/bad160c8-6380-4ea7-a7da-59e9a6d559d1.png", "timestamp": "2024-02-15T20:55:07.716374+00:00"}}]}, {"id": "000108", "name": "AV. GENERAL JUSTO PR\u00d3XIMO AO AEROPORTO SANTOS DUMONT", "rtsp_url": "rtsp://10.52.17.26/108-VIDEO", "update_interval": 120, "latitude": -22.911078, "longitude": -43.168378, "objects": ["image_corrupted", "image_description", "rain", "road_blockade", "water_level", "traffic"], "identifications": []}, {"id": "001503", "name": "AV. PASTEUR X R. VENCESLAU - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951551, "longitude": -43.175261, "objects": ["rain", "traffic", "water_level", "image_corrupted", "image_description", "road_blockade"], "identifications": [{"id": "936dbc51-231e-41b0-b87b-fe5d96d48a43", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.881300+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or obstacles observed. Vehicles are able to navigate the wet road conditions without difficulty.", "snapshot": {"id": "d2e72718-ac6e-431d-acad-9ac64270cd22", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/d2e72718-ac6e-431d-acad-9ac64270cd22.png", "timestamp": "2024-02-15T20:33:04.168540+00:00"}}, {"id": "9d15f08b-77d6-4273-955c-675651e1e8ee", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.271793+00:00", "label": "low", "label_explanation": "While the road is wet, the water appears to be shallow and confined to small puddles. It does not significantly cover the road surface.", "snapshot": {"id": "d2e72718-ac6e-431d-acad-9ac64270cd22", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/d2e72718-ac6e-431d-acad-9ac64270cd22.png", "timestamp": "2024-02-15T20:33:04.168540+00:00"}}, {"id": "95231c19-3802-4bf4-9785-fa72c6105224", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.563470+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "d2e72718-ac6e-431d-acad-9ac64270cd22", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/d2e72718-ac6e-431d-acad-9ac64270cd22.png", "timestamp": "2024-02-15T20:33:04.168540+00:00"}}, {"id": "33a2de84-17aa-4df1-82b1-3a8287b27978", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:19.704612+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible water puddles, indicating the presence of rain.", "snapshot": {"id": "d2e72718-ac6e-431d-acad-9ac64270cd22", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/d2e72718-ac6e-431d-acad-9ac64270cd22.png", "timestamp": "2024-02-15T20:33:04.168540+00:00"}}, {"id": "4d963582-47b1-452c-9e01-0681ba21658f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:19.074949+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It appears to be raining, as the road surface is wet and there are water puddles.", "snapshot": {"id": "d2e72718-ac6e-431d-acad-9ac64270cd22", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/d2e72718-ac6e-431d-acad-9ac64270cd22.png", "timestamp": "2024-02-15T20:33:04.168540+00:00"}}, {"id": "243329cb-42b6-4917-ae62-96eb9fe01cc9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.486244+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no major distortions or data loss.", "snapshot": {"id": "d2e72718-ac6e-431d-acad-9ac64270cd22", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/d2e72718-ac6e-431d-acad-9ac64270cd22.png", "timestamp": "2024-02-15T20:33:04.168540+00:00"}}, {"id": "10c1dfe5-cf71-40a0-aad6-a5dcf8ef235f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.031406+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. All lanes are open and traffic is flowing smoothly.", "snapshot": {"id": "5db858ed-6a65-4eac-94cb-1aa50108641e", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/5db858ed-6a65-4eac-94cb-1aa50108641e.png", "timestamp": "2024-02-15T20:42:56.313845+00:00"}}, {"id": "fa579054-c2d6-4251-8716-8101be9fab24", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.796881+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "5db858ed-6a65-4eac-94cb-1aa50108641e", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/5db858ed-6a65-4eac-94cb-1aa50108641e.png", "timestamp": "2024-02-15T20:42:56.313845+00:00"}}, {"id": "0c1ce132-8188-4563-9e75-8bc35ae9effd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.261158+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently drizzling.", "snapshot": {"id": "5db858ed-6a65-4eac-94cb-1aa50108641e", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/5db858ed-6a65-4eac-94cb-1aa50108641e.png", "timestamp": "2024-02-15T20:42:56.313845+00:00"}}, {"id": "16e13597-09b9-46c7-b34e-2632cd8b5071", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.529232+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water appears to have drained off or evaporated, leaving the road wet but not flooded.", "snapshot": {"id": "5db858ed-6a65-4eac-94cb-1aa50108641e", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/5db858ed-6a65-4eac-94cb-1aa50108641e.png", "timestamp": "2024-02-15T20:42:56.313845+00:00"}}, {"id": "fa6d07ed-ffc5-4617-824e-4713a8e4ade2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.035944+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime and the weather appears to be cloudy with a slight drizzle. There are several vehicles on the road, including cars, buses, and motorcycles. The road surface is wet but not flooded. There are trees and buildings in the background.", "snapshot": {"id": "5db858ed-6a65-4eac-94cb-1aa50108641e", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/5db858ed-6a65-4eac-94cb-1aa50108641e.png", "timestamp": "2024-02-15T20:42:56.313845+00:00"}}, {"id": "35e7a5d2-ff74-4cf1-9c8c-9549eb5d6713", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.760585+00:00", "label": "false", "label_explanation": "The image is clear with no visible signs of corruption or data loss.", "snapshot": {"id": "5db858ed-6a65-4eac-94cb-1aa50108641e", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/5db858ed-6a65-4eac-94cb-1aa50108641e.png", "timestamp": "2024-02-15T20:42:56.313845+00:00"}}, {"id": "0d7b80ae-fbcc-45ef-b947-840340c78376", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.670793+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "936412b1-bdf1-4ac7-b59a-b949c6e8fcc9", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/936412b1-bdf1-4ac7-b59a-b949c6e8fcc9.png", "timestamp": "2024-02-15T20:35:31.433344+00:00"}}, {"id": "918ac8e0-45f2-48ab-8be0-c32b341e0cd8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.834643+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the vehicles.", "snapshot": {"id": "936412b1-bdf1-4ac7-b59a-b949c6e8fcc9", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/936412b1-bdf1-4ac7-b59a-b949c6e8fcc9.png", "timestamp": "2024-02-15T20:35:31.433344+00:00"}}, {"id": "e28b96a2-60fb-4014-98cb-dbabc4168662", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.379049+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no major distortions or data loss.", "snapshot": {"id": "936412b1-bdf1-4ac7-b59a-b949c6e8fcc9", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/936412b1-bdf1-4ac7-b59a-b949c6e8fcc9.png", "timestamp": "2024-02-15T20:35:31.433344+00:00"}}, {"id": "07da4f53-a9bc-4b44-88cc-1897382270c9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.253865+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "936412b1-bdf1-4ac7-b59a-b949c6e8fcc9", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/936412b1-bdf1-4ac7-b59a-b949c6e8fcc9.png", "timestamp": "2024-02-15T20:35:31.433344+00:00"}}, {"id": "5fdd7375-82d3-4c01-97d2-c5b48aff693d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.023871+00:00", "label": "low", "label_explanation": "There are some puddles on the road, but the water level is generally low and does not pose a significant risk to traffic.", "snapshot": {"id": "936412b1-bdf1-4ac7-b59a-b949c6e8fcc9", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/936412b1-bdf1-4ac7-b59a-b949c6e8fcc9.png", "timestamp": "2024-02-15T20:35:31.433344+00:00"}}, {"id": "6e43e97a-a4b5-4417-acf2-111d267131e2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.613753+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is raining, and the road surface is wet with some puddles.", "snapshot": {"id": "936412b1-bdf1-4ac7-b59a-b949c6e8fcc9", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/936412b1-bdf1-4ac7-b59a-b949c6e8fcc9.png", "timestamp": "2024-02-15T20:35:31.433344+00:00"}}, {"id": "d4866cb5-fbe1-456e-b0fb-c9c05f371356", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.815154+00:00", "label": "null", "label_explanation": "The image is corrupted and has a large green block in the lower half, making it impossible to analyze the road conditions.", "snapshot": {"id": "13f19494-cb75-4030-a7dc-4febfea49ddb", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/13f19494-cb75-4030-a7dc-4febfea49ddb.png", "timestamp": "2024-02-15T20:38:02.477398+00:00"}}, {"id": "6d22ecb6-0435-4b9e-aef0-0132da8bf75e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.498251+00:00", "label": "true", "label_explanation": "The image is corrupted and has a large green block in the lower half, making it impossible to analyze the road conditions.", "snapshot": {"id": "13f19494-cb75-4030-a7dc-4febfea49ddb", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/13f19494-cb75-4030-a7dc-4febfea49ddb.png", "timestamp": "2024-02-15T20:38:02.477398+00:00"}}, {"id": "4748cfe0-95d8-431e-be11-acd5207b0b8d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.787055+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions blocking traffic flow.", "snapshot": {"id": "4089f60a-e08b-4179-8f31-2700a64d5440", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/4089f60a-e08b-4179-8f31-2700a64d5440.png", "timestamp": "2024-02-15T20:40:32.625845+00:00"}}, {"id": "693ec08c-c64f-46ec-a017-7b6187dceff9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.817752+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy with some light rain. There are several vehicles on the road, including cars, buses, and taxis. The road is wet from the rain, but there are no major obstructions visible.", "snapshot": {"id": "4089f60a-e08b-4179-8f31-2700a64d5440", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/4089f60a-e08b-4179-8f31-2700a64d5440.png", "timestamp": "2024-02-15T20:40:32.625845+00:00"}}, {"id": "20e1c65d-d6d3-4581-9161-63992d57e5ba", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.506957+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or congestion visible.", "snapshot": {"id": "4089f60a-e08b-4179-8f31-2700a64d5440", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/4089f60a-e08b-4179-8f31-2700a64d5440.png", "timestamp": "2024-02-15T20:40:32.625845+00:00"}}, {"id": "afec2c82-163c-47ca-b786-3686222ff7c3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.256008+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a thin layer of water covering the surface.", "snapshot": {"id": "4089f60a-e08b-4179-8f31-2700a64d5440", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/4089f60a-e08b-4179-8f31-2700a64d5440.png", "timestamp": "2024-02-15T20:40:32.625845+00:00"}}, {"id": "2c6c7c49-bab6-43f6-a397-15b371c11f91", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.031118+00:00", "label": "true", "label_explanation": "The road surface is wet from the rain, but there are no large puddles or significant water accumulation.", "snapshot": {"id": "4089f60a-e08b-4179-8f31-2700a64d5440", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/4089f60a-e08b-4179-8f31-2700a64d5440.png", "timestamp": "2024-02-15T20:40:32.625845+00:00"}}, {"id": "09993953-e1fa-49da-993d-ddff6f7f94ee", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.557172+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4089f60a-e08b-4179-8f31-2700a64d5440", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/4089f60a-e08b-4179-8f31-2700a64d5440.png", "timestamp": "2024-02-15T20:40:32.625845+00:00"}}, {"id": "ba4b765f-9183-45bf-8b15-fcf8d2790c70", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.517270+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. Reflections of light on the road's surface and the dark, cloudy sky further suggest the presence of moisture.", "snapshot": {"id": "cabd10d5-de88-4178-ba2f-e4e0043e5dcb", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/cabd10d5-de88-4178-ba2f-e4e0043e5dcb.png", "timestamp": "2024-02-15T20:45:20.071949+00:00"}}, {"id": "dc294888-fe52-4e20-bf55-16ae51afbf09", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.314963+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. Tall buildings and lush trees line the street, and the sky appears cloudy.", "snapshot": {"id": "cabd10d5-de88-4178-ba2f-e4e0043e5dcb", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/cabd10d5-de88-4178-ba2f-e4e0043e5dcb.png", "timestamp": "2024-02-15T20:45:20.071949+00:00"}}, {"id": "c4caf703-e770-4ebb-ba50-b328906ef4c0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.220953+00:00", "label": "free", "label_explanation": "The road is clear, with no visible blockades or obstructions. Traffic is able to flow freely without any hindrances.", "snapshot": {"id": "cabd10d5-de88-4178-ba2f-e4e0043e5dcb", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/cabd10d5-de88-4178-ba2f-e4e0043e5dcb.png", "timestamp": "2024-02-15T20:45:20.071949+00:00"}}, {"id": "55b6fe72-a606-41d5-9097-29df1664fcfd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.008571+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with a steady flow of vehicles moving in both directions. There are no major obstructions or disruptions to traffic flow.", "snapshot": {"id": "cabd10d5-de88-4178-ba2f-e4e0043e5dcb", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/cabd10d5-de88-4178-ba2f-e4e0043e5dcb.png", "timestamp": "2024-02-15T20:45:20.071949+00:00"}}, {"id": "2bfee50b-ba59-4706-98d8-9460e81daffd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.741718+00:00", "label": "low", "label_explanation": "While the road is wet, there are no significant puddles or standing water. The water level is low, with only a thin layer of moisture on the road's surface.", "snapshot": {"id": "cabd10d5-de88-4178-ba2f-e4e0043e5dcb", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/cabd10d5-de88-4178-ba2f-e4e0043e5dcb.png", "timestamp": "2024-02-15T20:45:20.071949+00:00"}}, {"id": "b5d691b8-ccc2-424d-9426-0ea66d1478b8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.119356+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cabd10d5-de88-4178-ba2f-e4e0043e5dcb", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/cabd10d5-de88-4178-ba2f-e4e0043e5dcb.png", "timestamp": "2024-02-15T20:45:20.071949+00:00"}}, {"id": "cddf94f2-b1b0-4a38-bf74-a4b3d995d55d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.192215+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades impeding traffic.", "snapshot": {"id": "e7571632-aee5-4ed4-a6cf-e2e9651b3c30", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e7571632-aee5-4ed4-a6cf-e2e9651b3c30.png", "timestamp": "2024-02-15T20:47:45.169195+00:00"}}, {"id": "bb714a08-7c3a-4e35-b1dd-eb2eda4f049e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.573587+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the vehicle capturing the scene.", "snapshot": {"id": "e7571632-aee5-4ed4-a6cf-e2e9651b3c30", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e7571632-aee5-4ed4-a6cf-e2e9651b3c30.png", "timestamp": "2024-02-15T20:47:45.169195+00:00"}}, {"id": "51a289fd-7745-4195-b0d7-8d976ad509e6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.286651+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is raining, and the road surface is wet with some puddles.", "snapshot": {"id": "e7571632-aee5-4ed4-a6cf-e2e9651b3c30", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e7571632-aee5-4ed4-a6cf-e2e9651b3c30.png", "timestamp": "2024-02-15T20:47:45.169195+00:00"}}, {"id": "de2b155e-7fd6-4fae-82f5-fd748c57fe2b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.089506+00:00", "label": "true", "label_explanation": "The image is slightly blurred, but overall clear with no major distortions or data loss.", "snapshot": {"id": "e7571632-aee5-4ed4-a6cf-e2e9651b3c30", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e7571632-aee5-4ed4-a6cf-e2e9651b3c30.png", "timestamp": "2024-02-15T20:47:45.169195+00:00"}}, {"id": "5876ca05-8265-4ba1-b7be-90380ad79cc2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.990179+00:00", "label": "easy", "label_explanation": "Traffic appears to be moving smoothly, with no major congestion or obstacles hindering the flow of vehicles.", "snapshot": {"id": "e7571632-aee5-4ed4-a6cf-e2e9651b3c30", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e7571632-aee5-4ed4-a6cf-e2e9651b3c30.png", "timestamp": "2024-02-15T20:47:45.169195+00:00"}}, {"id": "22f46a44-34bf-474e-a824-88c1baca81b1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.779368+00:00", "label": "low", "label_explanation": "While the road is wet, there are only small puddles of water on the road surface, and no significant accumulation.", "snapshot": {"id": "e7571632-aee5-4ed4-a6cf-e2e9651b3c30", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e7571632-aee5-4ed4-a6cf-e2e9651b3c30.png", "timestamp": "2024-02-15T20:47:45.169195+00:00"}}, {"id": "93153f2e-fed3-4b80-aaa3-cddf27386233", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.673449+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during rainfall. The road surface is wet, with some areas showing water accumulation.", "snapshot": {"id": "829321b8-5ec7-4636-bc72-f840fa54e5b0", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/829321b8-5ec7-4636-bc72-f840fa54e5b0.png", "timestamp": "2024-02-15T20:30:27.562276+00:00"}}, {"id": "583bbcd7-96c5-4912-81a4-b07401b84641", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.120869+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "829321b8-5ec7-4636-bc72-f840fa54e5b0", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/829321b8-5ec7-4636-bc72-f840fa54e5b0.png", "timestamp": "2024-02-15T20:30:27.562276+00:00"}}, {"id": "ed6c64ce-4144-4e06-8986-463ea92e860d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.805936+00:00", "label": "easy", "label_explanation": "Traffic appears to be moving smoothly, with no major congestion or disruptions caused by the rain.", "snapshot": {"id": "829321b8-5ec7-4636-bc72-f840fa54e5b0", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/829321b8-5ec7-4636-bc72-f840fa54e5b0.png", "timestamp": "2024-02-15T20:30:27.562276+00:00"}}, {"id": "14ceb875-f790-4dd1-b497-a73850da067a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.360781+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no major distortions or data loss.", "snapshot": {"id": "829321b8-5ec7-4636-bc72-f840fa54e5b0", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/829321b8-5ec7-4636-bc72-f840fa54e5b0.png", "timestamp": "2024-02-15T20:30:27.562276+00:00"}}, {"id": "c22c0043-7fbb-4d1a-b226-5743df030079", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.456439+00:00", "label": "low", "label_explanation": "While the road is wet, there are no significant water puddles or accumulation observed.", "snapshot": {"id": "829321b8-5ec7-4636-bc72-f840fa54e5b0", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/829321b8-5ec7-4636-bc72-f840fa54e5b0.png", "timestamp": "2024-02-15T20:30:27.562276+00:00"}}, {"id": "a35a6de6-3095-43c7-b002-69a0d70390b4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.214273+00:00", "label": "true", "label_explanation": "The presence of rain is evident from the wet road surface and the rain drops visible on the camera lens.", "snapshot": {"id": "829321b8-5ec7-4636-bc72-f840fa54e5b0", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/829321b8-5ec7-4636-bc72-f840fa54e5b0.png", "timestamp": "2024-02-15T20:30:27.562276+00:00"}}, {"id": "a911cd7a-ff40-4436-8a24-68e453f3a2bc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.760517+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "e290c811-86a4-4150-b484-53ddf5608498", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e290c811-86a4-4150-b484-53ddf5608498.png", "timestamp": "2024-02-15T20:50:07.859953+00:00"}}, {"id": "e343ea75-b554-4cd6-a8cf-7dfcb75a9dff", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.207349+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "e290c811-86a4-4150-b484-53ddf5608498", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e290c811-86a4-4150-b484-53ddf5608498.png", "timestamp": "2024-02-15T20:50:07.859953+00:00"}}, {"id": "184c56ab-8950-4086-bf7a-e15f44fb6b39", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.000575+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "e290c811-86a4-4150-b484-53ddf5608498", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e290c811-86a4-4150-b484-53ddf5608498.png", "timestamp": "2024-02-15T20:50:07.859953+00:00"}}, {"id": "76d07af8-23e9-4469-8996-7019e20d362c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.521946+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears cloudy. There are tall buildings in the background and foliage on either side of the road. The road surface is wet from recent rain.", "snapshot": {"id": "e290c811-86a4-4150-b484-53ddf5608498", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e290c811-86a4-4150-b484-53ddf5608498.png", "timestamp": "2024-02-15T20:50:07.859953+00:00"}}, {"id": "49ba569a-ab1a-4c02-b043-353844726249", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.421863+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "e290c811-86a4-4150-b484-53ddf5608498", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e290c811-86a4-4150-b484-53ddf5608498.png", "timestamp": "2024-02-15T20:50:07.859953+00:00"}}, {"id": "46ec8fbc-d4f0-46a7-a66c-cd83c93b490a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.339118+00:00", "label": "false", "label_explanation": "The image is clear with no visible signs of corruption or data loss.", "snapshot": {"id": "e290c811-86a4-4150-b484-53ddf5608498", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/e290c811-86a4-4150-b484-53ddf5608498.png", "timestamp": "2024-02-15T20:50:07.859953+00:00"}}, {"id": "3ce24efc-2ce4-4e21-a58f-dda48eef46f1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.912454+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible in the image. Traffic is able to flow freely in both directions.", "snapshot": {"id": "3b90acdc-eb6d-4f8b-be14-117c306c311f", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/3b90acdc-eb6d-4f8b-be14-117c306c311f.png", "timestamp": "2024-02-15T20:52:31.332894+00:00"}}, {"id": "c3de4f93-9f00-4657-b390-1011a9bd9a90", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.700851+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "3b90acdc-eb6d-4f8b-be14-117c306c311f", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/3b90acdc-eb6d-4f8b-be14-117c306c311f.png", "timestamp": "2024-02-15T20:52:31.332894+00:00"}}, {"id": "c947415d-28d1-49b7-8f82-81eaba26bcd7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.295851+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining recently. The rain is not heavy enough to cause significant flooding or traffic disruptions.", "snapshot": {"id": "3b90acdc-eb6d-4f8b-be14-117c306c311f", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/3b90acdc-eb6d-4f8b-be14-117c306c311f.png", "timestamp": "2024-02-15T20:52:31.332894+00:00"}}, {"id": "3699076a-920e-4d37-b47d-8c6e4959a3fc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.023190+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are tall buildings in the background and foliage on either side of the road. The road surface is wet from recent rain, with small puddles scattered around.", "snapshot": {"id": "3b90acdc-eb6d-4f8b-be14-117c306c311f", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/3b90acdc-eb6d-4f8b-be14-117c306c311f.png", "timestamp": "2024-02-15T20:52:31.332894+00:00"}}, {"id": "500b613b-d39f-41dd-8d03-2ae1a0eda30c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.830177+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3b90acdc-eb6d-4f8b-be14-117c306c311f", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/3b90acdc-eb6d-4f8b-be14-117c306c311f.png", "timestamp": "2024-02-15T20:52:31.332894+00:00"}}, {"id": "7329578b-25aa-4140-a76c-0c2a64779397", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.494313+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant risk to vehicles or pedestrians.", "snapshot": {"id": "3b90acdc-eb6d-4f8b-be14-117c306c311f", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/3b90acdc-eb6d-4f8b-be14-117c306c311f.png", "timestamp": "2024-02-15T20:52:31.332894+00:00"}}, {"id": "7e575f64-592d-4445-803d-3fb3db54fe38", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.814061+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable.", "snapshot": {"id": "08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a.png", "timestamp": "2024-02-15T20:54:59.783185+00:00"}}, {"id": "863fd5b5-1dd0-42c8-b9b7-6532d17dc599", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.615845+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move without significant congestion.", "snapshot": {"id": "08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a.png", "timestamp": "2024-02-15T20:54:59.783185+00:00"}}, {"id": "81cdf45e-dba6-4376-b828-7f295a3496b8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.714165+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a.png", "timestamp": "2024-02-15T20:54:59.783185+00:00"}}, {"id": "ccc61cbb-a894-4480-9b37-1434000661ef", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.937123+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including buses and cars. The road is surrounded by buildings and trees.", "snapshot": {"id": "08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a.png", "timestamp": "2024-02-15T20:54:59.783185+00:00"}}, {"id": "0d899fec-1d38-4e61-b0be-65d1ac00dde3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.408287+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a.png", "timestamp": "2024-02-15T20:54:59.783185+00:00"}}, {"id": "d2e99a5b-aef4-4712-b60b-418043f7adcf", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.219895+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a", "camera_id": "001503", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001503/08c3ac0f-fcec-4eb0-ab22-abdb7b4a0f0a.png", "timestamp": "2024-02-15T20:54:59.783185+00:00"}}]}, {"id": "001540", "name": "AV. MARACANA X PRA\u00c7A LUIS LA SAIGNE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92087272, "longitude": -43.23531675, "objects": ["image_corrupted", "water_level", "image_description", "traffic", "road_blockade", "rain"], "identifications": [{"id": "185ec93a-b2d1-4b5d-8267-29981acafd8e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:51.907301+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a few cars parked along the road, but the majority of the road is clear.", "snapshot": {"id": "ad13e6fd-ed16-4679-86e6-a2fbbe017a6a", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ad13e6fd-ed16-4679-86e6-a2fbbe017a6a.png", "timestamp": "2024-02-15T20:30:35.081996+00:00"}}, {"id": "65491d16-35ee-4518-bf10-9d63282c30b3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:52.131790+00:00", "label": "free", "label_explanation": "There are no road blockades present in the image. The road is clear and free of obstructions.", "snapshot": {"id": "ad13e6fd-ed16-4679-86e6-a2fbbe017a6a", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ad13e6fd-ed16-4679-86e6-a2fbbe017a6a.png", "timestamp": "2024-02-15T20:30:35.081996+00:00"}}, {"id": "83bc6018-fa16-4378-a904-b76a3c6da0f5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:51.701156+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no visible signs of water on the road surface.", "snapshot": {"id": "ad13e6fd-ed16-4679-86e6-a2fbbe017a6a", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ad13e6fd-ed16-4679-86e6-a2fbbe017a6a.png", "timestamp": "2024-02-15T20:30:35.081996+00:00"}}, {"id": "1ca8fe37-9eaa-4141-8b46-d83ba95e2856", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:51.236150+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with multiple lanes, surrounded by buildings and trees. The road is relatively straight, with a slight bend to the right. It is bordered by a concrete barrier on one side and a metal fence on the other. There are several cars parked along the road, and a few trees can be seen in the background.", "snapshot": {"id": "ad13e6fd-ed16-4679-86e6-a2fbbe017a6a", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ad13e6fd-ed16-4679-86e6-a2fbbe017a6a.png", "timestamp": "2024-02-15T20:30:35.081996+00:00"}}, {"id": "1d14a2fa-44d9-47a1-b317-e8227813cb67", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:51.422207+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "ad13e6fd-ed16-4679-86e6-a2fbbe017a6a", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ad13e6fd-ed16-4679-86e6-a2fbbe017a6a.png", "timestamp": "2024-02-15T20:30:35.081996+00:00"}}, {"id": "55adaa28-e4fc-4ccc-a280-c918efc4acce", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:50.941233+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ad13e6fd-ed16-4679-86e6-a2fbbe017a6a", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ad13e6fd-ed16-4679-86e6-a2fbbe017a6a.png", "timestamp": "2024-02-15T20:30:35.081996+00:00"}}, {"id": "24559dc3-8ffa-41e5-a947-e07525594b04", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:21.361110+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "60e4a274-8ddd-464c-8b92-4db124c39efc", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/60e4a274-8ddd-464c-8b92-4db124c39efc.png", "timestamp": "2024-02-15T20:28:08.909630+00:00"}}, {"id": "4b1d303b-333a-4032-94c4-a35cf912b27b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:21.154216+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major disruptions. The wet road surface does not appear to be causing any problems for drivers.", "snapshot": {"id": "60e4a274-8ddd-464c-8b92-4db124c39efc", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/60e4a274-8ddd-464c-8b92-4db124c39efc.png", "timestamp": "2024-02-15T20:28:08.909630+00:00"}}, {"id": "c53b284c-b1f0-476e-8614-ee82a454c350", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:20.884601+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "60e4a274-8ddd-464c-8b92-4db124c39efc", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/60e4a274-8ddd-464c-8b92-4db124c39efc.png", "timestamp": "2024-02-15T20:28:08.909630+00:00"}}, {"id": "322f1d01-45de-42a1-b95d-6d54055445c4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:20.683819+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy enough to cause any significant traffic disruptions.", "snapshot": {"id": "60e4a274-8ddd-464c-8b92-4db124c39efc", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/60e4a274-8ddd-464c-8b92-4db124c39efc.png", "timestamp": "2024-02-15T20:28:08.909630+00:00"}}, {"id": "e6bb9959-0e01-4860-9ec3-25ef52408448", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:20.472813+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rain. There are several cars on the road, and the traffic appears to be flowing smoothly.", "snapshot": {"id": "60e4a274-8ddd-464c-8b92-4db124c39efc", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/60e4a274-8ddd-464c-8b92-4db124c39efc.png", "timestamp": "2024-02-15T20:28:08.909630+00:00"}}, {"id": "27911c57-9dfe-48c5-848c-afd7d10ae3a1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:20.260897+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "60e4a274-8ddd-464c-8b92-4db124c39efc", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/60e4a274-8ddd-464c-8b92-4db124c39efc.png", "timestamp": "2024-02-15T20:28:08.909630+00:00"}}, {"id": "eaa3597a-d4b5-46c4-b71b-5a45288e5440", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.699951+00:00", "label": "null", "label_explanation": "The image is corrupted and does not provide any useful information.", "snapshot": {"id": "504946de-f484-460f-8476-def291dade7f", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/504946de-f484-460f-8476-def291dade7f.png", "timestamp": "2024-02-15T20:43:01.100949+00:00"}}, {"id": "d7aee962-9971-465d-a214-4e906ab114ea", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.485674+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform green color replacing the visual data. This indicates a high probability of data loss or image corruption.", "snapshot": {"id": "504946de-f484-460f-8476-def291dade7f", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/504946de-f484-460f-8476-def291dade7f.png", "timestamp": "2024-02-15T20:43:01.100949+00:00"}}, {"id": "53a1b807-4550-44b0-92ce-8384054a078f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.893111+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "caa05297-72d0-4c9d-b8d5-912e2feef351", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/caa05297-72d0-4c9d-b8d5-912e2feef351.png", "timestamp": "2024-02-15T20:47:50.389702+00:00"}}, {"id": "c34b8d50-b213-47f4-ba73-43813e7ac26a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.404704+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "caa05297-72d0-4c9d-b8d5-912e2feef351", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/caa05297-72d0-4c9d-b8d5-912e2feef351.png", "timestamp": "2024-02-15T20:47:50.389702+00:00"}}, {"id": "e2bc2971-9885-4b0b-b8d8-862b5c2ab865", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.169558+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "caa05297-72d0-4c9d-b8d5-912e2feef351", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/caa05297-72d0-4c9d-b8d5-912e2feef351.png", "timestamp": "2024-02-15T20:47:50.389702+00:00"}}, {"id": "c91276a8-01e5-4685-be0a-08de78876c7c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.898097+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "caa05297-72d0-4c9d-b8d5-912e2feef351", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/caa05297-72d0-4c9d-b8d5-912e2feef351.png", "timestamp": "2024-02-15T20:47:50.389702+00:00"}}, {"id": "3eeff65b-cbe3-4664-8aeb-6fa8e0bfcc43", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.677191+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "caa05297-72d0-4c9d-b8d5-912e2feef351", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/caa05297-72d0-4c9d-b8d5-912e2feef351.png", "timestamp": "2024-02-15T20:47:50.389702+00:00"}}, {"id": "05026801-631f-4463-ab44-367824c67f9c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.619175+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving smoothly in both directions. There are no major obstructions or congestion visible.", "snapshot": {"id": "caa05297-72d0-4c9d-b8d5-912e2feef351", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/caa05297-72d0-4c9d-b8d5-912e2feef351.png", "timestamp": "2024-02-15T20:47:50.389702+00:00"}}, {"id": "ac8e86d4-ab83-45de-9258-dd52ccae558f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:31.351489+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "81bb602c-185c-4e18-9095-613e1b0bf4f2", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/81bb602c-185c-4e18-9095-613e1b0bf4f2.png", "timestamp": "2024-02-15T20:33:14.248117+00:00"}}, {"id": "57692e5e-875c-4a15-a826-2a23cfaec51c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:30.530957+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "81bb602c-185c-4e18-9095-613e1b0bf4f2", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/81bb602c-185c-4e18-9095-613e1b0bf4f2.png", "timestamp": "2024-02-15T20:33:14.248117+00:00"}}, {"id": "b38892ad-e3af-4822-8c66-60dd370ac0f1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:30.247366+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "81bb602c-185c-4e18-9095-613e1b0bf4f2", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/81bb602c-185c-4e18-9095-613e1b0bf4f2.png", "timestamp": "2024-02-15T20:33:14.248117+00:00"}}, {"id": "c2926952-d898-43a0-b19d-f4f095878c11", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:30.050800+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "81bb602c-185c-4e18-9095-613e1b0bf4f2", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/81bb602c-185c-4e18-9095-613e1b0bf4f2.png", "timestamp": "2024-02-15T20:33:14.248117+00:00"}}, {"id": "ec2357fa-ca95-445a-943c-2a27bb5b5dc1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:31.035569+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly in both directions. There are no major obstructions or delays visible.", "snapshot": {"id": "81bb602c-185c-4e18-9095-613e1b0bf4f2", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/81bb602c-185c-4e18-9095-613e1b0bf4f2.png", "timestamp": "2024-02-15T20:33:14.248117+00:00"}}, {"id": "58c6043f-0267-4dfb-81d2-2efa9d981398", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:30.803935+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is dry.", "snapshot": {"id": "81bb602c-185c-4e18-9095-613e1b0bf4f2", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/81bb602c-185c-4e18-9095-613e1b0bf4f2.png", "timestamp": "2024-02-15T20:33:14.248117+00:00"}}, {"id": "da9a4341-f99b-4d9e-9ed5-0dc8c610abfa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.234010+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "ec391e15-6b4f-4c7b-ba6b-c487dff436db", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ec391e15-6b4f-4c7b-ba6b-c487dff436db.png", "timestamp": "2024-02-15T20:35:41.104010+00:00"}}, {"id": "2635d9b7-96f9-4ec2-b215-4de74661c29d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.312286+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "ec391e15-6b4f-4c7b-ba6b-c487dff436db", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ec391e15-6b4f-4c7b-ba6b-c487dff436db.png", "timestamp": "2024-02-15T20:35:41.104010+00:00"}}, {"id": "3ca91768-b891-48d8-be6d-4d69146e6668", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.111770+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ec391e15-6b4f-4c7b-ba6b-c487dff436db", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ec391e15-6b4f-4c7b-ba6b-c487dff436db.png", "timestamp": "2024-02-15T20:35:41.104010+00:00"}}, {"id": "aed56ff2-f4f7-49d2-b14f-62e5aa88eeed", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.540336+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "ec391e15-6b4f-4c7b-ba6b-c487dff436db", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ec391e15-6b4f-4c7b-ba6b-c487dff436db.png", "timestamp": "2024-02-15T20:35:41.104010+00:00"}}, {"id": "4f3025bf-f8af-4cb9-835f-effb101dc1fd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.022793+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly.", "snapshot": {"id": "ec391e15-6b4f-4c7b-ba6b-c487dff436db", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ec391e15-6b4f-4c7b-ba6b-c487dff436db.png", "timestamp": "2024-02-15T20:35:41.104010+00:00"}}, {"id": "4f31726c-a157-497d-82de-2fe560c2c020", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.754032+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "ec391e15-6b4f-4c7b-ba6b-c487dff436db", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/ec391e15-6b4f-4c7b-ba6b-c487dff436db.png", "timestamp": "2024-02-15T20:35:41.104010+00:00"}}, {"id": "c355d723-056b-4e10-8db8-72392710961c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.277617+00:00", "label": "free", "label_explanation": "The road is clear, with no visible blockades or obstructions. Traffic is flowing freely.", "snapshot": {"id": "57161e11-f217-4bea-b324-0249e8e3b009", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/57161e11-f217-4bea-b324-0249e8e3b009.png", "timestamp": "2024-02-15T20:38:12.772105+00:00"}}, {"id": "9ca71ac4-17b5-4826-b94b-33cbb6e6c8f4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.071084+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly in both directions. There are no significant obstructions or delays visible.", "snapshot": {"id": "57161e11-f217-4bea-b324-0249e8e3b009", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/57161e11-f217-4bea-b324-0249e8e3b009.png", "timestamp": "2024-02-15T20:38:12.772105+00:00"}}, {"id": "f7055ba0-2113-4c97-b15b-248bc41efa78", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.795830+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "57161e11-f217-4bea-b324-0249e8e3b009", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/57161e11-f217-4bea-b324-0249e8e3b009.png", "timestamp": "2024-02-15T20:38:12.772105+00:00"}}, {"id": "b5b1fd0c-2de9-43af-b202-937cc84130ed", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.590925+00:00", "label": "false", "label_explanation": "There are no visible signs of rain or wetness on the road surface.", "snapshot": {"id": "57161e11-f217-4bea-b324-0249e8e3b009", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/57161e11-f217-4bea-b324-0249e8e3b009.png", "timestamp": "2024-02-15T20:38:12.772105+00:00"}}, {"id": "43304cfd-efbd-46b6-92f0-f14a8e028331", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.373007+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "57161e11-f217-4bea-b324-0249e8e3b009", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/57161e11-f217-4bea-b324-0249e8e3b009.png", "timestamp": "2024-02-15T20:38:12.772105+00:00"}}, {"id": "ce18d7ab-951c-482b-8f5d-ce4862064a6a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.001598+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "57161e11-f217-4bea-b324-0249e8e3b009", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/57161e11-f217-4bea-b324-0249e8e3b009.png", "timestamp": "2024-02-15T20:38:12.772105+00:00"}}, {"id": "d2b61404-f5ec-45af-b9bf-1b4a66f06843", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:40.023940+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "62b31427-163e-483f-a013-4a6ff090dc70", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/62b31427-163e-483f-a013-4a6ff090dc70.png", "timestamp": "2024-02-15T20:45:27.635746+00:00"}}, {"id": "dbe94edf-361e-4d54-a860-87ef95845086", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.209584+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a four-lane road with a concrete median strip and a tree-lined sidewalk on one side. There are several cars on the road, and the weather appears to be overcast.", "snapshot": {"id": "62b31427-163e-483f-a013-4a6ff090dc70", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/62b31427-163e-483f-a013-4a6ff090dc70.png", "timestamp": "2024-02-15T20:45:27.635746+00:00"}}, {"id": "693c96d2-f77c-47c7-bb5d-5dd8cebb4e94", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.824314+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "62b31427-163e-483f-a013-4a6ff090dc70", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/62b31427-163e-483f-a013-4a6ff090dc70.png", "timestamp": "2024-02-15T20:45:27.635746+00:00"}}, {"id": "617db0ec-27f0-42a9-b784-b0f609d38bf8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.612254+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "62b31427-163e-483f-a013-4a6ff090dc70", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/62b31427-163e-483f-a013-4a6ff090dc70.png", "timestamp": "2024-02-15T20:45:27.635746+00:00"}}, {"id": "5a48de31-921c-40b7-a1b2-22ed7c9aad82", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.410386+00:00", "label": "true", "label_explanation": "The road surface is wet, but there is no standing water.", "snapshot": {"id": "62b31427-163e-483f-a013-4a6ff090dc70", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/62b31427-163e-483f-a013-4a6ff090dc70.png", "timestamp": "2024-02-15T20:45:27.635746+00:00"}}, {"id": "4cfadede-7328-4021-9275-b0bb90895c96", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.012411+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "62b31427-163e-483f-a013-4a6ff090dc70", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/62b31427-163e-483f-a013-4a6ff090dc70.png", "timestamp": "2024-02-15T20:45:27.635746+00:00"}}, {"id": "06582d3d-dc0b-4fb0-94a0-58cd41d9e998", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:52.155403+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "d2ee1b21-d924-4d94-bf65-aa652694501c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d2ee1b21-d924-4d94-bf65-aa652694501c.png", "timestamp": "2024-02-15T20:40:39.363769+00:00"}}, {"id": "3137e638-91c0-41f6-871c-91eaaee5729e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.469410+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d2ee1b21-d924-4d94-bf65-aa652694501c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d2ee1b21-d924-4d94-bf65-aa652694501c.png", "timestamp": "2024-02-15T20:40:39.363769+00:00"}}, {"id": "26ac9593-85c5-4007-832a-1e3d17fce1c3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.277205+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and a row of trees on the right. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "d2ee1b21-d924-4d94-bf65-aa652694501c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d2ee1b21-d924-4d94-bf65-aa652694501c.png", "timestamp": "2024-02-15T20:40:39.363769+00:00"}}, {"id": "f3685cc5-eb92-46bc-b204-18ff9a004d7c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.956810+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "d2ee1b21-d924-4d94-bf65-aa652694501c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d2ee1b21-d924-4d94-bf65-aa652694501c.png", "timestamp": "2024-02-15T20:40:39.363769+00:00"}}, {"id": "838c17e0-0f8d-49a7-98a8-771e73e39a3a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.061338+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d2ee1b21-d924-4d94-bf65-aa652694501c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d2ee1b21-d924-4d94-bf65-aa652694501c.png", "timestamp": "2024-02-15T20:40:39.363769+00:00"}}, {"id": "597420c7-a4fd-42ec-8fd9-1767f3a3a087", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.672676+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "d2ee1b21-d924-4d94-bf65-aa652694501c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d2ee1b21-d924-4d94-bf65-aa652694501c.png", "timestamp": "2024-02-15T20:40:39.363769+00:00"}}, {"id": "1e223323-7e27-4757-9c66-843d9823dc9f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.402190+00:00", "label": "easy", "label_explanation": "The traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "d7da56af-f47e-4772-aa35-d1aba7ed768c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d7da56af-f47e-4772-aa35-d1aba7ed768c.png", "timestamp": "2024-02-15T20:52:41.367626+00:00"}}, {"id": "93ddeabc-4553-485b-9db8-15ac32118367", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:52.960500+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road.", "snapshot": {"id": "d7da56af-f47e-4772-aa35-d1aba7ed768c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d7da56af-f47e-4772-aa35-d1aba7ed768c.png", "timestamp": "2024-02-15T20:52:41.367626+00:00"}}, {"id": "b4eab1c8-6a21-406c-bd44-af3ee37c3819", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:52.725276+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and the right. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars and a bus. Trees can be seen lining the street on the right side.", "snapshot": {"id": "d7da56af-f47e-4772-aa35-d1aba7ed768c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d7da56af-f47e-4772-aa35-d1aba7ed768c.png", "timestamp": "2024-02-15T20:52:41.367626+00:00"}}, {"id": "a6421789-4d1c-4d52-86ce-52a57f924acd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:52.471104+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d7da56af-f47e-4772-aa35-d1aba7ed768c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d7da56af-f47e-4772-aa35-d1aba7ed768c.png", "timestamp": "2024-02-15T20:52:41.367626+00:00"}}, {"id": "10f41bd9-cc88-4e77-ab7b-7ad7d09e2de4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.172056+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road, but they do not cover a significant portion of the road surface.", "snapshot": {"id": "d7da56af-f47e-4772-aa35-d1aba7ed768c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d7da56af-f47e-4772-aa35-d1aba7ed768c.png", "timestamp": "2024-02-15T20:52:41.367626+00:00"}}, {"id": "087dcbc2-fda0-498f-b1f4-33ad6179c0b3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.663650+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "d7da56af-f47e-4772-aa35-d1aba7ed768c", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/d7da56af-f47e-4772-aa35-d1aba7ed768c.png", "timestamp": "2024-02-15T20:52:41.367626+00:00"}}, {"id": "760395d5-ee2a-4b45-87b0-387439c60642", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:28.621971+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and free of any obstructions.", "snapshot": {"id": "600baecc-780c-49e7-bcf7-1962d12545da", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/600baecc-780c-49e7-bcf7-1962d12545da.png", "timestamp": "2024-02-15T20:50:15.184207+00:00"}}, {"id": "5cb9598b-69ef-45a6-94fa-8bd5499fd62d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:28.319356+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are moving at a steady pace. There are no visible signs of congestion or accidents.", "snapshot": {"id": "600baecc-780c-49e7-bcf7-1962d12545da", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/600baecc-780c-49e7-bcf7-1962d12545da.png", "timestamp": "2024-02-15T20:50:15.184207+00:00"}}, {"id": "1cb0aeb7-e029-4420-8221-8f99495c42d3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:28.109249+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are a few small puddles, but they are not deep enough to cause any significant problems for vehicles or pedestrians.", "snapshot": {"id": "600baecc-780c-49e7-bcf7-1962d12545da", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/600baecc-780c-49e7-bcf7-1962d12545da.png", "timestamp": "2024-02-15T20:50:15.184207+00:00"}}, {"id": "20306e2c-b29d-4bd5-9488-ce208ce25306", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.410219+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "600baecc-780c-49e7-bcf7-1962d12545da", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/600baecc-780c-49e7-bcf7-1962d12545da.png", "timestamp": "2024-02-15T20:50:15.184207+00:00"}}, {"id": "407372de-22d1-491e-a86a-2c33b611a0c8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.821947+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are a few small puddles on the road. However, the rain appears to have stopped, and the road is not flooded.", "snapshot": {"id": "600baecc-780c-49e7-bcf7-1962d12545da", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/600baecc-780c-49e7-bcf7-1962d12545da.png", "timestamp": "2024-02-15T20:50:15.184207+00:00"}}, {"id": "30d3c64e-016f-4916-9f16-3af85eb1f0a6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.628672+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime, and the weather appears to be overcast with a mix of sunlight and cloud cover. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are several vehicles on the road, including cars, buses, and trucks. The vehicles are moving at a moderate speed, and there are no visible signs of congestion or accidents. The road is lined with trees and buildings, and there are a few pedestrians walking on the sidewalks.", "snapshot": {"id": "600baecc-780c-49e7-bcf7-1962d12545da", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/600baecc-780c-49e7-bcf7-1962d12545da.png", "timestamp": "2024-02-15T20:50:15.184207+00:00"}}, {"id": "000c564c-f686-4679-9fb5-7b1dea1987e3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.351365+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "5a7cf6d9-fb87-4ce4-921e-2ab145a4d524", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/5a7cf6d9-fb87-4ce4-921e-2ab145a4d524.png", "timestamp": "2024-02-15T20:55:07.261376+00:00"}}, {"id": "9ad0069f-4082-4a1a-be94-e17f2f06570a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.844648+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "5a7cf6d9-fb87-4ce4-921e-2ab145a4d524", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/5a7cf6d9-fb87-4ce4-921e-2ab145a4d524.png", "timestamp": "2024-02-15T20:55:07.261376+00:00"}}, {"id": "7bb8d0cc-8267-490e-bd38-854559b743a5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.623774+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "5a7cf6d9-fb87-4ce4-921e-2ab145a4d524", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/5a7cf6d9-fb87-4ce4-921e-2ab145a4d524.png", "timestamp": "2024-02-15T20:55:07.261376+00:00"}}, {"id": "bc558594-b770-41b7-b91d-35035eb6e424", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.137508+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "5a7cf6d9-fb87-4ce4-921e-2ab145a4d524", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/5a7cf6d9-fb87-4ce4-921e-2ab145a4d524.png", "timestamp": "2024-02-15T20:55:07.261376+00:00"}}, {"id": "2efc604e-9d44-4c91-9280-6b7356c2c1fd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.937884+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "5a7cf6d9-fb87-4ce4-921e-2ab145a4d524", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/5a7cf6d9-fb87-4ce4-921e-2ab145a4d524.png", "timestamp": "2024-02-15T20:55:07.261376+00:00"}}, {"id": "3313d33b-d3d9-49ec-890a-9bd8b6706462", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.742608+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5a7cf6d9-fb87-4ce4-921e-2ab145a4d524", "camera_id": "001540", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001540/5a7cf6d9-fb87-4ce4-921e-2ab145a4d524.png", "timestamp": "2024-02-15T20:55:07.261376+00:00"}}]}, {"id": "001158", "name": "AV. AUGUSTO SEVERO N\u00ba 1746 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9145149, "longitude": -43.1761714, "objects": ["image_corrupted", "water_level", "image_description", "traffic", "rain", "road_blockade"], "identifications": [{"id": "787a0bfb-3afc-487b-9e7d-d1d948c0ed5d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:47.858462+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not cover a significant portion of the road surface. This indicates that the rain was not heavy enough to cause significant flooding.", "snapshot": {"id": "6f1829e3-894b-4301-ade2-11b9c81bb4d6", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6f1829e3-894b-4301-ade2-11b9c81bb4d6.png", "timestamp": "2024-02-15T20:30:31.569190+00:00"}}, {"id": "b2bde1e4-be2d-4b5c-b3ec-3f9e58dfa77b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:47.168304+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6f1829e3-894b-4301-ade2-11b9c81bb4d6", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6f1829e3-894b-4301-ade2-11b9c81bb4d6.png", "timestamp": "2024-02-15T20:30:31.569190+00:00"}}, {"id": "87150741-8f21-4428-8915-641df83352c3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.464973+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "6f1829e3-894b-4301-ade2-11b9c81bb4d6", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6f1829e3-894b-4301-ade2-11b9c81bb4d6.png", "timestamp": "2024-02-15T20:30:31.569190+00:00"}}, {"id": "b2a7d6e2-fac0-4c09-9188-6892040b9eba", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:47.625081+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "6f1829e3-894b-4301-ade2-11b9c81bb4d6", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6f1829e3-894b-4301-ade2-11b9c81bb4d6.png", "timestamp": "2024-02-15T20:30:31.569190+00:00"}}, {"id": "78077e7b-43e0-4a29-802c-2b51b09e42cd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.147414+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or disruptions to traffic.", "snapshot": {"id": "6f1829e3-894b-4301-ade2-11b9c81bb4d6", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6f1829e3-894b-4301-ade2-11b9c81bb4d6.png", "timestamp": "2024-02-15T20:30:31.569190+00:00"}}, {"id": "363bb1b7-4cba-47d9-af23-1e6952713f57", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:47.405342+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is a four-lane road with a bus stop on the left side. There are several vehicles on the road, including buses, cars, and motorcycles. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "6f1829e3-894b-4301-ade2-11b9c81bb4d6", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6f1829e3-894b-4301-ade2-11b9c81bb4d6.png", "timestamp": "2024-02-15T20:30:31.569190+00:00"}}, {"id": "85b15061-fd10-404e-b396-167ad61b3384", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.903453+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move at a steady pace.", "snapshot": {"id": "4cf8b61a-1c24-47d3-be1e-1c1b093f5a48", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/4cf8b61a-1c24-47d3-be1e-1c1b093f5a48.png", "timestamp": "2024-02-15T20:33:08.949647+00:00"}}, {"id": "4c7685f2-9337-4145-99dc-0eea78cb5de8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.721883+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and the road surface is still visible.", "snapshot": {"id": "4cf8b61a-1c24-47d3-be1e-1c1b093f5a48", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/4cf8b61a-1c24-47d3-be1e-1c1b093f5a48.png", "timestamp": "2024-02-15T20:33:08.949647+00:00"}}, {"id": "0111aa41-189d-480c-9b25-a19211e653a9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.364648+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "4cf8b61a-1c24-47d3-be1e-1c1b093f5a48", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/4cf8b61a-1c24-47d3-be1e-1c1b093f5a48.png", "timestamp": "2024-02-15T20:33:08.949647+00:00"}}, {"id": "06d88765-a959-4fe4-a6a3-407f7fa81996", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.021782+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a traffic light at the intersection. There are several cars on the road, as well as a bus and a few pedestrians.", "snapshot": {"id": "4cf8b61a-1c24-47d3-be1e-1c1b093f5a48", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/4cf8b61a-1c24-47d3-be1e-1c1b093f5a48.png", "timestamp": "2024-02-15T20:33:08.949647+00:00"}}, {"id": "cf61ae51-6d28-4012-835d-2b86e0d70487", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:24.151230+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable.", "snapshot": {"id": "4cf8b61a-1c24-47d3-be1e-1c1b093f5a48", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/4cf8b61a-1c24-47d3-be1e-1c1b093f5a48.png", "timestamp": "2024-02-15T20:33:08.949647+00:00"}}, {"id": "23ff58af-e439-45c7-bfa3-722657ef8bf7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.765765+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4cf8b61a-1c24-47d3-be1e-1c1b093f5a48", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/4cf8b61a-1c24-47d3-be1e-1c1b093f5a48.png", "timestamp": "2024-02-15T20:33:08.949647+00:00"}}, {"id": "2c06ac24-543d-4aac-b70c-19746f62fe72", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.528281+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and lush trees on the right. It is daytime and the weather appears to be overcast, with some rain.", "snapshot": {"id": "9490d7c3-51aa-43f0-a48a-8a7d8275a938", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/9490d7c3-51aa-43f0-a48a-8a7d8275a938.png", "timestamp": "2024-02-15T20:38:09.007090+00:00"}}, {"id": "5c5483ab-ac43-4ec0-84c3-d6fc9ce49bd5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.446264+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "9490d7c3-51aa-43f0-a48a-8a7d8275a938", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/9490d7c3-51aa-43f0-a48a-8a7d8275a938.png", "timestamp": "2024-02-15T20:38:09.007090+00:00"}}, {"id": "fb9470a6-5042-45bd-8792-419df25cf03a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.205165+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a few cars visible in the image. Traffic appears to be flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "9490d7c3-51aa-43f0-a48a-8a7d8275a938", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/9490d7c3-51aa-43f0-a48a-8a7d8275a938.png", "timestamp": "2024-02-15T20:38:09.007090+00:00"}}, {"id": "53ef499e-defd-4704-a5b1-fa9a2666920f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.948216+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "9490d7c3-51aa-43f0-a48a-8a7d8275a938", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/9490d7c3-51aa-43f0-a48a-8a7d8275a938.png", "timestamp": "2024-02-15T20:38:09.007090+00:00"}}, {"id": "66c5957c-36bd-41ec-9ba6-e6ca1b4e0bc2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.751249+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "9490d7c3-51aa-43f0-a48a-8a7d8275a938", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/9490d7c3-51aa-43f0-a48a-8a7d8275a938.png", "timestamp": "2024-02-15T20:38:09.007090+00:00"}}, {"id": "0b670a32-ab47-436d-8760-edbe5fb81a35", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.277612+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9490d7c3-51aa-43f0-a48a-8a7d8275a938", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/9490d7c3-51aa-43f0-a48a-8a7d8275a938.png", "timestamp": "2024-02-15T20:38:09.007090+00:00"}}, {"id": "b3086cad-18da-49d6-a68c-f4dc9a8a9d9f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.923728+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for free flow of traffic.", "snapshot": {"id": "aff4a2e2-b014-4b81-9385-e2440be9b35f", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/aff4a2e2-b014-4b81-9385-e2440be9b35f.png", "timestamp": "2024-02-15T20:35:35.388752+00:00"}}, {"id": "6e3ed662-f91b-4f85-8e6e-67d5119cd06c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.724733+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "aff4a2e2-b014-4b81-9385-e2440be9b35f", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/aff4a2e2-b014-4b81-9385-e2440be9b35f.png", "timestamp": "2024-02-15T20:35:35.388752+00:00"}}, {"id": "3a9e5862-0aa0-456b-b611-cb9c1a890a27", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.271608+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "aff4a2e2-b014-4b81-9385-e2440be9b35f", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/aff4a2e2-b014-4b81-9385-e2440be9b35f.png", "timestamp": "2024-02-15T20:35:35.388752+00:00"}}, {"id": "122b9b90-e5ce-44d8-a0a5-b2c445a282d6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.831704+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "aff4a2e2-b014-4b81-9385-e2440be9b35f", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/aff4a2e2-b014-4b81-9385-e2440be9b35f.png", "timestamp": "2024-02-15T20:35:35.388752+00:00"}}, {"id": "6958806d-8368-4e00-b5b7-47f6cb5b64a7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.478018+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "aff4a2e2-b014-4b81-9385-e2440be9b35f", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/aff4a2e2-b014-4b81-9385-e2440be9b35f.png", "timestamp": "2024-02-15T20:35:35.388752+00:00"}}, {"id": "e509a77f-152e-4ac7-aae6-e6c3a666b4d9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.045597+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and lush trees on the right. It is daytime and the weather appears to be cloudy and wet.", "snapshot": {"id": "aff4a2e2-b014-4b81-9385-e2440be9b35f", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/aff4a2e2-b014-4b81-9385-e2440be9b35f.png", "timestamp": "2024-02-15T20:35:35.388752+00:00"}}, {"id": "73205aec-60b7-4ad0-a6aa-e2fd135467df", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.090318+00:00", "label": "free", "label_explanation": "There are no obstructions visible in the image, so the road is clear for traffic.", "snapshot": {"id": "92298e4a-4d1d-47b0-98e1-4e6149f289b6", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/92298e4a-4d1d-47b0-98e1-4e6149f289b6.png", "timestamp": "2024-02-15T20:45:26.987813+00:00"}}, {"id": "d5c46520-6821-46ff-b96b-233a968ffb68", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.593433+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they do not cover a significant portion of the road surface.", "snapshot": {"id": "92298e4a-4d1d-47b0-98e1-4e6149f289b6", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/92298e4a-4d1d-47b0-98e1-4e6149f289b6.png", "timestamp": "2024-02-15T20:45:26.987813+00:00"}}, {"id": "708c4562-f3cf-42b1-8363-7a27bd35cfc1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.137153+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and lush trees on the right. The road is wet from recent rain, and there are a few puddles on the surface. There are no vehicles visible in the image.", "snapshot": {"id": "92298e4a-4d1d-47b0-98e1-4e6149f289b6", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/92298e4a-4d1d-47b0-98e1-4e6149f289b6.png", "timestamp": "2024-02-15T20:45:26.987813+00:00"}}, {"id": "554b43eb-f55a-4d1d-bef5-733a9e786681", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.441556+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are puddles on the surface. This indicates that it has been raining recently.", "snapshot": {"id": "92298e4a-4d1d-47b0-98e1-4e6149f289b6", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/92298e4a-4d1d-47b0-98e1-4e6149f289b6.png", "timestamp": "2024-02-15T20:45:26.987813+00:00"}}, {"id": "1a39d630-f015-4930-9f1a-d63abd12e055", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.023556+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "92298e4a-4d1d-47b0-98e1-4e6149f289b6", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/92298e4a-4d1d-47b0-98e1-4e6149f289b6.png", "timestamp": "2024-02-15T20:45:26.987813+00:00"}}, {"id": "522db3da-98f5-42dc-b78e-8f4cfb6e833c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.894421+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "89687e73-bf8c-4538-a5d8-9b3516d54198", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/89687e73-bf8c-4538-a5d8-9b3516d54198.png", "timestamp": "2024-02-15T20:40:35.545041+00:00"}}, {"id": "bc345d2d-bfdf-4918-bc9f-b90f29eee135", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.551525+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy, as the road is still visible and there is no standing water.", "snapshot": {"id": "89687e73-bf8c-4538-a5d8-9b3516d54198", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/89687e73-bf8c-4538-a5d8-9b3516d54198.png", "timestamp": "2024-02-15T20:40:35.545041+00:00"}}, {"id": "c80c8a7c-eec6-4499-8c19-ddc5f67c3803", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.174465+00:00", "label": "easy", "label_explanation": "The traffic appears to be moderate, with cars moving at a steady pace. There are no major obstructions or accidents visible in the image.", "snapshot": {"id": "89687e73-bf8c-4538-a5d8-9b3516d54198", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/89687e73-bf8c-4538-a5d8-9b3516d54198.png", "timestamp": "2024-02-15T20:40:35.545041+00:00"}}, {"id": "602444e3-efe4-4410-b8f2-0d8680217f18", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.432283+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "89687e73-bf8c-4538-a5d8-9b3516d54198", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/89687e73-bf8c-4538-a5d8-9b3516d54198.png", "timestamp": "2024-02-15T20:40:35.545041+00:00"}}, {"id": "8cd5beff-d924-479b-8462-7a79a30b3de1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.075353+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "89687e73-bf8c-4538-a5d8-9b3516d54198", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/89687e73-bf8c-4538-a5d8-9b3516d54198.png", "timestamp": "2024-02-15T20:40:35.545041+00:00"}}, {"id": "cf93cbdc-2fef-437d-a55c-b813da5e6af9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.317862+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is a four-lane road with a bus stop on the left side. There are several cars on the road, and the traffic appears to be moderate. There are trees on either side of the road, and buildings in the background.", "snapshot": {"id": "89687e73-bf8c-4538-a5d8-9b3516d54198", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/89687e73-bf8c-4538-a5d8-9b3516d54198.png", "timestamp": "2024-02-15T20:40:35.545041+00:00"}}, {"id": "87e36e65-b044-416b-9385-c470e353d69c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.550463+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "5845753d-8379-46ae-a707-0973e5bd20f4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/5845753d-8379-46ae-a707-0973e5bd20f4.png", "timestamp": "2024-02-15T20:47:47.683563+00:00"}}, {"id": "722891ec-418d-40ca-ac76-4cf8bd8f2053", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.857984+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a bus, a car, and a motorcycle on the road. The road is wet from recent rain, and there are some trees and buildings in the background.", "snapshot": {"id": "5845753d-8379-46ae-a707-0973e5bd20f4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/5845753d-8379-46ae-a707-0973e5bd20f4.png", "timestamp": "2024-02-15T20:47:47.683563+00:00"}}, {"id": "fc77c05c-da3e-4387-8ee1-9fce248ae3be", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.661903+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5845753d-8379-46ae-a707-0973e5bd20f4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/5845753d-8379-46ae-a707-0973e5bd20f4.png", "timestamp": "2024-02-15T20:47:47.683563+00:00"}}, {"id": "eba135cc-8030-4f42-8914-892a196e7b31", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.357858+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant problems for traffic.", "snapshot": {"id": "5845753d-8379-46ae-a707-0973e5bd20f4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/5845753d-8379-46ae-a707-0973e5bd20f4.png", "timestamp": "2024-02-15T20:47:47.683563+00:00"}}, {"id": "eb31337c-7819-4315-a045-9ae90a416d8d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.988291+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "5845753d-8379-46ae-a707-0973e5bd20f4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/5845753d-8379-46ae-a707-0973e5bd20f4.png", "timestamp": "2024-02-15T20:47:47.683563+00:00"}}, {"id": "3212a331-118f-4d89-9434-b1c0a696baf7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.158526+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "5845753d-8379-46ae-a707-0973e5bd20f4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/5845753d-8379-46ae-a707-0973e5bd20f4.png", "timestamp": "2024-02-15T20:47:47.683563+00:00"}}, {"id": "57aa53d5-c3e8-45da-b3c5-bf15186124e8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.982198+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4.png", "timestamp": "2024-02-15T20:43:00.269112+00:00"}}, {"id": "cce6d449-faa2-49aa-9a16-3aaac95f57bd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.262208+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible obstructions or traffic congestion.", "snapshot": {"id": "59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4.png", "timestamp": "2024-02-15T20:43:00.269112+00:00"}}, {"id": "ea7f0efc-062e-4d56-9e87-09ea33134ba0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.792661+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4.png", "timestamp": "2024-02-15T20:43:00.269112+00:00"}}, {"id": "d4a17f7b-aca1-4f2e-b38d-054c8291645c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.479531+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road, and traffic is flowing smoothly.", "snapshot": {"id": "59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4.png", "timestamp": "2024-02-15T20:43:00.269112+00:00"}}, {"id": "9252374b-cb31-4af8-8431-6a3e65d99eaa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.502441+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and lush trees on the right. The road is wet from recent rain, and there are several traffic cones and barrels on the right side of the road.", "snapshot": {"id": "59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4.png", "timestamp": "2024-02-15T20:43:00.269112+00:00"}}, {"id": "3406e744-3ee7-4a15-ba01-a9c62cb706e5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.280658+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/59034ac2-ce1e-471f-b8e6-d9ba9ffc24d4.png", "timestamp": "2024-02-15T20:43:00.269112+00:00"}}, {"id": "987d8708-f604-4408-8ef0-1cf71efa0ea6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.283620+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "6d3de18c-422e-4624-8122-34dd10a7b6e4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6d3de18c-422e-4624-8122-34dd10a7b6e4.png", "timestamp": "2024-02-15T20:55:07.270100+00:00"}}, {"id": "a74c885e-097a-4ce3-ab17-7a273b3db4ec", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.804352+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "6d3de18c-422e-4624-8122-34dd10a7b6e4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6d3de18c-422e-4624-8122-34dd10a7b6e4.png", "timestamp": "2024-02-15T20:55:07.270100+00:00"}}, {"id": "2d30cde9-187d-4b9d-9d68-c91f47563438", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.531467+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "6d3de18c-422e-4624-8122-34dd10a7b6e4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6d3de18c-422e-4624-8122-34dd10a7b6e4.png", "timestamp": "2024-02-15T20:55:07.270100+00:00"}}, {"id": "3c7d4120-b9ed-40e8-860d-dc7c6a240eb9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.067338+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, including buses and cars. The road is wet from recent rain, but there are no significant obstructions or hazards visible.", "snapshot": {"id": "6d3de18c-422e-4624-8122-34dd10a7b6e4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6d3de18c-422e-4624-8122-34dd10a7b6e4.png", "timestamp": "2024-02-15T20:55:07.270100+00:00"}}, {"id": "5489b49f-4929-43f3-882d-60ab6fa48767", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.070757+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free movement of traffic.", "snapshot": {"id": "6d3de18c-422e-4624-8122-34dd10a7b6e4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6d3de18c-422e-4624-8122-34dd10a7b6e4.png", "timestamp": "2024-02-15T20:55:07.270100+00:00"}}, {"id": "51e8c93d-9291-4e5a-b960-e5c59f3d75fb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.777813+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6d3de18c-422e-4624-8122-34dd10a7b6e4", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/6d3de18c-422e-4624-8122-34dd10a7b6e4.png", "timestamp": "2024-02-15T20:55:07.270100+00:00"}}, {"id": "46d58b77-4038-4d7a-9970-1bac719328d8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.903211+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation or flooding.", "snapshot": {"id": "8a3262d2-4bd5-471a-8717-0f227e15fbce", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/8a3262d2-4bd5-471a-8717-0f227e15fbce.png", "timestamp": "2024-02-15T20:50:11.226243+00:00"}}, {"id": "b0977dca-db99-4482-9420-524588746519", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.360851+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "8a3262d2-4bd5-471a-8717-0f227e15fbce", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/8a3262d2-4bd5-471a-8717-0f227e15fbce.png", "timestamp": "2024-02-15T20:50:11.226243+00:00"}}, {"id": "827a474f-0f18-4a87-be2e-5e0a33580c4b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.159768+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving steadily in their respective lanes. No major congestion or disruptions are observed.", "snapshot": {"id": "8a3262d2-4bd5-471a-8717-0f227e15fbce", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/8a3262d2-4bd5-471a-8717-0f227e15fbce.png", "timestamp": "2024-02-15T20:50:11.226243+00:00"}}, {"id": "560ebf70-21c8-4d88-a422-a9cee0b6e6f2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.650331+00:00", "label": "false", "label_explanation": "Although the weather appears cloudy, there is no visible rain present on the road surface.", "snapshot": {"id": "8a3262d2-4bd5-471a-8717-0f227e15fbce", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/8a3262d2-4bd5-471a-8717-0f227e15fbce.png", "timestamp": "2024-02-15T20:50:11.226243+00:00"}}, {"id": "e1290a21-ec1e-4203-9ca3-709d81347114", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.416524+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection during daytime. It features tall buildings, lush trees, and various vehicles on the road. The weather appears to be cloudy, with no visible signs of rain.", "snapshot": {"id": "8a3262d2-4bd5-471a-8717-0f227e15fbce", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/8a3262d2-4bd5-471a-8717-0f227e15fbce.png", "timestamp": "2024-02-15T20:50:11.226243+00:00"}}, {"id": "29210fa6-6a33-478c-8127-9947ae166c01", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.174248+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8a3262d2-4bd5-471a-8717-0f227e15fbce", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/8a3262d2-4bd5-471a-8717-0f227e15fbce.png", "timestamp": "2024-02-15T20:50:11.226243+00:00"}}, {"id": "0bfc9173-fb30-4685-b181-99f515c6a2ee", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.078414+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "f9132cc7-b457-4c9a-9172-825660980d64", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/f9132cc7-b457-4c9a-9172-825660980d64.png", "timestamp": "2024-02-15T20:52:35.297408+00:00"}}, {"id": "1ac819c8-b4b9-44af-ba1f-6712dcc22de2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.655151+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, only a thin layer of water that has not yet evaporated or been absorbed into the road.", "snapshot": {"id": "f9132cc7-b457-4c9a-9172-825660980d64", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/f9132cc7-b457-4c9a-9172-825660980d64.png", "timestamp": "2024-02-15T20:52:35.297408+00:00"}}, {"id": "dc9b69f9-be6b-4706-9add-825f0b0b4eca", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.986476+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f9132cc7-b457-4c9a-9172-825660980d64", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/f9132cc7-b457-4c9a-9172-825660980d64.png", "timestamp": "2024-02-15T20:52:35.297408+00:00"}}, {"id": "a5f8608e-e49b-4d60-b17e-5365b6941d0e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.400278+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "f9132cc7-b457-4c9a-9172-825660980d64", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/f9132cc7-b457-4c9a-9172-825660980d64.png", "timestamp": "2024-02-15T20:52:35.297408+00:00"}}, {"id": "8fc20619-1ca4-4665-babd-f6387f2182c7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.165465+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and lush trees on the right. The road is wet from recent rain, but there are no significant puddles or waterlogging.", "snapshot": {"id": "f9132cc7-b457-4c9a-9172-825660980d64", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/f9132cc7-b457-4c9a-9172-825660980d64.png", "timestamp": "2024-02-15T20:52:35.297408+00:00"}}, {"id": "f1e42eb2-2d08-4ba7-8740-ab459db23e89", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.868270+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion. Vehicles are able to move freely.", "snapshot": {"id": "f9132cc7-b457-4c9a-9172-825660980d64", "camera_id": "001158", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001158/f9132cc7-b457-4c9a-9172-825660980d64.png", "timestamp": "2024-02-15T20:52:35.297408+00:00"}}]}, {"id": "001553", "name": "R. ISIDRO DE FIGUEIREDO X R. PROF. EURICO RABELO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914009, "longitude": -43.230984, "objects": ["image_description", "rain", "image_corrupted", "road_blockade", "traffic", "water_level"], "identifications": [{"id": "21f88da7-7d7f-4a75-8293-b5868069b3ff", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.428726+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "707e9346-4648-4356-acba-8711c7be527f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/707e9346-4648-4356-acba-8711c7be527f.png", "timestamp": "2024-02-15T20:42:58.180152+00:00"}}, {"id": "af00c8ac-9208-4837-8d43-b0303600eb71", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.939659+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "707e9346-4648-4356-acba-8711c7be527f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/707e9346-4648-4356-acba-8711c7be527f.png", "timestamp": "2024-02-15T20:42:58.180152+00:00"}}, {"id": "7ca3e0a8-625c-427e-a2fe-fa91ce84804c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.076899+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "707e9346-4648-4356-acba-8711c7be527f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/707e9346-4648-4356-acba-8711c7be527f.png", "timestamp": "2024-02-15T20:42:58.180152+00:00"}}, {"id": "daf3c2ff-cf64-4338-b387-d1a4b394364f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.108525+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rain. There are several parked cars on the side of the road, and a few trees can be seen lining the street.", "snapshot": {"id": "707e9346-4648-4356-acba-8711c7be527f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/707e9346-4648-4356-acba-8711c7be527f.png", "timestamp": "2024-02-15T20:42:58.180152+00:00"}}, {"id": "fe1eb365-5a4a-4bbd-8ea7-115557700dec", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.814945+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars on the road. The parked cars on the side of the road indicate that the traffic is not usually heavy on this street.", "snapshot": {"id": "707e9346-4648-4356-acba-8711c7be527f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/707e9346-4648-4356-acba-8711c7be527f.png", "timestamp": "2024-02-15T20:42:58.180152+00:00"}}, {"id": "93c761b7-2c46-4b00-93be-33bc84d6b3cc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.635276+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and the road surface is still visible. There is no significant risk of flooding.", "snapshot": {"id": "707e9346-4648-4356-acba-8711c7be527f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/707e9346-4648-4356-acba-8711c7be527f.png", "timestamp": "2024-02-15T20:42:58.180152+00:00"}}, {"id": "bbe62933-a26e-4b7c-b15a-73d736aae589", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.908174+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present.", "snapshot": {"id": "61d5b5df-dfbe-4a83-802d-e55afec94a98", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/61d5b5df-dfbe-4a83-802d-e55afec94a98.png", "timestamp": "2024-02-15T20:45:20.288937+00:00"}}, {"id": "ecdd7fc5-6ab2-4fd3-a2a5-74a8013c0228", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.749403+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road.", "snapshot": {"id": "61d5b5df-dfbe-4a83-802d-e55afec94a98", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/61d5b5df-dfbe-4a83-802d-e55afec94a98.png", "timestamp": "2024-02-15T20:45:20.288937+00:00"}}, {"id": "6963d973-7b3c-4127-8d42-b2b945c290e5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.514706+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rain. There are several cars on the road, and the traffic appears to be moderate. The road is lined with trees, and there are buildings and other structures in the background.", "snapshot": {"id": "61d5b5df-dfbe-4a83-802d-e55afec94a98", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/61d5b5df-dfbe-4a83-802d-e55afec94a98.png", "timestamp": "2024-02-15T20:45:20.288937+00:00"}}, {"id": "416243bf-e8e0-4af9-ab87-8e11fc89bf82", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.310031+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "61d5b5df-dfbe-4a83-802d-e55afec94a98", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/61d5b5df-dfbe-4a83-802d-e55afec94a98.png", "timestamp": "2024-02-15T20:45:20.288937+00:00"}}, {"id": "3a4ab648-02cb-408a-a44a-4dcff2daba11", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.433705+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "61d5b5df-dfbe-4a83-802d-e55afec94a98", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/61d5b5df-dfbe-4a83-802d-e55afec94a98.png", "timestamp": "2024-02-15T20:45:20.288937+00:00"}}, {"id": "58c8115c-b23e-49f1-bb93-6b97cd913dca", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.103709+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "61d5b5df-dfbe-4a83-802d-e55afec94a98", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/61d5b5df-dfbe-4a83-802d-e55afec94a98.png", "timestamp": "2024-02-15T20:45:20.288937+00:00"}}, {"id": "6ca2da1d-33d9-4e41-9577-5c199501b37f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.993346+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are puddles on the surface. This indicates that it has been raining recently.", "snapshot": {"id": "7616cad0-ef0b-4739-b985-b4950f15e8fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7616cad0-ef0b-4739-b985-b4950f15e8fa.png", "timestamp": "2024-02-15T20:35:33.178838+00:00"}}, {"id": "12166b83-2d71-4fc9-b275-6245b7242f21", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.710150+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "7616cad0-ef0b-4739-b985-b4950f15e8fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7616cad0-ef0b-4739-b985-b4950f15e8fa.png", "timestamp": "2024-02-15T20:35:33.178838+00:00"}}, {"id": "fb3962b1-383b-4d67-a34d-0ee6a079981c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.179528+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they do not cover a significant portion of the road surface.", "snapshot": {"id": "7616cad0-ef0b-4739-b985-b4950f15e8fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7616cad0-ef0b-4739-b985-b4950f15e8fa.png", "timestamp": "2024-02-15T20:35:33.178838+00:00"}}, {"id": "1d1313a0-faea-4274-97b5-d72dfbc055f6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.456479+00:00", "label": "easy", "label_explanation": "The traffic is light, and there are no major obstructions on the road. Vehicles can move freely without any significant delays.", "snapshot": {"id": "7616cad0-ef0b-4739-b985-b4950f15e8fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7616cad0-ef0b-4739-b985-b4950f15e8fa.png", "timestamp": "2024-02-15T20:35:33.178838+00:00"}}, {"id": "52a1dbd8-4065-4d43-8c1c-a57a10ebcdce", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.763737+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. There are several tall buildings on the left side of the road, and trees on the right side. The road is wet from recent rain, and there are a few puddles on the surface.", "snapshot": {"id": "7616cad0-ef0b-4739-b985-b4950f15e8fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7616cad0-ef0b-4739-b985-b4950f15e8fa.png", "timestamp": "2024-02-15T20:35:33.178838+00:00"}}, {"id": "8481f0ba-c486-46f2-b0d6-351916aea846", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.564841+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7616cad0-ef0b-4739-b985-b4950f15e8fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7616cad0-ef0b-4739-b985-b4950f15e8fa.png", "timestamp": "2024-02-15T20:35:33.178838+00:00"}}, {"id": "649ce909-2946-48ce-9cff-1063e369fb00", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.699702+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "174cc833-a154-4eba-a566-4e8d9e1369ad", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/174cc833-a154-4eba-a566-4e8d9e1369ad.png", "timestamp": "2024-02-15T20:38:03.703843+00:00"}}, {"id": "8c913c7d-8d31-4957-9511-706319b0f604", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.896283+00:00", "label": "easy", "label_explanation": "The traffic is light.", "snapshot": {"id": "174cc833-a154-4eba-a566-4e8d9e1369ad", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/174cc833-a154-4eba-a566-4e8d9e1369ad.png", "timestamp": "2024-02-15T20:38:03.703843+00:00"}}, {"id": "d4d89ff9-7131-4d5e-a2bd-e20c99d5d3d3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.576328+00:00", "label": "false", "label_explanation": "There is no rain in the image.", "snapshot": {"id": "174cc833-a154-4eba-a566-4e8d9e1369ad", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/174cc833-a154-4eba-a566-4e8d9e1369ad.png", "timestamp": "2024-02-15T20:38:03.703843+00:00"}}, {"id": "9d7ba166-3f89-4a25-b347-e59dbc0ffb58", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.177347+00:00", "label": "free", "label_explanation": "There are no road blockades.", "snapshot": {"id": "174cc833-a154-4eba-a566-4e8d9e1369ad", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/174cc833-a154-4eba-a566-4e8d9e1369ad.png", "timestamp": "2024-02-15T20:38:03.703843+00:00"}}, {"id": "f2cb1c09-20b8-481c-ba51-f5fccc3acc1e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.217622+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "174cc833-a154-4eba-a566-4e8d9e1369ad", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/174cc833-a154-4eba-a566-4e8d9e1369ad.png", "timestamp": "2024-02-15T20:38:03.703843+00:00"}}, {"id": "dbf3134d-227f-4e27-b269-f9790cec3dbc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.407196+00:00", "label": "null", "label_explanation": "The image shows a street scene in an urban area. It is daytime and the weather is clear. There are a few trees on either side of the street. There is a bus on the street, and a person is walking on the sidewalk.", "snapshot": {"id": "174cc833-a154-4eba-a566-4e8d9e1369ad", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/174cc833-a154-4eba-a566-4e8d9e1369ad.png", "timestamp": "2024-02-15T20:38:03.703843+00:00"}}, {"id": "6bceaad9-e24f-486a-988c-bf1de18e5fd2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:46.251371+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions.", "snapshot": {"id": "47a59120-212a-4462-bf66-f6af256145fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/47a59120-212a-4462-bf66-f6af256145fa.png", "timestamp": "2024-02-15T20:40:33.970429+00:00"}}, {"id": "c876e027-61d3-4537-8b1c-804483e884cc", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:46.771678+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "47a59120-212a-4462-bf66-f6af256145fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/47a59120-212a-4462-bf66-f6af256145fa.png", "timestamp": "2024-02-15T20:40:33.970429+00:00"}}, {"id": "bc1ff6d2-e183-4e24-9be4-51de8970a343", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:46.074908+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "47a59120-212a-4462-bf66-f6af256145fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/47a59120-212a-4462-bf66-f6af256145fa.png", "timestamp": "2024-02-15T20:40:33.970429+00:00"}}, {"id": "7bb1111a-825c-4f12-b87b-825bc6b0f885", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.339220+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "47a59120-212a-4462-bf66-f6af256145fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/47a59120-212a-4462-bf66-f6af256145fa.png", "timestamp": "2024-02-15T20:40:33.970429+00:00"}}, {"id": "b5194047-8c3b-4487-877b-297f38148aac", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.785074+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "47a59120-212a-4462-bf66-f6af256145fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/47a59120-212a-4462-bf66-f6af256145fa.png", "timestamp": "2024-02-15T20:40:33.970429+00:00"}}, {"id": "57c8d1c4-f5be-479b-a7a1-a3a985c3916f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.541321+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several parked cars on the side of the road, and a few trees.", "snapshot": {"id": "47a59120-212a-4462-bf66-f6af256145fa", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/47a59120-212a-4462-bf66-f6af256145fa.png", "timestamp": "2024-02-15T20:40:33.970429+00:00"}}, {"id": "a38f545b-412c-416e-9c05-ec4138452927", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.412798+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road surface is wet, but this is likely due to recent rain.", "snapshot": {"id": "855d337b-f172-4299-82f7-cbade2fab491", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/855d337b-f172-4299-82f7-cbade2fab491.png", "timestamp": "2024-02-15T20:47:45.849991+00:00"}}, {"id": "bcbe7213-3c57-479f-b258-3eb637fff2a7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.303330+00:00", "label": "true", "label_explanation": "The road surface is wet, which indicates that it has been raining recently. However, there is no standing water, so the rain was likely light.", "snapshot": {"id": "855d337b-f172-4299-82f7-cbade2fab491", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/855d337b-f172-4299-82f7-cbade2fab491.png", "timestamp": "2024-02-15T20:47:45.849991+00:00"}}, {"id": "419e7474-5e85-4c8c-b495-f002e165620f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.017204+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a tree-lined median. There are several cars on the road, and the traffic appears to be moderate. The road surface is wet, but there is no standing water.", "snapshot": {"id": "855d337b-f172-4299-82f7-cbade2fab491", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/855d337b-f172-4299-82f7-cbade2fab491.png", "timestamp": "2024-02-15T20:47:45.849991+00:00"}}, {"id": "6a374184-6e8b-4b39-87b0-08639980213b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.811317+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "855d337b-f172-4299-82f7-cbade2fab491", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/855d337b-f172-4299-82f7-cbade2fab491.png", "timestamp": "2024-02-15T20:47:45.849991+00:00"}}, {"id": "59c8f45a-9c11-40bb-804a-5f507c767d73", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.715424+00:00", "label": "moderate", "label_explanation": "The traffic appears to be moderate. There are several cars on the road, but they are all moving at a steady pace.", "snapshot": {"id": "855d337b-f172-4299-82f7-cbade2fab491", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/855d337b-f172-4299-82f7-cbade2fab491.png", "timestamp": "2024-02-15T20:47:45.849991+00:00"}}, {"id": "4040fe76-9abf-46e5-bbf0-e6ac6b2cde5f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.906513+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "855d337b-f172-4299-82f7-cbade2fab491", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/855d337b-f172-4299-82f7-cbade2fab491.png", "timestamp": "2024-02-15T20:47:45.849991+00:00"}}, {"id": "0dce50e7-5ed5-435e-bcd1-b8840d28bd94", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.001631+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away, leaving the road passable for vehicles.", "snapshot": {"id": "bf018d71-f629-4158-9272-f43c9a08df56", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/bf018d71-f629-4158-9272-f43c9a08df56.png", "timestamp": "2024-02-15T20:30:28.345107+00:00"}}, {"id": "2af87623-97cf-453e-bbec-7a58619378e9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.469549+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "bf018d71-f629-4158-9272-f43c9a08df56", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/bf018d71-f629-4158-9272-f43c9a08df56.png", "timestamp": "2024-02-15T20:30:28.345107+00:00"}}, {"id": "edde727f-f250-4e77-8a2f-9748dff6fb08", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.646475+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for vehicle traffic separated by a painted median. The road is lined with buildings and trees, and there are a few parked cars on the side of the road. The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "bf018d71-f629-4158-9272-f43c9a08df56", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/bf018d71-f629-4158-9272-f43c9a08df56.png", "timestamp": "2024-02-15T20:30:28.345107+00:00"}}, {"id": "c6180b2a-74e9-42fd-bb31-20ab377a8a5d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.207013+00:00", "label": "easy", "label_explanation": "The road is open to traffic, and vehicles are able to move freely. There are no major obstructions or hazards on the road.", "snapshot": {"id": "bf018d71-f629-4158-9272-f43c9a08df56", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/bf018d71-f629-4158-9272-f43c9a08df56.png", "timestamp": "2024-02-15T20:30:28.345107+00:00"}}, {"id": "4e22d186-0aef-406b-923b-2bc7669dbbf3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.842916+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain has stopped, and the road is not currently experiencing any precipitation.", "snapshot": {"id": "bf018d71-f629-4158-9272-f43c9a08df56", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/bf018d71-f629-4158-9272-f43c9a08df56.png", "timestamp": "2024-02-15T20:30:28.345107+00:00"}}, {"id": "fb60502a-b810-4a5c-beb3-143ce7cf5e2a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.434459+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bf018d71-f629-4158-9272-f43c9a08df56", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/bf018d71-f629-4158-9272-f43c9a08df56.png", "timestamp": "2024-02-15T20:30:28.345107+00:00"}}, {"id": "ad4680e2-32f3-4adb-9b75-3285bd2941df", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.839274+00:00", "label": "true", "label_explanation": "The image is corrupted, with significant green and grey color distortions, making it difficult to analyze road conditions.", "snapshot": {"id": "90a018ef-8eb1-434d-b954-ae5e85624b7f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/90a018ef-8eb1-434d-b954-ae5e85624b7f.png", "timestamp": "2024-02-15T20:33:07.072002+00:00"}}, {"id": "addc0aab-72ea-4aac-b8b1-49d8a77b76ad", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.150097+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "90a018ef-8eb1-434d-b954-ae5e85624b7f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/90a018ef-8eb1-434d-b954-ae5e85624b7f.png", "timestamp": "2024-02-15T20:33:07.072002+00:00"}}, {"id": "95be855a-a9c6-4f9b-9fe4-dd459ce91f29", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.082277+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "f166faf0-8020-400e-874e-1b58e5197c0f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/f166faf0-8020-400e-874e-1b58e5197c0f.png", "timestamp": "2024-02-15T20:50:09.255857+00:00"}}, {"id": "95da8b47-4132-428c-a65e-02d9b0cdf124", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.429160+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "f166faf0-8020-400e-874e-1b58e5197c0f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/f166faf0-8020-400e-874e-1b58e5197c0f.png", "timestamp": "2024-02-15T20:50:09.255857+00:00"}}, {"id": "8ac9b7e4-c948-4020-8c2e-5bd9552b2a8f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.825710+00:00", "label": "easy", "label_explanation": "The traffic is light, with a few cars on the road. There are also a few people walking and cycling.", "snapshot": {"id": "f166faf0-8020-400e-874e-1b58e5197c0f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/f166faf0-8020-400e-874e-1b58e5197c0f.png", "timestamp": "2024-02-15T20:50:09.255857+00:00"}}, {"id": "06dd22b7-8d56-49f7-8316-11fd75878f12", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.618601+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, only wet patches.", "snapshot": {"id": "f166faf0-8020-400e-874e-1b58e5197c0f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/f166faf0-8020-400e-874e-1b58e5197c0f.png", "timestamp": "2024-02-15T20:50:09.255857+00:00"}}, {"id": "b0487342-c633-403b-be7e-728921632f36", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.127265+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. There are several buildings on the left side of the road, with a few trees on the right side. The road is wet from recent rain, and there are a few cars on the street, along with some people walking and cycling.", "snapshot": {"id": "f166faf0-8020-400e-874e-1b58e5197c0f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/f166faf0-8020-400e-874e-1b58e5197c0f.png", "timestamp": "2024-02-15T20:50:09.255857+00:00"}}, {"id": "c0ffffe6-995c-4d2b-9b8e-b9e0ac4853eb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.932502+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f166faf0-8020-400e-874e-1b58e5197c0f", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/f166faf0-8020-400e-874e-1b58e5197c0f.png", "timestamp": "2024-02-15T20:50:09.255857+00:00"}}, {"id": "21b2244f-5fe7-42ab-bd8e-5f7cde5744bd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.833937+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is completely clear, and there are no obstructions to traffic.", "snapshot": {"id": "d56015bb-b291-43e7-9e0f-c3930603c39e", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/d56015bb-b291-43e7-9e0f-c3930603c39e.png", "timestamp": "2024-02-15T20:52:34.234039+00:00"}}, {"id": "05ef1df5-781b-4822-91d2-e6ecfb9d0838", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.554306+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "d56015bb-b291-43e7-9e0f-c3930603c39e", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/d56015bb-b291-43e7-9e0f-c3930603c39e.png", "timestamp": "2024-02-15T20:52:34.234039+00:00"}}, {"id": "92a6f5e5-c4c1-42e4-a334-f3bc59ef9694", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.216693+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "d56015bb-b291-43e7-9e0f-c3930603c39e", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/d56015bb-b291-43e7-9e0f-c3930603c39e.png", "timestamp": "2024-02-15T20:52:34.234039+00:00"}}, {"id": "a8de271e-af51-49e6-9c91-6efec42fddfc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.992968+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "d56015bb-b291-43e7-9e0f-c3930603c39e", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/d56015bb-b291-43e7-9e0f-c3930603c39e.png", "timestamp": "2024-02-15T20:52:34.234039+00:00"}}, {"id": "f19d1051-1e73-4b46-827a-3dc455270d13", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.704976+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for vehicle traffic separated by a painted median. The road is in good condition, with no visible cracks or potholes. There are several trees on either side of the road, and the surrounding buildings are a mix of residential and commercial properties. The image is clear and well-lit, with good visibility.", "snapshot": {"id": "d56015bb-b291-43e7-9e0f-c3930603c39e", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/d56015bb-b291-43e7-9e0f-c3930603c39e.png", "timestamp": "2024-02-15T20:52:34.234039+00:00"}}, {"id": "0dca5247-9ff5-409b-8d93-b277ebdf8d9c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.502278+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d56015bb-b291-43e7-9e0f-c3930603c39e", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/d56015bb-b291-43e7-9e0f-c3930603c39e.png", "timestamp": "2024-02-15T20:52:34.234039+00:00"}}, {"id": "f239e23f-176e-436c-9b05-bc9a14c7bfd7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.740732+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars visible in the image. The cars are able to move freely, and there are no major delays or obstructions.", "snapshot": {"id": "7886db25-9bbf-47e4-a705-3f8b3272824c", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7886db25-9bbf-47e4-a705-3f8b3272824c.png", "timestamp": "2024-02-15T20:55:02.617584+00:00"}}, {"id": "6dbca30d-7e97-4017-bf4b-0d5eda70c189", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.639799+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7886db25-9bbf-47e4-a705-3f8b3272824c", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7886db25-9bbf-47e4-a705-3f8b3272824c.png", "timestamp": "2024-02-15T20:55:02.617584+00:00"}}, {"id": "de4f0eb6-b40c-4c06-a3ac-a90cfa7b3349", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.527544+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "7886db25-9bbf-47e4-a705-3f8b3272824c", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7886db25-9bbf-47e4-a705-3f8b3272824c.png", "timestamp": "2024-02-15T20:55:02.617584+00:00"}}, {"id": "534d28b5-71c6-4620-93e0-4a44d2498ef7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.048714+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles.", "snapshot": {"id": "7886db25-9bbf-47e4-a705-3f8b3272824c", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7886db25-9bbf-47e4-a705-3f8b3272824c.png", "timestamp": "2024-02-15T20:55:02.617584+00:00"}}, {"id": "3b88251c-68d7-4c3b-8bea-d814988c49db", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.151039+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy, and the road is still passable for vehicles.", "snapshot": {"id": "7886db25-9bbf-47e4-a705-3f8b3272824c", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7886db25-9bbf-47e4-a705-3f8b3272824c.png", "timestamp": "2024-02-15T20:55:02.617584+00:00"}}, {"id": "1071c97e-6289-4e9e-8457-0e6e866abafd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.871303+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for vehicle traffic separated by a central median. The road surface is paved and in good condition, with no visible potholes or cracks. There are several trees on either side of the road, and the surrounding buildings are a mix of residential and commercial properties. The traffic is moderate, with a few cars visible in the image. There are no pedestrians or cyclists visible in the image.", "snapshot": {"id": "7886db25-9bbf-47e4-a705-3f8b3272824c", "camera_id": "001553", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001553/7886db25-9bbf-47e4-a705-3f8b3272824c.png", "timestamp": "2024-02-15T20:55:02.617584+00:00"}}]}, {"id": "001523", "name": "R. C\u00c2NDIDO BEN\u00cdCIO, 1757 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8971, "longitude": -43.351512, "objects": ["image_description", "rain", "image_corrupted", "water_level", "traffic", "road_blockade"], "identifications": []}, {"id": "001511", "name": "R. JOS\u00c9 EUG\u00caNIO, 18 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908674, "longitude": -43.220609, "objects": ["image_corrupted", "rain", "water_level", "image_description", "traffic", "road_blockade"], "identifications": []}, {"id": "001316", "name": "AV. ATL\u00c2NTICA N 15- FIXA", "rtsp_url": "rtsp://10.52.252.193/", "update_interval": 120, "latitude": -22.96956564, "longitude": -43.18166099, "objects": ["image_corrupted", "image_description", "rain", "water_level", "traffic", "road_blockade"], "identifications": []}, {"id": "000793", "name": "AV. SALVADOR DE S\u00c1 X TRAV. PEDREGAIS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.16/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912047, "longitude": -43.197545, "objects": ["image_description", "rain", "water_level", "image_corrupted", "traffic", "road_blockade"], "identifications": [{"id": "715b20cb-ff54-4ecb-acd9-e36d781c118c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:17.641198+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays. Vehicles are able to move at the posted speed limit.", "snapshot": {"id": "fd5cafe8-18a7-428e-9b21-d8e35039fa9d", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/fd5cafe8-18a7-428e-9b21-d8e35039fa9d.png", "timestamp": "2024-02-15T20:30:02.477479+00:00"}}, {"id": "f18ba9a2-1db7-4515-88ff-c6b6ffb06a6b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:17.193607+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy enough to cause any significant traffic disruptions.", "snapshot": {"id": "fd5cafe8-18a7-428e-9b21-d8e35039fa9d", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/fd5cafe8-18a7-428e-9b21-d8e35039fa9d.png", "timestamp": "2024-02-15T20:30:02.477479+00:00"}}, {"id": "2c30130f-1717-4583-8b2c-19a1fb744c4d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:17.423693+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "fd5cafe8-18a7-428e-9b21-d8e35039fa9d", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/fd5cafe8-18a7-428e-9b21-d8e35039fa9d.png", "timestamp": "2024-02-15T20:30:02.477479+00:00"}}, {"id": "837c753c-6c20-4ef2-93fa-d4297c228947", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:16.804300+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are a few trees on either side of the road, and buildings and other structures in the background.", "snapshot": {"id": "fd5cafe8-18a7-428e-9b21-d8e35039fa9d", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/fd5cafe8-18a7-428e-9b21-d8e35039fa9d.png", "timestamp": "2024-02-15T20:30:02.477479+00:00"}}, {"id": "4ccae6d6-978c-43e2-b870-8e835fec94a1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:17.848988+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "fd5cafe8-18a7-428e-9b21-d8e35039fa9d", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/fd5cafe8-18a7-428e-9b21-d8e35039fa9d.png", "timestamp": "2024-02-15T20:30:02.477479+00:00"}}, {"id": "27ce9992-dd3c-4514-8a46-0d059db57495", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:16.203827+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fd5cafe8-18a7-428e-9b21-d8e35039fa9d", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/fd5cafe8-18a7-428e-9b21-d8e35039fa9d.png", "timestamp": "2024-02-15T20:30:02.477479+00:00"}}, {"id": "7f9af297-b709-487c-93f7-aba8e852ce32", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:19.975159+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "55871a4b-48ce-4edd-ae95-8d4ab079a637", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/55871a4b-48ce-4edd-ae95-8d4ab079a637.png", "timestamp": "2024-02-15T20:35:07.501911+00:00"}}, {"id": "6f5b38c7-c914-4f15-afcf-7b1c5ac4bbc8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.612768+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles observed. The majority of the road surface is still visible and dry.", "snapshot": {"id": "55871a4b-48ce-4edd-ae95-8d4ab079a637", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/55871a4b-48ce-4edd-ae95-8d4ab079a637.png", "timestamp": "2024-02-15T20:35:07.501911+00:00"}}, {"id": "00cf2850-a531-4239-9a76-0dc2a24b03c3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.746008+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. The road surface is wet, with some small puddles visible.", "snapshot": {"id": "55871a4b-48ce-4edd-ae95-8d4ab079a637", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/55871a4b-48ce-4edd-ae95-8d4ab079a637.png", "timestamp": "2024-02-15T20:35:07.501911+00:00"}}, {"id": "f9b893ad-1642-43e1-a1b6-69831407bd6b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.992497+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions in the image. The road is clear and open to traffic.", "snapshot": {"id": "55871a4b-48ce-4edd-ae95-8d4ab079a637", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/55871a4b-48ce-4edd-ae95-8d4ab079a637.png", "timestamp": "2024-02-15T20:35:07.501911+00:00"}}, {"id": "789e5bbf-b56e-449c-9517-6389632e9a15", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.227729+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving at a steady pace. There are no major obstructions or congestion visible in the image.", "snapshot": {"id": "55871a4b-48ce-4edd-ae95-8d4ab079a637", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/55871a4b-48ce-4edd-ae95-8d4ab079a637.png", "timestamp": "2024-02-15T20:35:07.501911+00:00"}}, {"id": "0ccce71b-1961-47be-a416-a8432c855ae6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.243452+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining.", "snapshot": {"id": "55871a4b-48ce-4edd-ae95-8d4ab079a637", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/55871a4b-48ce-4edd-ae95-8d4ab079a637.png", "timestamp": "2024-02-15T20:35:07.501911+00:00"}}, {"id": "7210e099-aa72-4a17-9320-32b61a6cece9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:50.392938+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of flooding or water accumulation on the road surface.", "snapshot": {"id": "970e6d90-3578-4036-a738-3e3003d1a6a7", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/970e6d90-3578-4036-a738-3e3003d1a6a7.png", "timestamp": "2024-02-15T20:37:36.321599+00:00"}}, {"id": "de8421fd-dbe3-47f9-b01c-ce7b81ea2c87", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:49.947820+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "970e6d90-3578-4036-a738-3e3003d1a6a7", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/970e6d90-3578-4036-a738-3e3003d1a6a7.png", "timestamp": "2024-02-15T20:37:36.321599+00:00"}}, {"id": "4ab63f21-448b-427b-acf8-9d7b43df497c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:50.830521+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are several vehicles on the road, but they are able to move freely without any significant congestion.", "snapshot": {"id": "970e6d90-3578-4036-a738-3e3003d1a6a7", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/970e6d90-3578-4036-a738-3e3003d1a6a7.png", "timestamp": "2024-02-15T20:37:36.321599+00:00"}}, {"id": "19dae4f3-3447-4646-9f59-82b801368ca7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:51.345454+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles.", "snapshot": {"id": "970e6d90-3578-4036-a738-3e3003d1a6a7", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/970e6d90-3578-4036-a738-3e3003d1a6a7.png", "timestamp": "2024-02-15T20:37:36.321599+00:00"}}, {"id": "594ff3a7-4bf8-4044-b68e-05e9799020a1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:49.113557+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "970e6d90-3578-4036-a738-3e3003d1a6a7", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/970e6d90-3578-4036-a738-3e3003d1a6a7.png", "timestamp": "2024-02-15T20:37:36.321599+00:00"}}, {"id": "205a5907-c539-4e73-b188-6b3302f3474b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:49.484455+00:00", "label": "null", "label_explanation": "The image captures an urban road with moderate traffic. It is daytime, and the weather appears to be clear. There are several vehicles on the road, including cars and a bus. The road is in good condition, with no visible signs of damage or obstructions.", "snapshot": {"id": "970e6d90-3578-4036-a738-3e3003d1a6a7", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/970e6d90-3578-4036-a738-3e3003d1a6a7.png", "timestamp": "2024-02-15T20:37:36.321599+00:00"}}, {"id": "e6d60fd4-4f5e-41f8-a7ce-70410a9152b8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:20.635512+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear, with no visible signs of rain or water on the road surface. There are several vehicles on the road, including a police car, a van, and a motorcycle. The road is lined with buildings and trees, and there is a traffic light in the background.", "snapshot": {"id": "8260e9b8-68d5-40fd-885d-f03555d1e594", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/8260e9b8-68d5-40fd-885d-f03555d1e594.png", "timestamp": "2024-02-15T20:40:08.263955+00:00"}}, {"id": "ea54f721-4ed9-45b9-933a-7950a1668050", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.896515+00:00", "label": "low", "label_explanation": "Since there is no visible water on the road surface, the water level can be labeled as 'low'.", "snapshot": {"id": "8260e9b8-68d5-40fd-885d-f03555d1e594", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/8260e9b8-68d5-40fd-885d-f03555d1e594.png", "timestamp": "2024-02-15T20:40:08.263955+00:00"}}, {"id": "64f3ae40-2b2a-46dd-972f-da1b2b9421b6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:19.610845+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8260e9b8-68d5-40fd-885d-f03555d1e594", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/8260e9b8-68d5-40fd-885d-f03555d1e594.png", "timestamp": "2024-02-15T20:40:08.263955+00:00"}}, {"id": "8eae96b2-8eeb-4e43-95fc-e64626fbefcc", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.864091+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely without any impediments.", "snapshot": {"id": "8260e9b8-68d5-40fd-885d-f03555d1e594", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/8260e9b8-68d5-40fd-885d-f03555d1e594.png", "timestamp": "2024-02-15T20:40:08.263955+00:00"}}, {"id": "689b4907-3370-44b5-9fc2-be3d52845e21", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.354652+00:00", "label": "easy", "label_explanation": "The traffic appears to be flowing smoothly, with no major congestion or disruptions. Vehicles are able to move without significant hindrance.", "snapshot": {"id": "8260e9b8-68d5-40fd-885d-f03555d1e594", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/8260e9b8-68d5-40fd-885d-f03555d1e594.png", "timestamp": "2024-02-15T20:40:08.263955+00:00"}}, {"id": "724c4c9b-03d8-4bfb-b5b5-3a0b396ee8a8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.428416+00:00", "label": "false", "label_explanation": "As mentioned earlier, there are no visible signs of rain or water on the road surface, indicating a dry road condition.", "snapshot": {"id": "8260e9b8-68d5-40fd-885d-f03555d1e594", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/8260e9b8-68d5-40fd-885d-f03555d1e594.png", "timestamp": "2024-02-15T20:40:08.263955+00:00"}}, {"id": "99442842-15f3-4094-88c0-d476847ea6ff", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:32.760607+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or congestion.", "snapshot": {"id": "5dd93897-b469-4ddf-8e37-c2dfa2676dce", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5dd93897-b469-4ddf-8e37-c2dfa2676dce.png", "timestamp": "2024-02-15T20:47:20.832663+00:00"}}, {"id": "4e282e55-1be8-4152-a31d-737e8fb1ba65", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:33.040837+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "5dd93897-b469-4ddf-8e37-c2dfa2676dce", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5dd93897-b469-4ddf-8e37-c2dfa2676dce.png", "timestamp": "2024-02-15T20:47:20.832663+00:00"}}, {"id": "b97a1008-dbc7-4925-9864-5323581a7e17", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:32.449911+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "5dd93897-b469-4ddf-8e37-c2dfa2676dce", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5dd93897-b469-4ddf-8e37-c2dfa2676dce.png", "timestamp": "2024-02-15T20:47:20.832663+00:00"}}, {"id": "75e0acf8-f8f4-42d2-ac8b-288308d84ca4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.741967+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5dd93897-b469-4ddf-8e37-c2dfa2676dce", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5dd93897-b469-4ddf-8e37-c2dfa2676dce.png", "timestamp": "2024-02-15T20:47:20.832663+00:00"}}, {"id": "b8874bb8-efa8-4b01-b06a-50fc14b0986b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:32.162186+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "5dd93897-b469-4ddf-8e37-c2dfa2676dce", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5dd93897-b469-4ddf-8e37-c2dfa2676dce.png", "timestamp": "2024-02-15T20:47:20.832663+00:00"}}, {"id": "c7badade-be83-412f-83fb-68a3187d8d6f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.975361+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and trucks. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "5dd93897-b469-4ddf-8e37-c2dfa2676dce", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5dd93897-b469-4ddf-8e37-c2dfa2676dce.png", "timestamp": "2024-02-15T20:47:20.832663+00:00"}}, {"id": "7a5c0aeb-f78c-48ae-9dc4-f9fa5edd8be1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.746024+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars and buses. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "d9b3ef37-9df5-4030-ae38-92e1c7b96745", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/d9b3ef37-9df5-4030-ae38-92e1c7b96745.png", "timestamp": "2024-02-15T20:42:36.948841+00:00"}}, {"id": "25d86cda-e8f6-4a86-925a-7ea1d3bd2ae5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.739548+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "d9b3ef37-9df5-4030-ae38-92e1c7b96745", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/d9b3ef37-9df5-4030-ae38-92e1c7b96745.png", "timestamp": "2024-02-15T20:42:36.948841+00:00"}}, {"id": "a0e3fda4-660f-4692-b384-b151cd404579", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.995481+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "d9b3ef37-9df5-4030-ae38-92e1c7b96745", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/d9b3ef37-9df5-4030-ae38-92e1c7b96745.png", "timestamp": "2024-02-15T20:42:36.948841+00:00"}}, {"id": "1e220da3-e206-4bd4-ac5b-5031631ec209", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.055716+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "d9b3ef37-9df5-4030-ae38-92e1c7b96745", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/d9b3ef37-9df5-4030-ae38-92e1c7b96745.png", "timestamp": "2024-02-15T20:42:36.948841+00:00"}}, {"id": "1b0dae86-2a3b-4c12-9a3d-26c7a22d9271", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.435639+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d9b3ef37-9df5-4030-ae38-92e1c7b96745", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/d9b3ef37-9df5-4030-ae38-92e1c7b96745.png", "timestamp": "2024-02-15T20:42:36.948841+00:00"}}, {"id": "06e0bb0b-14f2-4bcc-b174-b538673b3438", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.325863+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away.", "snapshot": {"id": "d9b3ef37-9df5-4030-ae38-92e1c7b96745", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/d9b3ef37-9df5-4030-ae38-92e1c7b96745.png", "timestamp": "2024-02-15T20:42:36.948841+00:00"}}, {"id": "bb7770e9-67f4-472e-ba85-d354a0da286b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.410506+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving steadily without any significant congestion.", "snapshot": {"id": "b7c0bb01-c6d0-4132-9481-c3242503a99b", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/b7c0bb01-c6d0-4132-9481-c3242503a99b.png", "timestamp": "2024-02-15T20:44:59.382265+00:00"}}, {"id": "c139629b-391c-4ae2-9d47-a847a6abf6b8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.422028+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "b7c0bb01-c6d0-4132-9481-c3242503a99b", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/b7c0bb01-c6d0-4132-9481-c3242503a99b.png", "timestamp": "2024-02-15T20:44:59.382265+00:00"}}, {"id": "20ba0b4e-018f-418e-9bb7-eda1ae758f62", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.954409+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b7c0bb01-c6d0-4132-9481-c3242503a99b", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/b7c0bb01-c6d0-4132-9481-c3242503a99b.png", "timestamp": "2024-02-15T20:44:59.382265+00:00"}}, {"id": "29ff3e3e-8521-49eb-b7fc-e82211ca3c1e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.758350+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "b7c0bb01-c6d0-4132-9481-c3242503a99b", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/b7c0bb01-c6d0-4132-9481-c3242503a99b.png", "timestamp": "2024-02-15T20:44:59.382265+00:00"}}, {"id": "2c348506-5832-4dae-80ef-529d3ac23cd3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.950793+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is dry.", "snapshot": {"id": "b7c0bb01-c6d0-4132-9481-c3242503a99b", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/b7c0bb01-c6d0-4132-9481-c3242503a99b.png", "timestamp": "2024-02-15T20:44:59.382265+00:00"}}, {"id": "d69296dc-3896-45bc-a6f4-418fc12f3725", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.661933+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear for traffic.", "snapshot": {"id": "b7c0bb01-c6d0-4132-9481-c3242503a99b", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/b7c0bb01-c6d0-4132-9481-c3242503a99b.png", "timestamp": "2024-02-15T20:44:59.382265+00:00"}}, {"id": "715ac5a8-a383-4d4e-ab86-9766322654da", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:43.052787+00:00", "label": "free", "label_explanation": "There are no road closures or blockades visible in the image.", "snapshot": {"id": "2696ba55-5327-4bb5-a3c7-cbd7c8948c86", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/2696ba55-5327-4bb5-a3c7-cbd7c8948c86.png", "timestamp": "2024-02-15T20:32:30.724288+00:00"}}, {"id": "47e4125b-30d9-4d0f-974b-5c0e8476ba16", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:42.165116+00:00", "label": "easy", "label_explanation": "The road is clear, with no obstructions or traffic disruptions observed.", "snapshot": {"id": "2696ba55-5327-4bb5-a3c7-cbd7c8948c86", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/2696ba55-5327-4bb5-a3c7-cbd7c8948c86.png", "timestamp": "2024-02-15T20:32:30.724288+00:00"}}, {"id": "baa598b0-ce96-4ec9-b13e-031254450c0d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:41.561742+00:00", "label": "low", "label_explanation": "While the road is wet, there are no significant puddles or water accumulation observed.", "snapshot": {"id": "2696ba55-5327-4bb5-a3c7-cbd7c8948c86", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/2696ba55-5327-4bb5-a3c7-cbd7c8948c86.png", "timestamp": "2024-02-15T20:32:30.724288+00:00"}}, {"id": "69cd34f7-05f9-40a1-899a-765cd6dc063c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:41.006345+00:00", "label": "true", "label_explanation": "The road surface is visibly wet, indicating recent rainfall.", "snapshot": {"id": "2696ba55-5327-4bb5-a3c7-cbd7c8948c86", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/2696ba55-5327-4bb5-a3c7-cbd7c8948c86.png", "timestamp": "2024-02-15T20:32:30.724288+00:00"}}, {"id": "4e5b465b-d05d-4294-b205-0deaefc8891c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:40.616665+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with a traffic light, crosswalk markings, and several parked cars. The road surface appears wet from recent rain.", "snapshot": {"id": "2696ba55-5327-4bb5-a3c7-cbd7c8948c86", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/2696ba55-5327-4bb5-a3c7-cbd7c8948c86.png", "timestamp": "2024-02-15T20:32:30.724288+00:00"}}, {"id": "71298bdd-847c-4feb-b45e-6a8ca1e36fae", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:40.006628+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2696ba55-5327-4bb5-a3c7-cbd7c8948c86", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/2696ba55-5327-4bb5-a3c7-cbd7c8948c86.png", "timestamp": "2024-02-15T20:32:30.724288+00:00"}}, {"id": "df80229b-70e0-45d2-865a-f4711bc96116", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.007515+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "9be449c2-98fb-46dd-887f-783283662ddb", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/9be449c2-98fb-46dd-887f-783283662ddb.png", "timestamp": "2024-02-15T20:52:11.620374+00:00"}}, {"id": "598730c4-3fb3-4173-acf5-8ef3e95a8445", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.821809+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or congestion.", "snapshot": {"id": "9be449c2-98fb-46dd-887f-783283662ddb", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/9be449c2-98fb-46dd-887f-783283662ddb.png", "timestamp": "2024-02-15T20:52:11.620374+00:00"}}, {"id": "079ff0ef-8fc2-4a91-bdd9-75f63b7a0940", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.904765+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "9be449c2-98fb-46dd-887f-783283662ddb", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/9be449c2-98fb-46dd-887f-783283662ddb.png", "timestamp": "2024-02-15T20:52:11.620374+00:00"}}, {"id": "e1f6fcf1-90da-4f2f-9cb8-783adba0cd50", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.322189+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "9be449c2-98fb-46dd-887f-783283662ddb", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/9be449c2-98fb-46dd-887f-783283662ddb.png", "timestamp": "2024-02-15T20:52:11.620374+00:00"}}, {"id": "efaf4e6b-49ac-4f68-8903-faddcd25bd0b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.111720+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "9be449c2-98fb-46dd-887f-783283662ddb", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/9be449c2-98fb-46dd-887f-783283662ddb.png", "timestamp": "2024-02-15T20:52:11.620374+00:00"}}, {"id": "387aa5f4-1aea-47ba-a0c5-292c3fa31d9e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.649607+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9be449c2-98fb-46dd-887f-783283662ddb", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/9be449c2-98fb-46dd-887f-783283662ddb.png", "timestamp": "2024-02-15T20:52:11.620374+00:00"}}, {"id": "2cd83991-c1e1-4d2e-b5e1-0361de891d07", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.130200+00:00", "label": "moderate", "label_explanation": "The vehicles are moving slowly due to the wet conditions.", "snapshot": {"id": "575d543c-d33a-48ff-813f-754daa6b5b3f", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/575d543c-d33a-48ff-813f-754daa6b5b3f.png", "timestamp": "2024-02-15T20:49:47.341594+00:00"}}, {"id": "d1475dad-0622-45fd-9b44-764105572376", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.894544+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "575d543c-d33a-48ff-813f-754daa6b5b3f", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/575d543c-d33a-48ff-813f-754daa6b5b3f.png", "timestamp": "2024-02-15T20:49:47.341594+00:00"}}, {"id": "9b568e8e-4416-41c6-a302-732370cf8e9b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.685530+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "575d543c-d33a-48ff-813f-754daa6b5b3f", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/575d543c-d33a-48ff-813f-754daa6b5b3f.png", "timestamp": "2024-02-15T20:49:47.341594+00:00"}}, {"id": "0c7a182c-d5d4-4f04-ac89-76c91cd5f68d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.319568+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "575d543c-d33a-48ff-813f-754daa6b5b3f", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/575d543c-d33a-48ff-813f-754daa6b5b3f.png", "timestamp": "2024-02-15T20:49:47.341594+00:00"}}, {"id": "596c548e-7707-44ee-85b7-2f6a615960e8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.110672+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "575d543c-d33a-48ff-813f-754daa6b5b3f", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/575d543c-d33a-48ff-813f-754daa6b5b3f.png", "timestamp": "2024-02-15T20:49:47.341594+00:00"}}, {"id": "5165faba-bed0-49f2-b7b2-a86bfc2cef01", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.434626+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are several vehicles on the road, including cars, buses, and motorcycles. The vehicles are moving slowly due to the wet conditions. There are also a few pedestrians on the sidewalk, and they are all wearing raincoats or carrying umbrellas.", "snapshot": {"id": "575d543c-d33a-48ff-813f-754daa6b5b3f", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/575d543c-d33a-48ff-813f-754daa6b5b3f.png", "timestamp": "2024-02-15T20:49:47.341594+00:00"}}, {"id": "0b23bd46-1dc1-434d-9e75-bcb6512ac030", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:46.854056+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "5e4c07f1-990f-4740-b1f0-108e3b5de928", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5e4c07f1-990f-4740-b1f0-108e3b5de928.png", "timestamp": "2024-02-15T20:54:36.235596+00:00"}}, {"id": "9838b257-bb76-40fe-ae96-3f2758df2af2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:46.344359+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "5e4c07f1-990f-4740-b1f0-108e3b5de928", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5e4c07f1-990f-4740-b1f0-108e3b5de928.png", "timestamp": "2024-02-15T20:54:36.235596+00:00"}}, {"id": "4d8e2cc2-c6f5-4d96-9a6e-b7814ab2fd9c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:46.051011+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a white vehicle in the center, surrounded by buildings and a traffic light.", "snapshot": {"id": "5e4c07f1-990f-4740-b1f0-108e3b5de928", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5e4c07f1-990f-4740-b1f0-108e3b5de928.png", "timestamp": "2024-02-15T20:54:36.235596+00:00"}}, {"id": "4834366f-de18-44da-8d6f-94e87e785528", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:47.585085+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "5e4c07f1-990f-4740-b1f0-108e3b5de928", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5e4c07f1-990f-4740-b1f0-108e3b5de928.png", "timestamp": "2024-02-15T20:54:36.235596+00:00"}}, {"id": "370d7eff-6303-4269-9332-2c39e31ec7a7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:47.263159+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible obstructions or traffic congestion.", "snapshot": {"id": "5e4c07f1-990f-4740-b1f0-108e3b5de928", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5e4c07f1-990f-4740-b1f0-108e3b5de928.png", "timestamp": "2024-02-15T20:54:36.235596+00:00"}}, {"id": "aae4c9b2-bfad-4c73-b28b-f838975be6e6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:45.845382+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5e4c07f1-990f-4740-b1f0-108e3b5de928", "camera_id": "000793", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000793/5e4c07f1-990f-4740-b1f0-108e3b5de928.png", "timestamp": "2024-02-15T20:54:36.235596+00:00"}}]}, {"id": "001492", "name": "GRAJA\u00da-JACAREPAGU\u00c1 (SUBIDA GRAJA\u00da) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91709064, "longitude": -43.26272777, "objects": ["image_corrupted", "traffic", "water_level", "road_blockade", "rain", "image_description"], "identifications": [{"id": "edf78cfc-46ea-4b94-afb1-d624120815c8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.876191+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "66fe8f37-5453-4ee5-ac60-0e56465ed686", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/66fe8f37-5453-4ee5-ac60-0e56465ed686.png", "timestamp": "2024-02-15T20:30:28.453823+00:00"}}, {"id": "114d622a-333a-48c3-9374-055de2a8e281", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.120035+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "66fe8f37-5453-4ee5-ac60-0e56465ed686", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/66fe8f37-5453-4ee5-ac60-0e56465ed686.png", "timestamp": "2024-02-15T20:30:28.453823+00:00"}}, {"id": "a632d55d-75d9-4a7e-8274-d4dd79b4ff28", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.810126+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "66fe8f37-5453-4ee5-ac60-0e56465ed686", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/66fe8f37-5453-4ee5-ac60-0e56465ed686.png", "timestamp": "2024-02-15T20:30:28.453823+00:00"}}, {"id": "171d440f-cd8e-4930-8ae8-68f33737745d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.602159+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "66fe8f37-5453-4ee5-ac60-0e56465ed686", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/66fe8f37-5453-4ee5-ac60-0e56465ed686.png", "timestamp": "2024-02-15T20:30:28.453823+00:00"}}, {"id": "7804de01-8020-43b0-944c-5f9b4fe29022", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.471892+00:00", "label": "free", "label_explanation": "There are no road blockades in the image. The road is clear and passable in both directions.", "snapshot": {"id": "66fe8f37-5453-4ee5-ac60-0e56465ed686", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/66fe8f37-5453-4ee5-ac60-0e56465ed686.png", "timestamp": "2024-02-15T20:30:28.453823+00:00"}}, {"id": "b96afb8f-a3f8-4055-ab20-9c3d05db5383", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.222553+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars and buses. The road is wide and has multiple lanes. There are trees and buildings on either side of the road.", "snapshot": {"id": "66fe8f37-5453-4ee5-ac60-0e56465ed686", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/66fe8f37-5453-4ee5-ac60-0e56465ed686.png", "timestamp": "2024-02-15T20:30:28.453823+00:00"}}, {"id": "36f3803a-7c58-4def-bea6-be56d851a1ba", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.297230+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible signs of water accumulation.", "snapshot": {"id": "68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5.png", "timestamp": "2024-02-15T20:47:45.738246+00:00"}}, {"id": "f162ebde-79bb-46cd-a5d8-72ce3687c661", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.012795+00:00", "label": "false", "label_explanation": "There are no visible signs of rain or wetness on the road surface.", "snapshot": {"id": "68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5.png", "timestamp": "2024-02-15T20:47:45.738246+00:00"}}, {"id": "3fd50bfa-5832-417d-af07-3847bcf8c361", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.805410+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5.png", "timestamp": "2024-02-15T20:47:45.738246+00:00"}}, {"id": "54228121-de14-4866-bc59-f01e8d193280", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.552712+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5.png", "timestamp": "2024-02-15T20:47:45.738246+00:00"}}, {"id": "86a77025-6748-46be-b6a1-344c57480995", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.597350+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5.png", "timestamp": "2024-02-15T20:47:45.738246+00:00"}}, {"id": "bde59d5e-698c-4ae8-ae51-d708e6728265", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.806633+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/68308cfc-c7d4-4109-a5b5-0eb1ae4f18e5.png", "timestamp": "2024-02-15T20:47:45.738246+00:00"}}, {"id": "b96a41f1-119b-4da9-897f-610c12c9b736", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.926493+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles visible in some areas. The majority of the road surface is dry.", "snapshot": {"id": "1e47b4fb-f6f3-470f-9f22-66af9ca611d7", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/1e47b4fb-f6f3-470f-9f22-66af9ca611d7.png", "timestamp": "2024-02-15T20:35:31.916000+00:00"}}, {"id": "5c1638af-0100-4592-b268-2c491212e35e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.354363+00:00", "label": "free", "label_explanation": "The road is clear, with no visible blockades or obstructions. Traffic is able to flow freely in both directions.", "snapshot": {"id": "1e47b4fb-f6f3-470f-9f22-66af9ca611d7", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/1e47b4fb-f6f3-470f-9f22-66af9ca611d7.png", "timestamp": "2024-02-15T20:35:31.916000+00:00"}}, {"id": "dd4a6960-5d05-49ae-a20b-bc6ad024fca4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.174120+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving at a steady pace. There are no major obstructions or congestion visible in the image.", "snapshot": {"id": "1e47b4fb-f6f3-470f-9f22-66af9ca611d7", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/1e47b4fb-f6f3-470f-9f22-66af9ca611d7.png", "timestamp": "2024-02-15T20:35:31.916000+00:00"}}, {"id": "a36b0aad-843f-496c-9585-da88f34055e3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.676198+00:00", "label": "true", "label_explanation": "The image shows signs of rain, with water droplets visible on the road surface and vehicles.", "snapshot": {"id": "1e47b4fb-f6f3-470f-9f22-66af9ca611d7", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/1e47b4fb-f6f3-470f-9f22-66af9ca611d7.png", "timestamp": "2024-02-15T20:35:31.916000+00:00"}}, {"id": "5350bd33-4b11-4e09-9452-203cdc1b02f8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.331665+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features multiple lanes of traffic, with cars, buses, and trucks visible. The road is flanked by buildings, trees, and other urban infrastructure. The weather appears to be overcast, with some light rain falling.", "snapshot": {"id": "1e47b4fb-f6f3-470f-9f22-66af9ca611d7", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/1e47b4fb-f6f3-470f-9f22-66af9ca611d7.png", "timestamp": "2024-02-15T20:35:31.916000+00:00"}}, {"id": "066b1cb8-6964-4da3-8474-392a9c984b55", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.123284+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1e47b4fb-f6f3-470f-9f22-66af9ca611d7", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/1e47b4fb-f6f3-470f-9f22-66af9ca611d7.png", "timestamp": "2024-02-15T20:35:31.916000+00:00"}}, {"id": "b19323c7-2a4c-4a41-823e-3d5af81e3334", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.492252+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "2614a482-5fc4-467f-8d23-9e842014406a", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/2614a482-5fc4-467f-8d23-9e842014406a.png", "timestamp": "2024-02-15T20:38:03.176289+00:00"}}, {"id": "d794a14b-d3ff-44d2-94db-ad23a19a52ed", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.263764+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a slight bend to the right. It is daytime, and the weather appears to be cloudy. There are a few trees on either side of the road, and buildings and other structures can be seen in the background.", "snapshot": {"id": "2614a482-5fc4-467f-8d23-9e842014406a", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/2614a482-5fc4-467f-8d23-9e842014406a.png", "timestamp": "2024-02-15T20:38:03.176289+00:00"}}, {"id": "fa508afe-4eb2-4278-9ddf-3f7709d147e4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.049296+00:00", "label": "false", "label_explanation": "The image is clear and sharp, with no visible signs of corruption or data loss.", "snapshot": {"id": "2614a482-5fc4-467f-8d23-9e842014406a", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/2614a482-5fc4-467f-8d23-9e842014406a.png", "timestamp": "2024-02-15T20:38:03.176289+00:00"}}, {"id": "a200469f-15e9-4b13-ac94-0d94fc306b1d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.263642+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and free of any obstructions.", "snapshot": {"id": "2614a482-5fc4-467f-8d23-9e842014406a", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/2614a482-5fc4-467f-8d23-9e842014406a.png", "timestamp": "2024-02-15T20:38:03.176289+00:00"}}, {"id": "3f8b83da-a118-438d-adf8-4b06d1f86cb8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.997334+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "2614a482-5fc4-467f-8d23-9e842014406a", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/2614a482-5fc4-467f-8d23-9e842014406a.png", "timestamp": "2024-02-15T20:38:03.176289+00:00"}}, {"id": "7d8761ee-c842-4d2e-9b17-1c8d0e103884", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.755627+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "2614a482-5fc4-467f-8d23-9e842014406a", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/2614a482-5fc4-467f-8d23-9e842014406a.png", "timestamp": "2024-02-15T20:38:03.176289+00:00"}}, {"id": "ed7f8086-bc4c-4043-a048-549aed9ad317", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.882242+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a steady flow of cars and pedestrians. Traffic appears to be moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "c2941208-8b25-43a6-a08d-33c2bf6d6410", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/c2941208-8b25-43a6-a08d-33c2bf6d6410.png", "timestamp": "2024-02-15T20:40:33.369790+00:00"}}, {"id": "5e6ed582-49e9-49c1-aee6-e42d6558e5a9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.010989+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c2941208-8b25-43a6-a08d-33c2bf6d6410", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/c2941208-8b25-43a6-a08d-33c2bf6d6410.png", "timestamp": "2024-02-15T20:40:33.369790+00:00"}}, {"id": "b1c93d4f-8bc3-4fb7-af4c-9958cb0d38fc", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:46.090687+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is flowing freely in both directions.", "snapshot": {"id": "c2941208-8b25-43a6-a08d-33c2bf6d6410", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/c2941208-8b25-43a6-a08d-33c2bf6d6410.png", "timestamp": "2024-02-15T20:40:33.369790+00:00"}}, {"id": "eca71727-a385-43fb-a582-e0093d77b635", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.606147+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation. Therefore, the water level is low.", "snapshot": {"id": "c2941208-8b25-43a6-a08d-33c2bf6d6410", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/c2941208-8b25-43a6-a08d-33c2bf6d6410.png", "timestamp": "2024-02-15T20:40:33.369790+00:00"}}, {"id": "e20b97b1-dc10-4f16-aa6f-fc7298e9980c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.418257+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "c2941208-8b25-43a6-a08d-33c2bf6d6410", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/c2941208-8b25-43a6-a08d-33c2bf6d6410.png", "timestamp": "2024-02-15T20:40:33.369790+00:00"}}, {"id": "51c77e1a-9fa7-45e7-ae52-dda57a918de3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.213483+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both cars and pedestrians.", "snapshot": {"id": "c2941208-8b25-43a6-a08d-33c2bf6d6410", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/c2941208-8b25-43a6-a08d-33c2bf6d6410.png", "timestamp": "2024-02-15T20:40:33.369790+00:00"}}, {"id": "4fadb1f5-4803-442f-8e95-8954cea92a43", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.134663+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and free of any obstructions.", "snapshot": {"id": "8ffb3078-f166-4127-8955-ca12beb7630c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/8ffb3078-f166-4127-8955-ca12beb7630c.png", "timestamp": "2024-02-15T20:45:20.046068+00:00"}}, {"id": "dbbfca6c-4097-4a19-b4d5-41279f66576f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.491879+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "8ffb3078-f166-4127-8955-ca12beb7630c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/8ffb3078-f166-4127-8955-ca12beb7630c.png", "timestamp": "2024-02-15T20:45:20.046068+00:00"}}, {"id": "e7f15190-9e5a-4624-942d-5acc8bcb19b2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.941847+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8ffb3078-f166-4127-8955-ca12beb7630c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/8ffb3078-f166-4127-8955-ca12beb7630c.png", "timestamp": "2024-02-15T20:45:20.046068+00:00"}}, {"id": "90ddd0f5-5eb5-472b-9804-22f60c6d3cfe", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.928034+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving at a steady pace.", "snapshot": {"id": "8ffb3078-f166-4127-8955-ca12beb7630c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/8ffb3078-f166-4127-8955-ca12beb7630c.png", "timestamp": "2024-02-15T20:45:20.046068+00:00"}}, {"id": "d9c3b9d2-8ca7-4026-ac84-1c4ba04b48c1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.750057+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "8ffb3078-f166-4127-8955-ca12beb7630c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/8ffb3078-f166-4127-8955-ca12beb7630c.png", "timestamp": "2024-02-15T20:45:20.046068+00:00"}}, {"id": "e96a3509-ee88-44aa-8d92-41ef6cdc9984", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.168042+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a slight bend to the right. There are several cars parked on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "8ffb3078-f166-4127-8955-ca12beb7630c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/8ffb3078-f166-4127-8955-ca12beb7630c.png", "timestamp": "2024-02-15T20:45:20.046068+00:00"}}, {"id": "2617d900-6db9-4cdf-8477-0ebfa822c054", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.729459+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry and there are no signs of water accumulation.", "snapshot": {"id": "bb23bce2-88c4-449a-9b0c-3a962c3448d1", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/bb23bce2-88c4-449a-9b0c-3a962c3448d1.png", "timestamp": "2024-02-15T20:42:56.753977+00:00"}}, {"id": "01099cd0-76df-4bb5-8c01-6847459c9dcc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.501685+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several buildings and trees on either side of the road, and parked cars on the side of the road.", "snapshot": {"id": "bb23bce2-88c4-449a-9b0c-3a962c3448d1", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/bb23bce2-88c4-449a-9b0c-3a962c3448d1.png", "timestamp": "2024-02-15T20:42:56.753977+00:00"}}, {"id": "b539a67c-4569-4990-a334-b80f65cb5642", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.285088+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bb23bce2-88c4-449a-9b0c-3a962c3448d1", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/bb23bce2-88c4-449a-9b0c-3a962c3448d1.png", "timestamp": "2024-02-15T20:42:56.753977+00:00"}}, {"id": "d8ce7af3-b5d3-4d50-ab2b-b4dc9ab28888", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.468819+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "bb23bce2-88c4-449a-9b0c-3a962c3448d1", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/bb23bce2-88c4-449a-9b0c-3a962c3448d1.png", "timestamp": "2024-02-15T20:42:56.753977+00:00"}}, {"id": "077a8965-bb3b-4111-9e75-00632116db9d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.244633+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move freely without any significant congestion.", "snapshot": {"id": "bb23bce2-88c4-449a-9b0c-3a962c3448d1", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/bb23bce2-88c4-449a-9b0c-3a962c3448d1.png", "timestamp": "2024-02-15T20:42:56.753977+00:00"}}, {"id": "63008dde-328d-4e57-b56c-7915e0caa295", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.979846+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of water accumulation or flooding.", "snapshot": {"id": "bb23bce2-88c4-449a-9b0c-3a962c3448d1", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/bb23bce2-88c4-449a-9b0c-3a962c3448d1.png", "timestamp": "2024-02-15T20:42:56.753977+00:00"}}, {"id": "26277682-1267-44bb-9520-c7eff75d8044", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.439968+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86.png", "timestamp": "2024-02-15T20:33:05.006836+00:00"}}, {"id": "54920b3d-4010-45a6-bb3d-5ecd18e26332", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.886764+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86.png", "timestamp": "2024-02-15T20:33:05.006836+00:00"}}, {"id": "1178405c-d709-4fba-b373-280e3c5594b6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.843195+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86.png", "timestamp": "2024-02-15T20:33:05.006836+00:00"}}, {"id": "02835255-8f7e-4172-8c6f-a134985ab75d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.401948+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86.png", "timestamp": "2024-02-15T20:33:05.006836+00:00"}}, {"id": "5fa17304-a0d5-4951-a95b-ed1a503ee58d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:19.741902+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86.png", "timestamp": "2024-02-15T20:33:05.006836+00:00"}}, {"id": "21f51e6d-9b20-45bf-90d2-7ed0069ebe19", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.272640+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/67b8b8b2-d0cb-4dbc-8068-717bc8ae3b86.png", "timestamp": "2024-02-15T20:33:05.006836+00:00"}}, {"id": "5eeb883c-e894-4c41-bf77-3e5a3282bb07", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.313208+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "5b0b1bb7-32c0-4905-9df1-98f3505cbf63", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/5b0b1bb7-32c0-4905-9df1-98f3505cbf63.png", "timestamp": "2024-02-15T20:52:32.255182+00:00"}}, {"id": "61bd69b0-1508-489d-9100-b5d2e5b333dd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.102299+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "5b0b1bb7-32c0-4905-9df1-98f3505cbf63", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/5b0b1bb7-32c0-4905-9df1-98f3505cbf63.png", "timestamp": "2024-02-15T20:52:32.255182+00:00"}}, {"id": "233e1073-c3a0-49bf-acf5-700ca2ac27a1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.596706+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "5b0b1bb7-32c0-4905-9df1-98f3505cbf63", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/5b0b1bb7-32c0-4905-9df1-98f3505cbf63.png", "timestamp": "2024-02-15T20:52:32.255182+00:00"}}, {"id": "fed67e8a-cec3-4e43-8b07-a58677b45015", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.300011+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a slight bend to the right. There are several cars on the road, including a bus, and a few trees on either side of the road. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "5b0b1bb7-32c0-4905-9df1-98f3505cbf63", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/5b0b1bb7-32c0-4905-9df1-98f3505cbf63.png", "timestamp": "2024-02-15T20:52:32.255182+00:00"}}, {"id": "4cc47b14-0002-473d-9c20-17f7326129b0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.127312+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "5b0b1bb7-32c0-4905-9df1-98f3505cbf63", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/5b0b1bb7-32c0-4905-9df1-98f3505cbf63.png", "timestamp": "2024-02-15T20:52:32.255182+00:00"}}, {"id": "12c2a8d6-546e-4f22-861e-cb62bb2a8be2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.874889+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "5b0b1bb7-32c0-4905-9df1-98f3505cbf63", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/5b0b1bb7-32c0-4905-9df1-98f3505cbf63.png", "timestamp": "2024-02-15T20:52:32.255182+00:00"}}, {"id": "be3b1e44-4245-40a5-aec3-70c985013bee", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.104848+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "115de6c0-5558-466a-bd5b-36a20680d93c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/115de6c0-5558-466a-bd5b-36a20680d93c.png", "timestamp": "2024-02-15T20:54:59.586699+00:00"}}, {"id": "a1ec1873-d223-4f48-bdc7-5a2da6dd9a5a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:11.301723+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "115de6c0-5558-466a-bd5b-36a20680d93c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/115de6c0-5558-466a-bd5b-36a20680d93c.png", "timestamp": "2024-02-15T20:54:59.586699+00:00"}}, {"id": "e6d7cdd7-4842-480b-bbf5-b0e4fea42903", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:11.035019+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly in both directions. There are no major obstructions or delays visible.", "snapshot": {"id": "115de6c0-5558-466a-bd5b-36a20680d93c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/115de6c0-5558-466a-bd5b-36a20680d93c.png", "timestamp": "2024-02-15T20:54:59.586699+00:00"}}, {"id": "9c2572a8-2c15-4b6a-95de-6836d1278b1c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.793320+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is dry.", "snapshot": {"id": "115de6c0-5558-466a-bd5b-36a20680d93c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/115de6c0-5558-466a-bd5b-36a20680d93c.png", "timestamp": "2024-02-15T20:54:59.586699+00:00"}}, {"id": "65639f59-411f-4753-b848-9252c6d2f1f7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.583200+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "115de6c0-5558-466a-bd5b-36a20680d93c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/115de6c0-5558-466a-bd5b-36a20680d93c.png", "timestamp": "2024-02-15T20:54:59.586699+00:00"}}, {"id": "b7c622af-270a-4bcb-9ec3-00274b420d81", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.310172+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "115de6c0-5558-466a-bd5b-36a20680d93c", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/115de6c0-5558-466a-bd5b-36a20680d93c.png", "timestamp": "2024-02-15T20:54:59.586699+00:00"}}, {"id": "71bf712e-59eb-49b0-ac43-9bf5c5135c7e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:18.332171+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and free of any obstructions.", "snapshot": {"id": "825dbafb-ccea-4ee4-8f21-6f2806a97870", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/825dbafb-ccea-4ee4-8f21-6f2806a97870.png", "timestamp": "2024-02-15T20:50:06.318098+00:00"}}, {"id": "f22348b2-1d09-40e1-8c6f-bc75fead53ad", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.718412+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "825dbafb-ccea-4ee4-8f21-6f2806a97870", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/825dbafb-ccea-4ee4-8f21-6f2806a97870.png", "timestamp": "2024-02-15T20:50:06.318098+00:00"}}, {"id": "3c27c4ac-9c2d-4485-8d4e-f7186e57d661", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.149198+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "825dbafb-ccea-4ee4-8f21-6f2806a97870", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/825dbafb-ccea-4ee4-8f21-6f2806a97870.png", "timestamp": "2024-02-15T20:50:06.318098+00:00"}}, {"id": "71075174-af41-4f09-8c77-6982a838ae2e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.528057+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, paved road with multiple lanes, bordered by buildings and trees. The road is moderately busy, with several cars and motorbikes visible. The weather appears to be overcast, with grey skies.", "snapshot": {"id": "825dbafb-ccea-4ee4-8f21-6f2806a97870", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/825dbafb-ccea-4ee4-8f21-6f2806a97870.png", "timestamp": "2024-02-15T20:50:06.318098+00:00"}}, {"id": "64bc87b0-3c1b-4aa7-b636-306cbdaa8aab", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:18.146162+00:00", "label": "easy", "label_explanation": "The traffic flow is moderate. There are several cars and motorbikes visible on the road, but they are able to move without significant hindrance.", "snapshot": {"id": "825dbafb-ccea-4ee4-8f21-6f2806a97870", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/825dbafb-ccea-4ee4-8f21-6f2806a97870.png", "timestamp": "2024-02-15T20:50:06.318098+00:00"}}, {"id": "3690a24d-d6d5-401b-bd2b-f2762b688b6c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.939007+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of water accumulation, and the road surface is completely dry.", "snapshot": {"id": "825dbafb-ccea-4ee4-8f21-6f2806a97870", "camera_id": "001492", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001492/825dbafb-ccea-4ee4-8f21-6f2806a97870.png", "timestamp": "2024-02-15T20:50:06.318098+00:00"}}]}, {"id": "001496", "name": "PRA\u00c7A DA BANDEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91089798, "longitude": -43.21362052, "objects": ["image_corrupted", "image_description", "rain", "water_level", "traffic", "road_blockade"], "identifications": [{"id": "a21f6ee0-2db7-4389-9791-c56f0951ccb3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.860319+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "63ec5978-ce3f-4b95-a1a2-95938bfaeffb", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/63ec5978-ce3f-4b95-a1a2-95938bfaeffb.png", "timestamp": "2024-02-15T20:30:33.568496+00:00"}}, {"id": "ceb57c22-fad5-4109-8899-07e8ef9397ae", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:50.027080+00:00", "label": "easy", "label_explanation": "Traffic appears to be moving smoothly, with vehicles navigating through the wet conditions without any major disruptions.", "snapshot": {"id": "63ec5978-ce3f-4b95-a1a2-95938bfaeffb", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/63ec5978-ce3f-4b95-a1a2-95938bfaeffb.png", "timestamp": "2024-02-15T20:30:33.568496+00:00"}}, {"id": "dbf29e05-f6e2-4d5e-9985-ed4bffd742ce", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.786505+00:00", "label": "low", "label_explanation": "The water level on the road is relatively low, with some areas showing shallow puddles but no significant accumulation.", "snapshot": {"id": "63ec5978-ce3f-4b95-a1a2-95938bfaeffb", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/63ec5978-ce3f-4b95-a1a2-95938bfaeffb.png", "timestamp": "2024-02-15T20:30:33.568496+00:00"}}, {"id": "76fd83d5-aecc-43f4-80a8-798441d31e33", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:50.281110+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for normal traffic flow.", "snapshot": {"id": "63ec5978-ce3f-4b95-a1a2-95938bfaeffb", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/63ec5978-ce3f-4b95-a1a2-95938bfaeffb.png", "timestamp": "2024-02-15T20:30:33.568496+00:00"}}, {"id": "a6301cad-d38a-4d06-aa6f-ef523fdbae2a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.461035+00:00", "label": "true", "label_explanation": "The presence of rain is evident in the image, as the road surface is wet and there are water droplets on the camera lens.", "snapshot": {"id": "63ec5978-ce3f-4b95-a1a2-95938bfaeffb", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/63ec5978-ce3f-4b95-a1a2-95938bfaeffb.png", "timestamp": "2024-02-15T20:30:33.568496+00:00"}}, {"id": "69e73663-c58b-4383-99e8-37e8056872db", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.195417+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during rainfall. It shows a wide, multi-lane road with a few vehicles, including cars and buses, navigating through standing water. The road is lined with trees, buildings, and other urban infrastructure.", "snapshot": {"id": "63ec5978-ce3f-4b95-a1a2-95938bfaeffb", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/63ec5978-ce3f-4b95-a1a2-95938bfaeffb.png", "timestamp": "2024-02-15T20:30:33.568496+00:00"}}, {"id": "f4f3f4dd-013e-4764-98f7-28cf9d2deb46", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:30.138866+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades. Traffic is able to flow freely in both directions.", "snapshot": {"id": "8e2053ee-1990-4e94-afb2-39a4810e988f", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/8e2053ee-1990-4e94-afb2-39a4810e988f.png", "timestamp": "2024-02-15T20:33:13.538533+00:00"}}, {"id": "e01d935e-cad9-4c49-8be2-33d6ad61f75c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.924364+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a steady flow of vehicles moving in both directions. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "8e2053ee-1990-4e94-afb2-39a4810e988f", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/8e2053ee-1990-4e94-afb2-39a4810e988f.png", "timestamp": "2024-02-15T20:33:13.538533+00:00"}}, {"id": "08e76186-a6ab-4b9d-b47a-b203ba173791", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.674865+00:00", "label": "low", "label_explanation": "There is no significant accumulation of water on the road surface. While it is wet, the water level is low and does not pose a risk to traffic.", "snapshot": {"id": "8e2053ee-1990-4e94-afb2-39a4810e988f", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/8e2053ee-1990-4e94-afb2-39a4810e988f.png", "timestamp": "2024-02-15T20:33:13.538533+00:00"}}, {"id": "6ad8f347-9ea9-4b98-ae56-a5c284442830", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.407489+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently raining.", "snapshot": {"id": "8e2053ee-1990-4e94-afb2-39a4810e988f", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/8e2053ee-1990-4e94-afb2-39a4810e988f.png", "timestamp": "2024-02-15T20:33:13.538533+00:00"}}, {"id": "ee81be5b-170f-47b2-91da-1fbfeba0d94a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.130028+00:00", "label": "null", "label_explanation": "The image captures a section of an urban road with moderate traffic. It is daytime and the weather appears to be overcast, with dark clouds covering the sky. The road surface is wet, but there are no significant puddles or standing water.", "snapshot": {"id": "8e2053ee-1990-4e94-afb2-39a4810e988f", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/8e2053ee-1990-4e94-afb2-39a4810e988f.png", "timestamp": "2024-02-15T20:33:13.538533+00:00"}}, {"id": "0de754aa-4154-44b0-973f-456251320786", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.897747+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8e2053ee-1990-4e94-afb2-39a4810e988f", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/8e2053ee-1990-4e94-afb2-39a4810e988f.png", "timestamp": "2024-02-15T20:33:13.538533+00:00"}}, {"id": "ac0df2d7-25ef-4a06-991a-150dca855548", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.896937+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "d4ed4bb5-6565-4a41-bce1-307edc0c625e", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/d4ed4bb5-6565-4a41-bce1-307edc0c625e.png", "timestamp": "2024-02-15T20:43:01.926842+00:00"}}, {"id": "85af099a-5224-4cae-b289-a273509e1b97", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.084233+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "d4ed4bb5-6565-4a41-bce1-307edc0c625e", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/d4ed4bb5-6565-4a41-bce1-307edc0c625e.png", "timestamp": "2024-02-15T20:43:01.926842+00:00"}}, {"id": "3cb7e4b6-add1-4cba-ad78-07275bd6bb1f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.393038+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "d4ed4bb5-6565-4a41-bce1-307edc0c625e", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/d4ed4bb5-6565-4a41-bce1-307edc0c625e.png", "timestamp": "2024-02-15T20:43:01.926842+00:00"}}, {"id": "674c5188-8ee0-4b62-b2b7-ac5126e6c63f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.684975+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "d4ed4bb5-6565-4a41-bce1-307edc0c625e", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/d4ed4bb5-6565-4a41-bce1-307edc0c625e.png", "timestamp": "2024-02-15T20:43:01.926842+00:00"}}, {"id": "ac77462f-4d2b-4020-bc83-789b86d56039", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.184515+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a wide median strip. Trees are present on either side of the road, and buildings can be seen in the background. The weather appears to be overcast, and the road surface is wet from recent rain.", "snapshot": {"id": "d4ed4bb5-6565-4a41-bce1-307edc0c625e", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/d4ed4bb5-6565-4a41-bce1-307edc0c625e.png", "timestamp": "2024-02-15T20:43:01.926842+00:00"}}, {"id": "0dffefd6-ca8b-41df-9fed-01c4137e6a2f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.972299+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d4ed4bb5-6565-4a41-bce1-307edc0c625e", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/d4ed4bb5-6565-4a41-bce1-307edc0c625e.png", "timestamp": "2024-02-15T20:43:01.926842+00:00"}}, {"id": "382f27c5-41f2-47a0-871f-9e86640413f3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.814838+00:00", "label": "partially", "label_explanation": "The road is partially blocked by the flood water. Some areas of the road are completely submerged, and the deepest areas of water are likely to be near the curbs, where the water can pool. However, the road is still passable, and vehicles are able to drive through the water.", "snapshot": {"id": "5501f196-074d-4ed9-b153-8ee70843e0f3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/5501f196-074d-4ed9-b153-8ee70843e0f3.png", "timestamp": "2024-02-15T20:35:40.561741+00:00"}}, {"id": "94673ecb-60ec-4bdb-a303-5421bf4d0413", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.038280+00:00", "label": "true", "label_explanation": "The road is wet, and there is standing water in some areas. The rain is likely to be light to moderate, as the visibility is still good.", "snapshot": {"id": "5501f196-074d-4ed9-b153-8ee70843e0f3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/5501f196-074d-4ed9-b153-8ee70843e0f3.png", "timestamp": "2024-02-15T20:35:40.561741+00:00"}}, {"id": "924d2caa-46cd-498f-bd99-4d7278e14fcf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.523601+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several cars on the road, but they are able to move at a reasonable speed. The traffic is likely to be slower than usual due to the rain.", "snapshot": {"id": "5501f196-074d-4ed9-b153-8ee70843e0f3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/5501f196-074d-4ed9-b153-8ee70843e0f3.png", "timestamp": "2024-02-15T20:35:40.561741+00:00"}}, {"id": "b3570df9-4afb-48de-81dc-b1861fb01ab7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.273333+00:00", "label": "medium", "label_explanation": "The water level is medium. Some areas of the road are completely submerged, while others are only partially submerged. The deepest areas of water are likely to be near the curbs, where the water can pool.", "snapshot": {"id": "5501f196-074d-4ed9-b153-8ee70843e0f3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/5501f196-074d-4ed9-b153-8ee70843e0f3.png", "timestamp": "2024-02-15T20:35:40.561741+00:00"}}, {"id": "3ae3eb16-679e-441f-a42c-df82d236fae6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.822464+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is raining, and the road is wet. There are several cars on the road, and the traffic is moderate. The road is partially flooded, with some areas of standing water. There are trees and buildings in the background.", "snapshot": {"id": "5501f196-074d-4ed9-b153-8ee70843e0f3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/5501f196-074d-4ed9-b153-8ee70843e0f3.png", "timestamp": "2024-02-15T20:35:40.561741+00:00"}}, {"id": "f9ba737b-a5bf-43a2-a35e-cc6d87849d60", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.548317+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5501f196-074d-4ed9-b153-8ee70843e0f3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/5501f196-074d-4ed9-b153-8ee70843e0f3.png", "timestamp": "2024-02-15T20:35:40.561741+00:00"}}, {"id": "f3adcda8-2008-4ca6-ab39-b59e83f7a7a2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.986252+00:00", "label": "free", "label_explanation": "The road is free of any obstructions or blockades. All lanes are open for traffic, and there are no detours or road closures.", "snapshot": {"id": "19d48010-bf56-49b1-ae57-bd83e51ec95d", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/19d48010-bf56-49b1-ae57-bd83e51ec95d.png", "timestamp": "2024-02-15T20:38:11.318833+00:00"}}, {"id": "f7089956-8d9e-4f09-956b-c864f308c7e6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.801582+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions. There are no major obstructions or blockages visible.", "snapshot": {"id": "19d48010-bf56-49b1-ae57-bd83e51ec95d", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/19d48010-bf56-49b1-ae57-bd83e51ec95d.png", "timestamp": "2024-02-15T20:38:11.318833+00:00"}}, {"id": "62c577c5-f679-4604-b62c-67a3411b3c5b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.600280+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is still visible and dry.", "snapshot": {"id": "19d48010-bf56-49b1-ae57-bd83e51ec95d", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/19d48010-bf56-49b1-ae57-bd83e51ec95d.png", "timestamp": "2024-02-15T20:38:11.318833+00:00"}}, {"id": "c0b4fb6b-0dba-4fbb-9000-6369eabc464d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.366225+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also small puddles of water on the road.", "snapshot": {"id": "19d48010-bf56-49b1-ae57-bd83e51ec95d", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/19d48010-bf56-49b1-ae57-bd83e51ec95d.png", "timestamp": "2024-02-15T20:38:11.318833+00:00"}}, {"id": "6303878f-8fc0-442e-b053-c282748f6e67", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.984988+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears cloudy. There are a few trees on either side of the road, and buildings and structures can be seen in the background.", "snapshot": {"id": "19d48010-bf56-49b1-ae57-bd83e51ec95d", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/19d48010-bf56-49b1-ae57-bd83e51ec95d.png", "timestamp": "2024-02-15T20:38:11.318833+00:00"}}, {"id": "3610cf79-ba05-4ad1-a191-96eeffb804da", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.712243+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "19d48010-bf56-49b1-ae57-bd83e51ec95d", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/19d48010-bf56-49b1-ae57-bd83e51ec95d.png", "timestamp": "2024-02-15T20:38:11.318833+00:00"}}, {"id": "a102b84e-4c57-4d82-a6a0-c2af705b6963", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.964667+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "b0b8333e-f96a-43e1-a331-b5bbc9685430", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/b0b8333e-f96a-43e1-a331-b5bbc9685430.png", "timestamp": "2024-02-15T20:47:49.953546+00:00"}}, {"id": "cb5bb34e-65db-4fdb-bbb4-bdd88a43972d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.727190+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "b0b8333e-f96a-43e1-a331-b5bbc9685430", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/b0b8333e-f96a-43e1-a331-b5bbc9685430.png", "timestamp": "2024-02-15T20:47:49.953546+00:00"}}, {"id": "9256d11d-ebcb-4ad9-804a-0a4bc4448edb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.456348+00:00", "label": "low", "label_explanation": "There are some small puddles of water on the road, but they are not causing any significant traffic disruptions.", "snapshot": {"id": "b0b8333e-f96a-43e1-a331-b5bbc9685430", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/b0b8333e-f96a-43e1-a331-b5bbc9685430.png", "timestamp": "2024-02-15T20:47:49.953546+00:00"}}, {"id": "600b758a-7ac6-4962-abc9-f65039c85b45", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.244106+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "b0b8333e-f96a-43e1-a331-b5bbc9685430", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/b0b8333e-f96a-43e1-a331-b5bbc9685430.png", "timestamp": "2024-02-15T20:47:49.953546+00:00"}}, {"id": "58bbdfef-6cc4-43f6-ae4a-c3521defd8ca", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.035368+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a few cars on it. It is daytime and the weather is cloudy. There are trees on either side of the road and buildings in the background.", "snapshot": {"id": "b0b8333e-f96a-43e1-a331-b5bbc9685430", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/b0b8333e-f96a-43e1-a331-b5bbc9685430.png", "timestamp": "2024-02-15T20:47:49.953546+00:00"}}, {"id": "cecd31a5-3150-46a4-8589-b52c06e47ecd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.835860+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b0b8333e-f96a-43e1-a331-b5bbc9685430", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/b0b8333e-f96a-43e1-a331-b5bbc9685430.png", "timestamp": "2024-02-15T20:47:49.953546+00:00"}}, {"id": "3128dd61-d695-4834-b33c-c85e25810c71", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.106735+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and passable in both directions.", "snapshot": {"id": "4df8127e-5555-4c7b-80e7-5b30fe55136b", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df8127e-5555-4c7b-80e7-5b30fe55136b.png", "timestamp": "2024-02-15T20:40:37.604094+00:00"}}, {"id": "ab83f4db-b380-4fd8-ac9f-895b52b2ae85", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.830469+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move without any significant delays.", "snapshot": {"id": "4df8127e-5555-4c7b-80e7-5b30fe55136b", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df8127e-5555-4c7b-80e7-5b30fe55136b.png", "timestamp": "2024-02-15T20:40:37.604094+00:00"}}, {"id": "b911b655-196a-4615-a3eb-0dcce23066ae", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.612261+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some puddles, but they are shallow and do not cover a significant portion of the road surface.", "snapshot": {"id": "4df8127e-5555-4c7b-80e7-5b30fe55136b", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df8127e-5555-4c7b-80e7-5b30fe55136b.png", "timestamp": "2024-02-15T20:40:37.604094+00:00"}}, {"id": "cd76de24-c305-4d9c-ab37-d9232b425a48", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.898351+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4df8127e-5555-4c7b-80e7-5b30fe55136b", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df8127e-5555-4c7b-80e7-5b30fe55136b.png", "timestamp": "2024-02-15T20:40:37.604094+00:00"}}, {"id": "d1f4383f-9f43-43bb-824e-aa4f268f5391", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.431176+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are water puddles present. The weather appears to be cloudy and wet.", "snapshot": {"id": "4df8127e-5555-4c7b-80e7-5b30fe55136b", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df8127e-5555-4c7b-80e7-5b30fe55136b.png", "timestamp": "2024-02-15T20:40:37.604094+00:00"}}, {"id": "455ff8cd-e528-4190-9dff-d003acd62eee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.182165+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a bus lane on the leftmost side. Trees are present on both sides of the road, and buildings can be seen in the background. The weather appears to be cloudy and wet, as the road surface is visibly wet and there are water puddles.", "snapshot": {"id": "4df8127e-5555-4c7b-80e7-5b30fe55136b", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df8127e-5555-4c7b-80e7-5b30fe55136b.png", "timestamp": "2024-02-15T20:40:37.604094+00:00"}}, {"id": "1d43b5db-7b7b-42c3-8297-96b50ebd24a7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.034141+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with several vehicles visible on the road. The vehicles are able to move freely, and there are no signs of congestion or delays.", "snapshot": {"id": "f982f88a-b96e-43e4-81e5-f8849ee69109", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f982f88a-b96e-43e4-81e5-f8849ee69109.png", "timestamp": "2024-02-15T20:45:25.072188+00:00"}}, {"id": "3658e723-53cb-49de-a4ea-bdd060eaa39b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.304022+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road. The road is clear and free of any hazards or obstacles.", "snapshot": {"id": "f982f88a-b96e-43e4-81e5-f8849ee69109", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f982f88a-b96e-43e4-81e5-f8849ee69109.png", "timestamp": "2024-02-15T20:45:25.072188+00:00"}}, {"id": "07157396-6329-4521-9298-2348c99ca0b5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.458225+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy, as there is no standing water on the road.", "snapshot": {"id": "f982f88a-b96e-43e4-81e5-f8849ee69109", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f982f88a-b96e-43e4-81e5-f8849ee69109.png", "timestamp": "2024-02-15T20:45:25.072188+00:00"}}, {"id": "13821dfb-2b38-447b-890f-d286ed5ddb2d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.035165+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f982f88a-b96e-43e4-81e5-f8849ee69109", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f982f88a-b96e-43e4-81e5-f8849ee69109.png", "timestamp": "2024-02-15T20:45:25.072188+00:00"}}, {"id": "0d74deca-3258-4138-9553-ac1ef52b5513", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.790489+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road surface is wet, but this is likely due to recent rain. There are no signs of flooding or other water-related hazards.", "snapshot": {"id": "f982f88a-b96e-43e4-81e5-f8849ee69109", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f982f88a-b96e-43e4-81e5-f8849ee69109.png", "timestamp": "2024-02-15T20:45:25.072188+00:00"}}, {"id": "125e9f58-b5bd-4336-8092-2cfdfb8ddad7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.247594+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a wide median strip. Trees can be seen lining the road on both sides. The weather appears to be overcast, as the sky is grey and there are dark clouds. There are several vehicles visible on the road, including cars and buses. The road surface is wet, but there is no standing water.", "snapshot": {"id": "f982f88a-b96e-43e4-81e5-f8849ee69109", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f982f88a-b96e-43e4-81e5-f8849ee69109.png", "timestamp": "2024-02-15T20:45:25.072188+00:00"}}, {"id": "62705b9e-73e5-4434-a620-2975158ee94c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.376944+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "f94ee36f-e395-4c89-820c-3095bdfbf836", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f94ee36f-e395-4c89-820c-3095bdfbf836.png", "timestamp": "2024-02-15T20:50:13.588438+00:00"}}, {"id": "9b022d2e-ef33-4aeb-87df-bab9b14d1073", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.169158+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "f94ee36f-e395-4c89-820c-3095bdfbf836", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f94ee36f-e395-4c89-820c-3095bdfbf836.png", "timestamp": "2024-02-15T20:50:13.588438+00:00"}}, {"id": "9425007f-3610-4fb9-8842-8d11720dac42", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.889694+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road, but they are not causing any significant traffic disruptions.", "snapshot": {"id": "f94ee36f-e395-4c89-820c-3095bdfbf836", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f94ee36f-e395-4c89-820c-3095bdfbf836.png", "timestamp": "2024-02-15T20:50:13.588438+00:00"}}, {"id": "fec3e3ac-70a1-48eb-8551-adfe264e8a1a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.674838+00:00", "label": "true", "label_explanation": "The road is wet, and there are visible raindrops on the windshield of the vehicle capturing the image.", "snapshot": {"id": "f94ee36f-e395-4c89-820c-3095bdfbf836", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f94ee36f-e395-4c89-820c-3095bdfbf836.png", "timestamp": "2024-02-15T20:50:13.588438+00:00"}}, {"id": "02cd879f-b3ae-4e8e-9fe2-43c379859091", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.487860+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is raining, and the road is wet. There are several vehicles on the road, including cars and buses. The road is lined with trees, and there are buildings in the background.", "snapshot": {"id": "f94ee36f-e395-4c89-820c-3095bdfbf836", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f94ee36f-e395-4c89-820c-3095bdfbf836.png", "timestamp": "2024-02-15T20:50:13.588438+00:00"}}, {"id": "9b76f864-6d1b-4014-ad12-ae054cefeea0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.280385+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f94ee36f-e395-4c89-820c-3095bdfbf836", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/f94ee36f-e395-4c89-820c-3095bdfbf836.png", "timestamp": "2024-02-15T20:50:13.588438+00:00"}}, {"id": "39a58547-a438-4115-b9b5-933745596af5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:50.201234+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "37be6393-2849-478e-bae6-b15e53b6f3bd", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/37be6393-2849-478e-bae6-b15e53b6f3bd.png", "timestamp": "2024-02-15T20:52:37.207796+00:00"}}, {"id": "68818a08-569b-484f-872a-2d521b45dd8a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.733064+00:00", "label": "low", "label_explanation": "There is some water on the road surface, but it is not deep enough to cause any significant problems for traffic.", "snapshot": {"id": "37be6393-2849-478e-bae6-b15e53b6f3bd", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/37be6393-2849-478e-bae6-b15e53b6f3bd.png", "timestamp": "2024-02-15T20:52:37.207796+00:00"}}, {"id": "3ee82162-f019-4ffd-bd64-e481144ed80e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.529599+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "37be6393-2849-478e-bae6-b15e53b6f3bd", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/37be6393-2849-478e-bae6-b15e53b6f3bd.png", "timestamp": "2024-02-15T20:52:37.207796+00:00"}}, {"id": "0b12c634-05dd-442e-a03e-313c8540da8d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.315541+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a wide median strip. There are trees on either side of the road, and buildings and other structures in the background. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "37be6393-2849-478e-bae6-b15e53b6f3bd", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/37be6393-2849-478e-bae6-b15e53b6f3bd.png", "timestamp": "2024-02-15T20:52:37.207796+00:00"}}, {"id": "df0fa3bd-4555-4e89-997a-f57d4e9f86ae", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.109834+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "37be6393-2849-478e-bae6-b15e53b6f3bd", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/37be6393-2849-478e-bae6-b15e53b6f3bd.png", "timestamp": "2024-02-15T20:52:37.207796+00:00"}}, {"id": "91481de4-8a18-41c7-96b8-ab72b1af506a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.941845+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "37be6393-2849-478e-bae6-b15e53b6f3bd", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/37be6393-2849-478e-bae6-b15e53b6f3bd.png", "timestamp": "2024-02-15T20:52:37.207796+00:00"}}, {"id": "bcbd58ad-4140-438a-b0c3-09b11046e5b5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.397566+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "4df6b589-e704-49e0-89fd-fe6bd55842b3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df6b589-e704-49e0-89fd-fe6bd55842b3.png", "timestamp": "2024-02-15T20:55:05.291280+00:00"}}, {"id": "c91a45e6-0279-4ded-b28a-d9e23abc36d9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.724439+00:00", "label": "true", "label_explanation": "The road is wet, and there are water droplets visible on the windshield of the vehicle capturing the image.", "snapshot": {"id": "4df6b589-e704-49e0-89fd-fe6bd55842b3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df6b589-e704-49e0-89fd-fe6bd55842b3.png", "timestamp": "2024-02-15T20:55:05.291280+00:00"}}, {"id": "9a611c24-19e4-4123-b465-eac4f3dcb38b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.545625+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is raining, and the road is wet. There are several vehicles on the road, including cars and buses. The road is lined with trees, and there are buildings in the background.", "snapshot": {"id": "4df6b589-e704-49e0-89fd-fe6bd55842b3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df6b589-e704-49e0-89fd-fe6bd55842b3.png", "timestamp": "2024-02-15T20:55:05.291280+00:00"}}, {"id": "3f2f39b2-1fbb-4ed3-85cc-e16efea5c8b3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.295569+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4df6b589-e704-49e0-89fd-fe6bd55842b3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df6b589-e704-49e0-89fd-fe6bd55842b3.png", "timestamp": "2024-02-15T20:55:05.291280+00:00"}}, {"id": "599d8fd3-d2ed-47d9-8c7a-5f5db8703960", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.112847+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "4df6b589-e704-49e0-89fd-fe6bd55842b3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df6b589-e704-49e0-89fd-fe6bd55842b3.png", "timestamp": "2024-02-15T20:55:05.291280+00:00"}}, {"id": "00410c6c-70a0-4271-a1d5-2448ab38bc04", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.003670+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "4df6b589-e704-49e0-89fd-fe6bd55842b3", "camera_id": "001496", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001496/4df6b589-e704-49e0-89fd-fe6bd55842b3.png", "timestamp": "2024-02-15T20:55:05.291280+00:00"}}]}, {"id": "001488", "name": "AV. BRAZ DE PINA, 404 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.837986, "longitude": -43.284893, "objects": ["rain", "image_corrupted", "water_level", "traffic", "road_blockade", "image_description"], "identifications": []}, {"id": "001484", "name": "R. S\u00c3O CLEMENTE X R. SOROCABA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9500493, "longitude": -43.19102923, "objects": ["image_corrupted", "image_description", "water_level", "rain", "traffic", "road_blockade"], "identifications": [{"id": "f67a6b2d-6aa3-4181-b6b6-12c353fdd9d8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:26.318565+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "6219ceae-adc0-4acb-a3db-45ad7ab0237b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/6219ceae-adc0-4acb-a3db-45ad7ab0237b.png", "timestamp": "2024-02-15T20:30:08.999169+00:00"}}, {"id": "98ba481d-189b-4439-a0ad-809c81e97176", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.994452+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "6219ceae-adc0-4acb-a3db-45ad7ab0237b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/6219ceae-adc0-4acb-a3db-45ad7ab0237b.png", "timestamp": "2024-02-15T20:30:08.999169+00:00"}}, {"id": "b2592579-96a4-4e5f-9b13-41e131ee2b71", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.667809+00:00", "label": "low", "label_explanation": "There is no standing water or puddles on the road surface.", "snapshot": {"id": "6219ceae-adc0-4acb-a3db-45ad7ab0237b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/6219ceae-adc0-4acb-a3db-45ad7ab0237b.png", "timestamp": "2024-02-15T20:30:08.999169+00:00"}}, {"id": "db31a19c-978b-4808-a87b-d9b5e56152ca", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.315660+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "6219ceae-adc0-4acb-a3db-45ad7ab0237b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/6219ceae-adc0-4acb-a3db-45ad7ab0237b.png", "timestamp": "2024-02-15T20:30:08.999169+00:00"}}, {"id": "273c9ea6-388a-47d6-8ace-270ae68ad0db", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.909307+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both vehicular and pedestrian traffic. The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "6219ceae-adc0-4acb-a3db-45ad7ab0237b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/6219ceae-adc0-4acb-a3db-45ad7ab0237b.png", "timestamp": "2024-02-15T20:30:08.999169+00:00"}}, {"id": "b7963513-72ee-4c7c-a2e3-3d5e24ff91ce", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.367978+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6219ceae-adc0-4acb-a3db-45ad7ab0237b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/6219ceae-adc0-4acb-a3db-45ad7ab0237b.png", "timestamp": "2024-02-15T20:30:08.999169+00:00"}}, {"id": "2da4abd4-572b-4779-83bd-aa8a6f1d09f2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.159831+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "1a012090-9b35-4189-9f17-d2053fbd964d", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1a012090-9b35-4189-9f17-d2053fbd964d.png", "timestamp": "2024-02-15T20:32:34.789990+00:00"}}, {"id": "95ae360d-d71f-4f13-8033-c9aadc2c2062", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:51.369213+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "1a012090-9b35-4189-9f17-d2053fbd964d", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1a012090-9b35-4189-9f17-d2053fbd964d.png", "timestamp": "2024-02-15T20:32:34.789990+00:00"}}, {"id": "5bb8f6a5-a850-4f76-a5f6-b9b49ee12708", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.005682+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "1a012090-9b35-4189-9f17-d2053fbd964d", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1a012090-9b35-4189-9f17-d2053fbd964d.png", "timestamp": "2024-02-15T20:32:34.789990+00:00"}}, {"id": "cf8a2892-1ab9-4547-b45b-33d0d48d5933", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:49.401577+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a traffic light at the intersection. There are several cars on the road, and the weather appears to be clear.", "snapshot": {"id": "1a012090-9b35-4189-9f17-d2053fbd964d", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1a012090-9b35-4189-9f17-d2053fbd964d.png", "timestamp": "2024-02-15T20:32:34.789990+00:00"}}, {"id": "7871545c-dc0a-4ca4-833b-7411a46f00ed", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.535849+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1a012090-9b35-4189-9f17-d2053fbd964d", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1a012090-9b35-4189-9f17-d2053fbd964d.png", "timestamp": "2024-02-15T20:32:34.789990+00:00"}}, {"id": "6f347dc3-1213-49bd-82d8-99835a984bb5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.723152+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "1a012090-9b35-4189-9f17-d2053fbd964d", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1a012090-9b35-4189-9f17-d2053fbd964d.png", "timestamp": "2024-02-15T20:32:34.789990+00:00"}}, {"id": "f690f956-c7ea-409d-b867-bb528797494b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.981890+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars and a bus. The road is lined with trees and buildings.", "snapshot": {"id": "a5ea7f3e-846f-4216-b3fc-0f283f680c9b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/a5ea7f3e-846f-4216-b3fc-0f283f680c9b.png", "timestamp": "2024-02-15T20:35:08.272411+00:00"}}, {"id": "02647d81-d88e-4262-b48e-ea233dd10bd1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.357446+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "a5ea7f3e-846f-4216-b3fc-0f283f680c9b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/a5ea7f3e-846f-4216-b3fc-0f283f680c9b.png", "timestamp": "2024-02-15T20:35:08.272411+00:00"}}, {"id": "f5fa358b-4789-42e2-a1f7-14800c2e127f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.076334+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a5ea7f3e-846f-4216-b3fc-0f283f680c9b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/a5ea7f3e-846f-4216-b3fc-0f283f680c9b.png", "timestamp": "2024-02-15T20:35:08.272411+00:00"}}, {"id": "7cac78bf-9d66-4cb4-8d84-2b1463ae11ea", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.506505+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "a5ea7f3e-846f-4216-b3fc-0f283f680c9b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/a5ea7f3e-846f-4216-b3fc-0f283f680c9b.png", "timestamp": "2024-02-15T20:35:08.272411+00:00"}}, {"id": "2ba2d0a5-1e92-4416-8e2e-98028b86bf76", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.992012+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While the road is wet, the water has drained effectively, leaving the road safe for\u901a\u884c.", "snapshot": {"id": "a5ea7f3e-846f-4216-b3fc-0f283f680c9b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/a5ea7f3e-846f-4216-b3fc-0f283f680c9b.png", "timestamp": "2024-02-15T20:35:08.272411+00:00"}}, {"id": "d6e6bdfb-6225-4d68-b858-2766e3c9d36e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.849652+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible in the image.", "snapshot": {"id": "a5ea7f3e-846f-4216-b3fc-0f283f680c9b", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/a5ea7f3e-846f-4216-b3fc-0f283f680c9b.png", "timestamp": "2024-02-15T20:35:08.272411+00:00"}}, {"id": "20d80011-b7b3-4ce2-82b4-f3697e8b6560", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:57.335268+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "cbae65c6-eabc-4c98-9b55-6f91e53c2b06", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/cbae65c6-eabc-4c98-9b55-6f91e53c2b06.png", "timestamp": "2024-02-15T20:37:38.869044+00:00"}}, {"id": "24170e05-5ec4-40b0-89b7-5aedf0aed3da", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.161107+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no visible congestion or delays.", "snapshot": {"id": "cbae65c6-eabc-4c98-9b55-6f91e53c2b06", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/cbae65c6-eabc-4c98-9b55-6f91e53c2b06.png", "timestamp": "2024-02-15T20:37:38.869044+00:00"}}, {"id": "c342b972-f8bd-4150-8066-c8e3f958aba6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.513097+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "cbae65c6-eabc-4c98-9b55-6f91e53c2b06", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/cbae65c6-eabc-4c98-9b55-6f91e53c2b06.png", "timestamp": "2024-02-15T20:37:38.869044+00:00"}}, {"id": "1ef7e515-0f85-48b0-abec-82cc44be8aa8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.639176+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "cbae65c6-eabc-4c98-9b55-6f91e53c2b06", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/cbae65c6-eabc-4c98-9b55-6f91e53c2b06.png", "timestamp": "2024-02-15T20:37:38.869044+00:00"}}, {"id": "bdb73d26-cf30-4d0f-88df-4a69250ecd65", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.890118+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with multiple lanes, surrounded by buildings and trees. The road is relatively straight, with a slight bend to the right. It is a busy road, with a moderate amount of traffic. There are several vehicles on the road, including cars, buses, and trucks. The vehicles are moving at a moderate speed. There are also a few pedestrians on the sidewalk, walking in both directions. The weather is clear, with no visible rain or snow. The road surface is dry, with no visible water or debris.", "snapshot": {"id": "cbae65c6-eabc-4c98-9b55-6f91e53c2b06", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/cbae65c6-eabc-4c98-9b55-6f91e53c2b06.png", "timestamp": "2024-02-15T20:37:38.869044+00:00"}}, {"id": "00f9aefb-bf3b-4fba-8196-993f588bedfb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.177870+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cbae65c6-eabc-4c98-9b55-6f91e53c2b06", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/cbae65c6-eabc-4c98-9b55-6f91e53c2b06.png", "timestamp": "2024-02-15T20:37:38.869044+00:00"}}, {"id": "ff3cad46-dfaa-45f3-8b33-4e2175f0fec8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.274702+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles.", "snapshot": {"id": "76ab3044-a447-4249-ad07-2cb0ad9bac5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/76ab3044-a447-4249-ad07-2cb0ad9bac5f.png", "timestamp": "2024-02-15T20:40:11.350038+00:00"}}, {"id": "eca9afa8-6d00-4211-bba0-3ab7cd1b1cbf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:25.523940+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "76ab3044-a447-4249-ad07-2cb0ad9bac5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/76ab3044-a447-4249-ad07-2cb0ad9bac5f.png", "timestamp": "2024-02-15T20:40:11.350038+00:00"}}, {"id": "2cb2d3a6-6c04-4b0a-93df-98a337f4ed5d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:27.532855+00:00", "label": "low", "label_explanation": "The water level on the road is low. While there are puddles, they are shallow and do not pose a significant risk to drivers.", "snapshot": {"id": "76ab3044-a447-4249-ad07-2cb0ad9bac5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/76ab3044-a447-4249-ad07-2cb0ad9bac5f.png", "timestamp": "2024-02-15T20:40:11.350038+00:00"}}, {"id": "9e635325-1b55-479a-a7cb-65bf9065c79a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.922503+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "76ab3044-a447-4249-ad07-2cb0ad9bac5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/76ab3044-a447-4249-ad07-2cb0ad9bac5f.png", "timestamp": "2024-02-15T20:40:11.350038+00:00"}}, {"id": "e43b99d3-9eb2-43ce-9846-dd440cc1f4d8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:28.576134+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars visible on the road. The parked cars on the side of the road do not impede traffic flow.", "snapshot": {"id": "76ab3044-a447-4249-ad07-2cb0ad9bac5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/76ab3044-a447-4249-ad07-2cb0ad9bac5f.png", "timestamp": "2024-02-15T20:40:11.350038+00:00"}}, {"id": "9ac83a63-c61f-4195-8c38-58681ce0199c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.202527+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several parked cars on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "76ab3044-a447-4249-ad07-2cb0ad9bac5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/76ab3044-a447-4249-ad07-2cb0ad9bac5f.png", "timestamp": "2024-02-15T20:40:11.350038+00:00"}}, {"id": "f2b6068d-d4ef-4a11-b7c5-2d62aa2916cf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.524484+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both cars and pedestrians.", "snapshot": {"id": "bacbcf65-eef5-4082-8ad3-eea018016cf3", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/bacbcf65-eef5-4082-8ad3-eea018016cf3.png", "timestamp": "2024-02-15T20:45:01.205968+00:00"}}, {"id": "3b6b2c37-e0d8-45c1-9e82-13faa2e14e9f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.330365+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bacbcf65-eef5-4082-8ad3-eea018016cf3", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/bacbcf65-eef5-4082-8ad3-eea018016cf3.png", "timestamp": "2024-02-15T20:45:01.205968+00:00"}}, {"id": "bb4ecd52-c201-4d5b-b771-637e0fedc05f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.183749+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "bacbcf65-eef5-4082-8ad3-eea018016cf3", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/bacbcf65-eef5-4082-8ad3-eea018016cf3.png", "timestamp": "2024-02-15T20:45:01.205968+00:00"}}, {"id": "1d67aeb5-ac7b-412e-8156-14003fae1bde", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.504131+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "bacbcf65-eef5-4082-8ad3-eea018016cf3", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/bacbcf65-eef5-4082-8ad3-eea018016cf3.png", "timestamp": "2024-02-15T20:45:01.205968+00:00"}}, {"id": "f4ecb2a6-5e2f-490e-8340-4b311c2eb8e3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.728112+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "bacbcf65-eef5-4082-8ad3-eea018016cf3", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/bacbcf65-eef5-4082-8ad3-eea018016cf3.png", "timestamp": "2024-02-15T20:45:01.205968+00:00"}}, {"id": "be8f6300-51e0-4ac2-a4fa-2e8c1b5705bf", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.792004+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "bacbcf65-eef5-4082-8ad3-eea018016cf3", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/bacbcf65-eef5-4082-8ad3-eea018016cf3.png", "timestamp": "2024-02-15T20:45:01.205968+00:00"}}, {"id": "7418210e-a0d5-4b92-a876-4330b1d065cd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.873308+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays. Vehicles are able to navigate the road without difficulty.", "snapshot": {"id": "4735563b-0f96-4423-b8db-39ef27a19c58", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/4735563b-0f96-4423-b8db-39ef27a19c58.png", "timestamp": "2024-02-15T20:42:39.534589+00:00"}}, {"id": "fc410d7b-a4b7-49eb-9802-7f2f7d2e5992", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.051828+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. However, there are no significant puddles or standing water.", "snapshot": {"id": "4735563b-0f96-4423-b8db-39ef27a19c58", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/4735563b-0f96-4423-b8db-39ef27a19c58.png", "timestamp": "2024-02-15T20:42:39.534589+00:00"}}, {"id": "7e8d9509-c11a-40d3-a127-1a150f3b72f5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.130393+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "4735563b-0f96-4423-b8db-39ef27a19c58", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/4735563b-0f96-4423-b8db-39ef27a19c58.png", "timestamp": "2024-02-15T20:42:39.534589+00:00"}}, {"id": "8cde47f9-51a7-459e-bf5b-bed26c90c4fd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.464788+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small, isolated puddles. These puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "4735563b-0f96-4423-b8db-39ef27a19c58", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/4735563b-0f96-4423-b8db-39ef27a19c58.png", "timestamp": "2024-02-15T20:42:39.534589+00:00"}}, {"id": "e8e4a346-86af-49b9-b1ae-deac3a1ceb64", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.514495+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4735563b-0f96-4423-b8db-39ef27a19c58", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/4735563b-0f96-4423-b8db-39ef27a19c58.png", "timestamp": "2024-02-15T20:42:39.534589+00:00"}}, {"id": "c6fc164c-8bcb-47a5-849f-ee341d6a9ab1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.804804+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both cars and pedestrians.", "snapshot": {"id": "4735563b-0f96-4423-b8db-39ef27a19c58", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/4735563b-0f96-4423-b8db-39ef27a19c58.png", "timestamp": "2024-02-15T20:42:39.534589+00:00"}}, {"id": "a306e136-f2b5-45d7-9ad7-870ef91b08b2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.921401+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1d2a04f8-66ec-4a86-9832-15447823c967", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1d2a04f8-66ec-4a86-9832-15447823c967.png", "timestamp": "2024-02-15T20:47:26.357110+00:00"}}, {"id": "f0064629-a6af-4937-b935-6b82ca0c0f69", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.561671+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "1d2a04f8-66ec-4a86-9832-15447823c967", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1d2a04f8-66ec-4a86-9832-15447823c967.png", "timestamp": "2024-02-15T20:47:26.357110+00:00"}}, {"id": "36121b2e-2245-4865-8de2-9336b17eef69", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.910831+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "1d2a04f8-66ec-4a86-9832-15447823c967", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1d2a04f8-66ec-4a86-9832-15447823c967.png", "timestamp": "2024-02-15T20:47:26.357110+00:00"}}, {"id": "fe795246-e665-4b1c-bf7d-894b6e61f0bf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.123015+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "1d2a04f8-66ec-4a86-9832-15447823c967", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1d2a04f8-66ec-4a86-9832-15447823c967.png", "timestamp": "2024-02-15T20:47:26.357110+00:00"}}, {"id": "a1326ab1-4ef3-403d-a263-b526309e7a31", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.330891+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "1d2a04f8-66ec-4a86-9832-15447823c967", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1d2a04f8-66ec-4a86-9832-15447823c967.png", "timestamp": "2024-02-15T20:47:26.357110+00:00"}}, {"id": "21af2bf6-a27f-4a55-894f-dd85a09c72ba", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.271891+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "1d2a04f8-66ec-4a86-9832-15447823c967", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/1d2a04f8-66ec-4a86-9832-15447823c967.png", "timestamp": "2024-02-15T20:47:26.357110+00:00"}}, {"id": "83affa5d-864a-4167-abfc-f8a21ec42721", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.952685+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry.", "snapshot": {"id": "b60595fa-7867-4063-822c-437d19bf0082", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/b60595fa-7867-4063-822c-437d19bf0082.png", "timestamp": "2024-02-15T20:49:50.750639+00:00"}}, {"id": "b3e72491-e899-4f1c-96b7-df9809e6aea6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.620803+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also small puddles of water on the road.", "snapshot": {"id": "b60595fa-7867-4063-822c-437d19bf0082", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/b60595fa-7867-4063-822c-437d19bf0082.png", "timestamp": "2024-02-15T20:49:50.750639+00:00"}}, {"id": "dbbc984b-1b1d-454f-9ff7-125a4f451a22", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.320205+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with cars moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "b60595fa-7867-4063-822c-437d19bf0082", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/b60595fa-7867-4063-822c-437d19bf0082.png", "timestamp": "2024-02-15T20:49:50.750639+00:00"}}, {"id": "daa3851c-6ec3-4178-ace2-3be3fbcda342", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.689552+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades present. Traffic is able to flow freely.", "snapshot": {"id": "b60595fa-7867-4063-822c-437d19bf0082", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/b60595fa-7867-4063-822c-437d19bf0082.png", "timestamp": "2024-02-15T20:49:50.750639+00:00"}}, {"id": "534fef52-30e5-4b68-8eca-26d8e8343165", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.279463+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both cars and pedestrians.", "snapshot": {"id": "b60595fa-7867-4063-822c-437d19bf0082", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/b60595fa-7867-4063-822c-437d19bf0082.png", "timestamp": "2024-02-15T20:49:50.750639+00:00"}}, {"id": "d41ed1da-d1ed-4369-9aeb-62924be0a47a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.979800+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b60595fa-7867-4063-822c-437d19bf0082", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/b60595fa-7867-4063-822c-437d19bf0082.png", "timestamp": "2024-02-15T20:49:50.750639+00:00"}}, {"id": "fdb9608b-8cd4-4628-b66e-93cd9ffa64f6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.523423+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "938e62af-185a-45d7-8fef-5cbf75aa2e5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/938e62af-185a-45d7-8fef-5cbf75aa2e5f.png", "timestamp": "2024-02-15T20:52:14.320403+00:00"}}, {"id": "434421f3-991f-4f1a-9122-fe034e4946fc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.980776+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "938e62af-185a-45d7-8fef-5cbf75aa2e5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/938e62af-185a-45d7-8fef-5cbf75aa2e5f.png", "timestamp": "2024-02-15T20:52:14.320403+00:00"}}, {"id": "0dd5cbf7-d145-411d-bfd7-012d6b122eb7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.811039+00:00", "label": "low", "label_explanation": "There is no standing water or puddles on the road surface.", "snapshot": {"id": "938e62af-185a-45d7-8fef-5cbf75aa2e5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/938e62af-185a-45d7-8fef-5cbf75aa2e5f.png", "timestamp": "2024-02-15T20:52:14.320403+00:00"}}, {"id": "4d7d9edf-9ddd-43e5-89dd-c51d98e568a0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.216723+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both vehicular and pedestrian traffic. The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "938e62af-185a-45d7-8fef-5cbf75aa2e5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/938e62af-185a-45d7-8fef-5cbf75aa2e5f.png", "timestamp": "2024-02-15T20:52:14.320403+00:00"}}, {"id": "11eccbad-7e8c-48cd-95bc-4189d44f9901", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.208303+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with a mix of cars and pedestrians using the road. The presence of a traffic light suggests that the road is a relatively busy thoroughfare.", "snapshot": {"id": "938e62af-185a-45d7-8fef-5cbf75aa2e5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/938e62af-185a-45d7-8fef-5cbf75aa2e5f.png", "timestamp": "2024-02-15T20:52:14.320403+00:00"}}, {"id": "acbe952a-dcc9-41ef-b4a3-9c5a0f89dcd3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.457365+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, and traffic is flowing smoothly.", "snapshot": {"id": "938e62af-185a-45d7-8fef-5cbf75aa2e5f", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/938e62af-185a-45d7-8fef-5cbf75aa2e5f.png", "timestamp": "2024-02-15T20:52:14.320403+00:00"}}, {"id": "2d799b3a-961b-4e27-91a2-5e096624ed7c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.590490+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic is flowing freely in both directions.", "snapshot": {"id": "f8e0e546-f1a7-4b9c-a447-95a85f2880f6", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/f8e0e546-f1a7-4b9c-a447-95a85f2880f6.png", "timestamp": "2024-02-15T20:54:42.788136+00:00"}}, {"id": "cec682dd-800e-4e74-80b4-f4e07bfa39e3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.512270+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "f8e0e546-f1a7-4b9c-a447-95a85f2880f6", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/f8e0e546-f1a7-4b9c-a447-95a85f2880f6.png", "timestamp": "2024-02-15T20:54:42.788136+00:00"}}, {"id": "23c6deea-acfd-43ad-80ef-43c8f15988b5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.996201+00:00", "label": "low", "label_explanation": "There is no standing water or puddles on the road surface. The water from the recent rain has likely drained away or evaporated.", "snapshot": {"id": "f8e0e546-f1a7-4b9c-a447-95a85f2880f6", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/f8e0e546-f1a7-4b9c-a447-95a85f2880f6.png", "timestamp": "2024-02-15T20:54:42.788136+00:00"}}, {"id": "d4873e69-3d9f-4484-9bff-a98626f02836", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.310207+00:00", "label": "easy", "label_explanation": "The road is moderately busy with traffic, with a steady flow of vehicles and pedestrians. Traffic is moving at a normal pace, with no significant congestion or delays.", "snapshot": {"id": "f8e0e546-f1a7-4b9c-a447-95a85f2880f6", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/f8e0e546-f1a7-4b9c-a447-95a85f2880f6.png", "timestamp": "2024-02-15T20:54:42.788136+00:00"}}, {"id": "2863e55c-6c02-49fc-b886-8346c02b7917", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.480528+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f8e0e546-f1a7-4b9c-a447-95a85f2880f6", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/f8e0e546-f1a7-4b9c-a447-95a85f2880f6.png", "timestamp": "2024-02-15T20:54:42.788136+00:00"}}, {"id": "26275a8e-4b22-4c4a-afb8-456784c36ec5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.860171+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both vehicular and pedestrian traffic. The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "f8e0e546-f1a7-4b9c-a447-95a85f2880f6", "camera_id": "001484", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001484/f8e0e546-f1a7-4b9c-a447-95a85f2880f6.png", "timestamp": "2024-02-15T20:54:42.788136+00:00"}}]}, {"id": "001490", "name": "R. PEREIRA NUNES X R. BAR\u00c3O DE MESQUITA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.207/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92417793, "longitude": -43.23622356, "objects": ["image_corrupted", "rain", "image_description", "water_level", "road_blockade", "traffic"], "identifications": [{"id": "c0a480e2-a868-4815-9adf-a18b37230372", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.340989+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear, and there are no obstructions that would prevent vehicles or pedestrians from moving freely.", "snapshot": {"id": "6fce4f2b-72bd-4d8a-ad4c-23e658c343e7", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/6fce4f2b-72bd-4d8a-ad4c-23e658c343e7.png", "timestamp": "2024-02-15T20:30:01.849987+00:00"}}, {"id": "c06ab7bd-e08c-4fa4-8772-d4e685e00ddb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.901365+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears cloudy. There are several tall buildings in the background and a few trees on either side of the road. There are cars on the road, a few pedestrians, and a bus stop.", "snapshot": {"id": "6fce4f2b-72bd-4d8a-ad4c-23e658c343e7", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/6fce4f2b-72bd-4d8a-ad4c-23e658c343e7.png", "timestamp": "2024-02-15T20:30:01.849987+00:00"}}, {"id": "11aa0b2e-104e-4f42-8c45-4d21e7f43c4b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.010840+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move freely. The pedestrians are also able to walk safely on the sidewalks.", "snapshot": {"id": "6fce4f2b-72bd-4d8a-ad4c-23e658c343e7", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/6fce4f2b-72bd-4d8a-ad4c-23e658c343e7.png", "timestamp": "2024-02-15T20:30:01.849987+00:00"}}, {"id": "8d9229a0-889f-495f-a1b8-0904c63d087b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.520735+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6fce4f2b-72bd-4d8a-ad4c-23e658c343e7", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/6fce4f2b-72bd-4d8a-ad4c-23e658c343e7.png", "timestamp": "2024-02-15T20:30:01.849987+00:00"}}, {"id": "4513ace1-f872-4f69-8f9a-d89df2d6c3b2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.251593+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road. It appears to have rained recently, but the rain has stopped.", "snapshot": {"id": "6fce4f2b-72bd-4d8a-ad4c-23e658c343e7", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/6fce4f2b-72bd-4d8a-ad4c-23e658c343e7.png", "timestamp": "2024-02-15T20:30:01.849987+00:00"}}, {"id": "bc7fe995-92be-4f88-8123-d2596e85897c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.678395+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not cover a significant portion of the road surface.", "snapshot": {"id": "6fce4f2b-72bd-4d8a-ad4c-23e658c343e7", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/6fce4f2b-72bd-4d8a-ad4c-23e658c343e7.png", "timestamp": "2024-02-15T20:30:01.849987+00:00"}}, {"id": "0b17c00a-5d94-42d0-933d-60a9137fa03a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.057888+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af.png", "timestamp": "2024-02-15T20:33:02.632265+00:00"}}, {"id": "220c80dc-9aaf-43d2-8f7a-648dcc4dfbb3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.150596+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af.png", "timestamp": "2024-02-15T20:33:02.632265+00:00"}}, {"id": "b080e40e-535f-4dbd-b87e-c410f747d528", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:19.510170+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af.png", "timestamp": "2024-02-15T20:33:02.632265+00:00"}}, {"id": "ee926b4e-5d2a-4efd-9b97-a2f3ee0731e0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.921091+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af.png", "timestamp": "2024-02-15T20:33:02.632265+00:00"}}, {"id": "0bf47553-7965-42c8-9245-77a64bbcf94a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.722115+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af.png", "timestamp": "2024-02-15T20:33:02.632265+00:00"}}, {"id": "a3c49275-4bb2-4e91-a4e2-e9a5746d594a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:17.373490+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and trees.", "snapshot": {"id": "2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/2bdbfdd2-c3ec-4c8b-a52a-c68c5472e0af.png", "timestamp": "2024-02-15T20:33:02.632265+00:00"}}, {"id": "33ac9558-d9dd-401d-bb37-b43ba14d7b0b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.612245+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also small puddles of water on the road.", "snapshot": {"id": "501d0761-f096-4757-9b16-1b60e7c2d3b0", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/501d0761-f096-4757-9b16-1b60e7c2d3b0.png", "timestamp": "2024-02-15T20:35:07.501157+00:00"}}, {"id": "96dfcc32-2d07-46f4-818f-fd42abaf9615", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.503063+00:00", "label": "free", "label_explanation": "The road is clear, with no blockades or obstructions visible. Traffic is able to flow freely in both directions.", "snapshot": {"id": "501d0761-f096-4757-9b16-1b60e7c2d3b0", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/501d0761-f096-4757-9b16-1b60e7c2d3b0.png", "timestamp": "2024-02-15T20:35:07.501157+00:00"}}, {"id": "5605ee06-8c67-47ef-8ffd-e818c41263df", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.767485+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "501d0761-f096-4757-9b16-1b60e7c2d3b0", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/501d0761-f096-4757-9b16-1b60e7c2d3b0.png", "timestamp": "2024-02-15T20:35:07.501157+00:00"}}, {"id": "6a625a80-3702-45f9-a7eb-228d95765bef", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.045647+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a steady flow of vehicles moving in both directions. There are no major obstructions or delays visible.", "snapshot": {"id": "501d0761-f096-4757-9b16-1b60e7c2d3b0", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/501d0761-f096-4757-9b16-1b60e7c2d3b0.png", "timestamp": "2024-02-15T20:35:07.501157+00:00"}}, {"id": "2815649a-12fc-444c-86fe-9373d6309d62", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.087566+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry and visible.", "snapshot": {"id": "501d0761-f096-4757-9b16-1b60e7c2d3b0", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/501d0761-f096-4757-9b16-1b60e7c2d3b0.png", "timestamp": "2024-02-15T20:35:07.501157+00:00"}}, {"id": "22bf9135-b63d-423d-ae06-189f1124d5cb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.213999+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and a wide, four-lane road in the center. It is daytime and the weather appears to be overcast, with a grey sky.", "snapshot": {"id": "501d0761-f096-4757-9b16-1b60e7c2d3b0", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/501d0761-f096-4757-9b16-1b60e7c2d3b0.png", "timestamp": "2024-02-15T20:35:07.501157+00:00"}}, {"id": "19c889cf-1c43-4bd8-a0e6-94f1df221f5e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.302758+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few vehicles on the road. The white car in the foreground is the only vehicle that is clearly visible.", "snapshot": {"id": "51a27f6d-42aa-410f-9a39-6c449a0d19d2", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/51a27f6d-42aa-410f-9a39-6c449a0d19d2.png", "timestamp": "2024-02-15T20:37:37.944119+00:00"}}, {"id": "a1704deb-6f73-4011-b477-8c2f64b0b4cb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:51.502833+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several buildings in the background. It is daytime and the weather appears cloudy. There are a few vehicles on the road, including a white car in the foreground.", "snapshot": {"id": "51a27f6d-42aa-410f-9a39-6c449a0d19d2", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/51a27f6d-42aa-410f-9a39-6c449a0d19d2.png", "timestamp": "2024-02-15T20:37:37.944119+00:00"}}, {"id": "0ccb8c76-4f76-4a9c-803a-da911f6a82bb", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.078765+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "51a27f6d-42aa-410f-9a39-6c449a0d19d2", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/51a27f6d-42aa-410f-9a39-6c449a0d19d2.png", "timestamp": "2024-02-15T20:37:37.944119+00:00"}}, {"id": "3389035e-b34e-4d1e-877b-6a474c5a90ac", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:51.191489+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "51a27f6d-42aa-410f-9a39-6c449a0d19d2", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/51a27f6d-42aa-410f-9a39-6c449a0d19d2.png", "timestamp": "2024-02-15T20:37:37.944119+00:00"}}, {"id": "45e80879-2419-4c77-9794-14f70e56ae72", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:52.875191+00:00", "label": "low", "label_explanation": "The water level on the road is low, as it is only present in small puddles. The majority of the road surface is dry.", "snapshot": {"id": "51a27f6d-42aa-410f-9a39-6c449a0d19d2", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/51a27f6d-42aa-410f-9a39-6c449a0d19d2.png", "timestamp": "2024-02-15T20:37:37.944119+00:00"}}, {"id": "36163927-3736-4f72-9fa3-b463bc2bd35b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:51.922666+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also small puddles of water on the road.", "snapshot": {"id": "51a27f6d-42aa-410f-9a39-6c449a0d19d2", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/51a27f6d-42aa-410f-9a39-6c449a0d19d2.png", "timestamp": "2024-02-15T20:37:37.944119+00:00"}}, {"id": "f13c463b-c16c-409b-95ca-c0f249678464", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.942456+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "31d13c00-bfd8-48f8-9a01-c8f2683a14cb", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/31d13c00-bfd8-48f8-9a01-c8f2683a14cb.png", "timestamp": "2024-02-15T20:40:06.452266+00:00"}}, {"id": "ee1282f8-9774-4fa3-8f88-194714a385ea", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.467890+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "31d13c00-bfd8-48f8-9a01-c8f2683a14cb", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/31d13c00-bfd8-48f8-9a01-c8f2683a14cb.png", "timestamp": "2024-02-15T20:40:06.452266+00:00"}}, {"id": "452a79d9-3ca0-4e90-b401-5426ff804bd9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:18.551319+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "31d13c00-bfd8-48f8-9a01-c8f2683a14cb", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/31d13c00-bfd8-48f8-9a01-c8f2683a14cb.png", "timestamp": "2024-02-15T20:40:06.452266+00:00"}}, {"id": "4e388591-6ac4-45df-b58f-372bd15f17bf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:19.112908+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears overcast with dark clouds covering the sky. There are several buildings and trees on either side of the road, and a few pedestrians can be seen crossing the street.", "snapshot": {"id": "31d13c00-bfd8-48f8-9a01-c8f2683a14cb", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/31d13c00-bfd8-48f8-9a01-c8f2683a14cb.png", "timestamp": "2024-02-15T20:40:06.452266+00:00"}}, {"id": "2bacbc98-ad64-40cd-876e-e2b0bfcb6321", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:20.612818+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently raining.", "snapshot": {"id": "31d13c00-bfd8-48f8-9a01-c8f2683a14cb", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/31d13c00-bfd8-48f8-9a01-c8f2683a14cb.png", "timestamp": "2024-02-15T20:40:06.452266+00:00"}}, {"id": "014c2e9a-8f51-4865-b6af-a3a0da324561", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.640500+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "31d13c00-bfd8-48f8-9a01-c8f2683a14cb", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/31d13c00-bfd8-48f8-9a01-c8f2683a14cb.png", "timestamp": "2024-02-15T20:40:06.452266+00:00"}}, {"id": "81d00b33-5ba6-4d7d-9505-80738b8c9d7e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.991519+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "e7fc13fa-dd11-4981-91a2-94a86bb9817a", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/e7fc13fa-dd11-4981-91a2-94a86bb9817a.png", "timestamp": "2024-02-15T20:47:20.229741+00:00"}}, {"id": "bd5010a8-2da5-414d-b3a6-7dff5b3d61b9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.008847+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and vehicles on the street. The weather appears cloudy and there are signs of rain.", "snapshot": {"id": "e7fc13fa-dd11-4981-91a2-94a86bb9817a", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/e7fc13fa-dd11-4981-91a2-94a86bb9817a.png", "timestamp": "2024-02-15T20:47:20.229741+00:00"}}, {"id": "4650a72a-cd25-4fef-9390-a9961edb3613", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.792470+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "e7fc13fa-dd11-4981-91a2-94a86bb9817a", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/e7fc13fa-dd11-4981-91a2-94a86bb9817a.png", "timestamp": "2024-02-15T20:47:20.229741+00:00"}}, {"id": "2047cb95-24c4-4145-8454-d5e467e0de5e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.512692+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "e7fc13fa-dd11-4981-91a2-94a86bb9817a", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/e7fc13fa-dd11-4981-91a2-94a86bb9817a.png", "timestamp": "2024-02-15T20:47:20.229741+00:00"}}, {"id": "6c8eafaa-9499-4111-bd2a-7c139174f9eb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.208647+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "e7fc13fa-dd11-4981-91a2-94a86bb9817a", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/e7fc13fa-dd11-4981-91a2-94a86bb9817a.png", "timestamp": "2024-02-15T20:47:20.229741+00:00"}}, {"id": "574b9c52-4c7a-4ef9-80e5-18935b368ddb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:30.679951+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e7fc13fa-dd11-4981-91a2-94a86bb9817a", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/e7fc13fa-dd11-4981-91a2-94a86bb9817a.png", "timestamp": "2024-02-15T20:47:20.229741+00:00"}}, {"id": "da56e949-3eb9-4e10-a116-1ff9d4fae764", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.551293+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. The entire road surface is clear and passable.", "snapshot": {"id": "a7791982-c292-4c30-8a36-5fc7fc6729f6", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/a7791982-c292-4c30-8a36-5fc7fc6729f6.png", "timestamp": "2024-02-15T20:42:37.774485+00:00"}}, {"id": "f79e8db1-f652-4371-a4c4-c37b13dfe9d9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.053503+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a7791982-c292-4c30-8a36-5fc7fc6729f6", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/a7791982-c292-4c30-8a36-5fc7fc6729f6.png", "timestamp": "2024-02-15T20:42:37.774485+00:00"}}, {"id": "aeed8ba4-df41-4042-90bb-cf2291632735", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.339670+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no congestion or delays. Vehicles are able to move freely through the intersection.", "snapshot": {"id": "a7791982-c292-4c30-8a36-5fc7fc6729f6", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/a7791982-c292-4c30-8a36-5fc7fc6729f6.png", "timestamp": "2024-02-15T20:42:37.774485+00:00"}}, {"id": "68b4dd08-b78f-464a-b395-55886d8988e8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.351965+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several buildings in the background. It is daytime and the weather appears to be cloudy. There are a few cars on the road, and the traffic lights are visible.", "snapshot": {"id": "a7791982-c292-4c30-8a36-5fc7fc6729f6", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/a7791982-c292-4c30-8a36-5fc7fc6729f6.png", "timestamp": "2024-02-15T20:42:37.774485+00:00"}}, {"id": "291c1c1c-330c-4254-9837-83df135b5c36", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.050281+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "a7791982-c292-4c30-8a36-5fc7fc6729f6", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/a7791982-c292-4c30-8a36-5fc7fc6729f6.png", "timestamp": "2024-02-15T20:42:37.774485+00:00"}}, {"id": "30caa965-9f2a-448c-9119-61fe33e1bfda", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.747059+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "a7791982-c292-4c30-8a36-5fc7fc6729f6", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/a7791982-c292-4c30-8a36-5fc7fc6729f6.png", "timestamp": "2024-02-15T20:42:37.774485+00:00"}}, {"id": "a15b8f05-f9d0-46cd-90ce-c4a07450733c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.936345+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "c1b3f73c-d758-49a7-8c7a-2b5d9401bb32", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/c1b3f73c-d758-49a7-8c7a-2b5d9401bb32.png", "timestamp": "2024-02-15T20:44:58.049944+00:00"}}, {"id": "57573034-b732-4310-91ed-f65b48e7820b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.579270+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions.", "snapshot": {"id": "c1b3f73c-d758-49a7-8c7a-2b5d9401bb32", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/c1b3f73c-d758-49a7-8c7a-2b5d9401bb32.png", "timestamp": "2024-02-15T20:44:58.049944+00:00"}}, {"id": "0a3d8d0a-58cf-42bc-b185-27caa4d59562", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:08.603702+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c1b3f73c-d758-49a7-8c7a-2b5d9401bb32", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/c1b3f73c-d758-49a7-8c7a-2b5d9401bb32.png", "timestamp": "2024-02-15T20:44:58.049944+00:00"}}, {"id": "c5860f8b-6bd3-4409-9e88-f663beec1d3f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.379434+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "c1b3f73c-d758-49a7-8c7a-2b5d9401bb32", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/c1b3f73c-d758-49a7-8c7a-2b5d9401bb32.png", "timestamp": "2024-02-15T20:44:58.049944+00:00"}}, {"id": "efa17cef-4e44-45b7-a75b-2aae107aa0ca", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.101335+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "c1b3f73c-d758-49a7-8c7a-2b5d9401bb32", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/c1b3f73c-d758-49a7-8c7a-2b5d9401bb32.png", "timestamp": "2024-02-15T20:44:58.049944+00:00"}}, {"id": "b92bb33b-ee91-4efb-a78e-3b8e751dc971", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:08.836568+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and pedestrians.", "snapshot": {"id": "c1b3f73c-d758-49a7-8c7a-2b5d9401bb32", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/c1b3f73c-d758-49a7-8c7a-2b5d9401bb32.png", "timestamp": "2024-02-15T20:44:58.049944+00:00"}}, {"id": "f5bf22a3-bf0d-47b0-a7d7-61715228fc55", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.923765+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "90226085-1e18-4a5d-bdfd-2611dfe55022", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/90226085-1e18-4a5d-bdfd-2611dfe55022.png", "timestamp": "2024-02-15T20:49:48.018845+00:00"}}, {"id": "82a34cd3-6003-4581-b728-5d2a55df611b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.475662+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "90226085-1e18-4a5d-bdfd-2611dfe55022", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/90226085-1e18-4a5d-bdfd-2611dfe55022.png", "timestamp": "2024-02-15T20:49:48.018845+00:00"}}, {"id": "787a28bc-ba03-42f8-bdbc-733f473a1920", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.189679+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and a bus.", "snapshot": {"id": "90226085-1e18-4a5d-bdfd-2611dfe55022", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/90226085-1e18-4a5d-bdfd-2611dfe55022.png", "timestamp": "2024-02-15T20:49:48.018845+00:00"}}, {"id": "ad8d30ab-7824-4c85-874e-f3372e6e0472", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.736788+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "90226085-1e18-4a5d-bdfd-2611dfe55022", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/90226085-1e18-4a5d-bdfd-2611dfe55022.png", "timestamp": "2024-02-15T20:49:48.018845+00:00"}}, {"id": "835f19b7-306c-4456-8650-11b09f632cdc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:57.762257+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "90226085-1e18-4a5d-bdfd-2611dfe55022", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/90226085-1e18-4a5d-bdfd-2611dfe55022.png", "timestamp": "2024-02-15T20:49:48.018845+00:00"}}, {"id": "714133cf-bd4e-47d2-8feb-5fa57378a7bf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.143487+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road, and traffic is able to flow freely.", "snapshot": {"id": "90226085-1e18-4a5d-bdfd-2611dfe55022", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/90226085-1e18-4a5d-bdfd-2611dfe55022.png", "timestamp": "2024-02-15T20:49:48.018845+00:00"}}, {"id": "364546ee-2915-4201-8b56-ec6829e5c1d6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:20.396290+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and people.", "snapshot": {"id": "86a8ae58-bc66-4874-9cfc-effa69e4c14c", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/86a8ae58-bc66-4874-9cfc-effa69e4c14c.png", "timestamp": "2024-02-15T20:52:09.519820+00:00"}}, {"id": "da8cb870-89fe-4cf3-a749-59868d258d30", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:20.195662+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "86a8ae58-bc66-4874-9cfc-effa69e4c14c", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/86a8ae58-bc66-4874-9cfc-effa69e4c14c.png", "timestamp": "2024-02-15T20:52:09.519820+00:00"}}, {"id": "e872a0e5-308f-4847-b3f4-7eb8be2185ed", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:21.551675+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "86a8ae58-bc66-4874-9cfc-effa69e4c14c", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/86a8ae58-bc66-4874-9cfc-effa69e4c14c.png", "timestamp": "2024-02-15T20:52:09.519820+00:00"}}, {"id": "aab46bbc-2d7f-4c7b-a265-6040bcdd5230", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:21.294361+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "86a8ae58-bc66-4874-9cfc-effa69e4c14c", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/86a8ae58-bc66-4874-9cfc-effa69e4c14c.png", "timestamp": "2024-02-15T20:52:09.519820+00:00"}}, {"id": "b348706f-ef2c-4b36-9a5d-f37b807352a9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:20.845590+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "86a8ae58-bc66-4874-9cfc-effa69e4c14c", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/86a8ae58-bc66-4874-9cfc-effa69e4c14c.png", "timestamp": "2024-02-15T20:52:09.519820+00:00"}}, {"id": "6411d3a2-7567-401f-8fc5-ce9b047a6ca0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:20.618927+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "86a8ae58-bc66-4874-9cfc-effa69e4c14c", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/86a8ae58-bc66-4874-9cfc-effa69e4c14c.png", "timestamp": "2024-02-15T20:52:09.519820+00:00"}}, {"id": "461bd0b0-7aa6-4a9a-80c4-2a2651b19716", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:45.626005+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "363097bc-a951-43c7-bec1-0b230fbcb82b", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/363097bc-a951-43c7-bec1-0b230fbcb82b.png", "timestamp": "2024-02-15T20:54:34.400822+00:00"}}, {"id": "2a2062d1-979e-49b9-b544-8e169a7f1df1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:47.294352+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "363097bc-a951-43c7-bec1-0b230fbcb82b", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/363097bc-a951-43c7-bec1-0b230fbcb82b.png", "timestamp": "2024-02-15T20:54:34.400822+00:00"}}, {"id": "f5fa5b88-acb4-498a-a78f-a5a91fd6d240", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:46.860198+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a steady flow of vehicles in both directions.", "snapshot": {"id": "363097bc-a951-43c7-bec1-0b230fbcb82b", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/363097bc-a951-43c7-bec1-0b230fbcb82b.png", "timestamp": "2024-02-15T20:54:34.400822+00:00"}}, {"id": "72fbff8d-b322-4104-86d5-dd2570954aa3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:46.226652+00:00", "label": "false", "label_explanation": "There is no rain present in the image, and the road surface appears dry.", "snapshot": {"id": "363097bc-a951-43c7-bec1-0b230fbcb82b", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/363097bc-a951-43c7-bec1-0b230fbcb82b.png", "timestamp": "2024-02-15T20:54:34.400822+00:00"}}, {"id": "c6f47208-f188-4524-a883-4301e2cfb686", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:46.420423+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "363097bc-a951-43c7-bec1-0b230fbcb82b", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/363097bc-a951-43c7-bec1-0b230fbcb82b.png", "timestamp": "2024-02-15T20:54:34.400822+00:00"}}, {"id": "6329fd4a-f501-49cf-88a1-b549defd6825", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:45.958773+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and a clear sky.", "snapshot": {"id": "363097bc-a951-43c7-bec1-0b230fbcb82b", "camera_id": "001490", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001490/363097bc-a951-43c7-bec1-0b230fbcb82b.png", "timestamp": "2024-02-15T20:54:34.400822+00:00"}}]}, {"id": "001514", "name": "PRA\u00c7A AQUIDAUANA, 1-908 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.850391, "longitude": -43.30943, "objects": ["image_corrupted", "image_description", "rain", "traffic", "water_level", "road_blockade"], "identifications": [{"id": "3141f319-1aa7-4430-a2a2-3a65a0f5be11", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.252785+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and distorted shapes, making it impossible to analyze road conditions.", "snapshot": {"id": "3527a5e2-b50f-45ab-b012-7c7c5b80dd0d", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/3527a5e2-b50f-45ab-b012-7c7c5b80dd0d.png", "timestamp": "2024-02-15T20:30:34.322594+00:00"}}, {"id": "25c629d4-3898-42ba-b390-31832cf80308", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.498889+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "3527a5e2-b50f-45ab-b012-7c7c5b80dd0d", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/3527a5e2-b50f-45ab-b012-7c7c5b80dd0d.png", "timestamp": "2024-02-15T20:30:34.322594+00:00"}}, {"id": "3b35b5fb-77f0-4759-9838-eb8532fb18a5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.169485+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with cars, buses, and motorbikes. The road is partially covered with water, and there are some trees on either side of the road.", "snapshot": {"id": "4c34cff1-b141-431a-9733-ce5d39fb2121", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/4c34cff1-b141-431a-9733-ce5d39fb2121.png", "timestamp": "2024-02-15T20:43:01.647156+00:00"}}, {"id": "351d4a5e-77b6-4760-9b7a-90ae43dc9250", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.000585+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with some vehicles slowing down or stopping due to the water on the road.", "snapshot": {"id": "4c34cff1-b141-431a-9733-ce5d39fb2121", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/4c34cff1-b141-431a-9733-ce5d39fb2121.png", "timestamp": "2024-02-15T20:43:01.647156+00:00"}}, {"id": "63889769-323f-4faf-b04d-0455205c5290", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.748894+00:00", "label": "medium", "label_explanation": "The water level is medium, as it covers some parts of the road but does not completely submerge it.", "snapshot": {"id": "4c34cff1-b141-431a-9733-ce5d39fb2121", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/4c34cff1-b141-431a-9733-ce5d39fb2121.png", "timestamp": "2024-02-15T20:43:01.647156+00:00"}}, {"id": "3b8dc598-e3a7-40eb-9917-cd56e37f2528", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.512097+00:00", "label": "true", "label_explanation": "The road is wet, and there are some puddles of water on the road surface.", "snapshot": {"id": "4c34cff1-b141-431a-9733-ce5d39fb2121", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/4c34cff1-b141-431a-9733-ce5d39fb2121.png", "timestamp": "2024-02-15T20:43:01.647156+00:00"}}, {"id": "ed30e545-5e79-4843-8d32-fb23e2c1599d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.233478+00:00", "label": "partially", "label_explanation": "The road is partially blocked by the water, but it is still passable for vehicles.", "snapshot": {"id": "4c34cff1-b141-431a-9733-ce5d39fb2121", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/4c34cff1-b141-431a-9733-ce5d39fb2121.png", "timestamp": "2024-02-15T20:43:01.647156+00:00"}}, {"id": "c96a28fa-9c54-435c-b559-5ec5f1752755", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.926782+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4c34cff1-b141-431a-9733-ce5d39fb2121", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/4c34cff1-b141-431a-9733-ce5d39fb2121.png", "timestamp": "2024-02-15T20:43:01.647156+00:00"}}, {"id": "c0d21aa0-051d-4aff-bf7f-c3344a58384f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:04.112648+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "09465d31-c4e9-4792-ac49-685c67e2d3fb", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/09465d31-c4e9-4792-ac49-685c67e2d3fb.png", "timestamp": "2024-02-15T20:47:52.770364+00:00"}}, {"id": "4d6bafc7-6afb-42d4-86b1-1e85016a5989", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:03.892737+00:00", "label": "moderate", "label_explanation": "Traffic is moving slowly due to the rain, but there are no major disruptions.", "snapshot": {"id": "09465d31-c4e9-4792-ac49-685c67e2d3fb", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/09465d31-c4e9-4792-ac49-685c67e2d3fb.png", "timestamp": "2024-02-15T20:47:52.770364+00:00"}}, {"id": "6f7ebb90-b48b-4054-ab42-51a24f32f115", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:03.424195+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the vehicle capturing the image.", "snapshot": {"id": "09465d31-c4e9-4792-ac49-685c67e2d3fb", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/09465d31-c4e9-4792-ac49-685c67e2d3fb.png", "timestamp": "2024-02-15T20:47:52.770364+00:00"}}, {"id": "693521b6-5d29-415f-a99b-7798121cbd0c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:03.691912+00:00", "label": "low", "label_explanation": "There are puddles of water on the road surface, but they are relatively shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "09465d31-c4e9-4792-ac49-685c67e2d3fb", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/09465d31-c4e9-4792-ac49-685c67e2d3fb.png", "timestamp": "2024-02-15T20:47:52.770364+00:00"}}, {"id": "b7c213cf-eac9-49f1-a4bd-d90329c063bd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.995686+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "09465d31-c4e9-4792-ac49-685c67e2d3fb", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/09465d31-c4e9-4792-ac49-685c67e2d3fb.png", "timestamp": "2024-02-15T20:47:52.770364+00:00"}}, {"id": "00fd408f-aa6d-46c0-b1bc-58e6d1cf8aae", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:03.230103+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road intersection during daytime. It is raining, and there are several buses, cars, and people on the road.", "snapshot": {"id": "09465d31-c4e9-4792-ac49-685c67e2d3fb", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/09465d31-c4e9-4792-ac49-685c67e2d3fb.png", "timestamp": "2024-02-15T20:47:52.770364+00:00"}}, {"id": "d499897f-6321-4e76-9cf7-352ba31d52c3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:30.412674+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "f236fdce-780c-4aa3-b55f-eaaf067d0f1c", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/f236fdce-780c-4aa3-b55f-eaaf067d0f1c.png", "timestamp": "2024-02-15T20:33:13.971799+00:00"}}, {"id": "b716e8cf-cd57-451b-8d28-7772c95db9ff", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:30.193460+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water droplets are isolated and do not form a continuous layer.", "snapshot": {"id": "f236fdce-780c-4aa3-b55f-eaaf067d0f1c", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/f236fdce-780c-4aa3-b55f-eaaf067d0f1c.png", "timestamp": "2024-02-15T20:33:13.971799+00:00"}}, {"id": "110fd5be-e176-4a5e-b926-af4cab1f1946", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.979155+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are water droplets visible on the image.", "snapshot": {"id": "f236fdce-780c-4aa3-b55f-eaaf067d0f1c", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/f236fdce-780c-4aa3-b55f-eaaf067d0f1c.png", "timestamp": "2024-02-15T20:33:13.971799+00:00"}}, {"id": "89a1e8d1-8421-4c5d-9693-9508a88ebe86", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.730263+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection during daytime. It is raining, and the road surface is wet. There are several vehicles on the road, including buses and cars. Pedestrians are crossing the road at the intersection.", "snapshot": {"id": "f236fdce-780c-4aa3-b55f-eaaf067d0f1c", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/f236fdce-780c-4aa3-b55f-eaaf067d0f1c.png", "timestamp": "2024-02-15T20:33:13.971799+00:00"}}, {"id": "4d54584f-ae1d-457f-bce2-dc34c6e81823", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:30.708112+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. All lanes are open for traffic.", "snapshot": {"id": "f236fdce-780c-4aa3-b55f-eaaf067d0f1c", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/f236fdce-780c-4aa3-b55f-eaaf067d0f1c.png", "timestamp": "2024-02-15T20:33:13.971799+00:00"}}, {"id": "5212c882-a89c-404b-9e15-ef582a387eac", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.449707+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f236fdce-780c-4aa3-b55f-eaaf067d0f1c", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/f236fdce-780c-4aa3-b55f-eaaf067d0f1c.png", "timestamp": "2024-02-15T20:33:13.971799+00:00"}}, {"id": "1a96ac61-56f8-4d70-882f-127004d188b5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:53.304736+00:00", "label": "free", "label_explanation": "The road is clear, with no visible blockades or obstructions impeding traffic flow.", "snapshot": {"id": "163e89df-33b8-40d2-8590-afe43d582fe2", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/163e89df-33b8-40d2-8590-afe43d582fe2.png", "timestamp": "2024-02-15T20:35:39.604550+00:00"}}, {"id": "861a0b9f-4dab-48ec-ab75-14627a0f0fbb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:51.918789+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "163e89df-33b8-40d2-8590-afe43d582fe2", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/163e89df-33b8-40d2-8590-afe43d582fe2.png", "timestamp": "2024-02-15T20:35:39.604550+00:00"}}, {"id": "a078ead8-557a-435e-9085-c0acfe67b72a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.906501+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly in both directions. There are no major obstructions or congestion visible.", "snapshot": {"id": "163e89df-33b8-40d2-8590-afe43d582fe2", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/163e89df-33b8-40d2-8590-afe43d582fe2.png", "timestamp": "2024-02-15T20:35:39.604550+00:00"}}, {"id": "c3a1c095-fbf0-4344-9f72-dc9f3c60dd26", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.659584+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "163e89df-33b8-40d2-8590-afe43d582fe2", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/163e89df-33b8-40d2-8590-afe43d582fe2.png", "timestamp": "2024-02-15T20:35:39.604550+00:00"}}, {"id": "50d0dfb9-33db-4b37-8e47-79f6bc0c5090", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.362950+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "163e89df-33b8-40d2-8590-afe43d582fe2", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/163e89df-33b8-40d2-8590-afe43d582fe2.png", "timestamp": "2024-02-15T20:35:39.604550+00:00"}}, {"id": "e1c21451-ceec-4f93-a781-07335534f78c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.123054+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with traffic lights, street signs, and buildings in the background. It is daytime and the weather appears clear.", "snapshot": {"id": "163e89df-33b8-40d2-8590-afe43d582fe2", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/163e89df-33b8-40d2-8590-afe43d582fe2.png", "timestamp": "2024-02-15T20:35:39.604550+00:00"}}, {"id": "c313572e-3ac0-435f-b643-684a022c2263", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.089772+00:00", "label": "true", "label_explanation": "The image is corrupted and has a uniform grey color, making it impossible to analyze.", "snapshot": {"id": "e9331780-5692-4ffb-b0e3-1bbedadfd4cb", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/e9331780-5692-4ffb-b0e3-1bbedadfd4cb.png", "timestamp": "2024-02-15T20:38:13.714412+00:00"}}, {"id": "d24493f1-17ae-4c1b-82d7-ea7d252d28bf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.298299+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "e9331780-5692-4ffb-b0e3-1bbedadfd4cb", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/e9331780-5692-4ffb-b0e3-1bbedadfd4cb.png", "timestamp": "2024-02-15T20:38:13.714412+00:00"}}, {"id": "a37ab34c-cfd7-4231-8300-275ba33554d0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.381286+00:00", "label": "null", "label_explanation": "The image captures a scene of an urban road with moderate traffic during daytime. It is raining, and the road surface is wet. There are several vehicles on the road, including cars, buses, and trucks. The vehicles are\u884c\u9a76\u7f13\u6162, and some are stopped at a red light. There are also a few pedestrians on the sidewalk, one of whom is holding an umbrella.", "snapshot": {"id": "feef08cf-3952-4013-b607-1739f3f1f140", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/feef08cf-3952-4013-b607-1739f3f1f140.png", "timestamp": "2024-02-15T20:40:38.228312+00:00"}}, {"id": "75c2dff3-f48b-4b12-b4c7-013bcc833d70", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.266971+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear, and traffic is able to flow without any major hindrances.", "snapshot": {"id": "feef08cf-3952-4013-b607-1739f3f1f140", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/feef08cf-3952-4013-b607-1739f3f1f140.png", "timestamp": "2024-02-15T20:40:38.228312+00:00"}}, {"id": "62bd4148-3abe-479f-8747-20c7a9a91c83", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.766659+00:00", "label": "low", "label_explanation": "While the road surface is wet due to the rain, there are no significant puddles or standing water observed. The water level is low, and it does not appear to be causing any traffic disruptions.", "snapshot": {"id": "feef08cf-3952-4013-b607-1739f3f1f140", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/feef08cf-3952-4013-b607-1739f3f1f140.png", "timestamp": "2024-02-15T20:40:38.228312+00:00"}}, {"id": "9c6a8a64-a9ae-4ec4-a3cd-3a0a5145a39a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.041355+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions, and the image appears to be intact.", "snapshot": {"id": "feef08cf-3952-4013-b607-1739f3f1f140", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/feef08cf-3952-4013-b607-1739f3f1f140.png", "timestamp": "2024-02-15T20:40:38.228312+00:00"}}, {"id": "ac7396a9-c85f-45b0-b373-6273af1f5c03", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.056181+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles\u884c\u9a76\u7f13\u6162and some stopped at a red light. However, the road is not completely blocked, and traffic is still able to flow.", "snapshot": {"id": "feef08cf-3952-4013-b607-1739f3f1f140", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/feef08cf-3952-4013-b607-1739f3f1f140.png", "timestamp": "2024-02-15T20:40:38.228312+00:00"}}, {"id": "b43421e3-adc0-4ef5-843d-9fe82e0ed051", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.579624+00:00", "label": "true", "label_explanation": "The image clearly shows that it is raining, as the road surface is wet and there are raindrops visible on the windshield of the vehicle taking the image. The rain appears to be light to moderate in intensity.", "snapshot": {"id": "feef08cf-3952-4013-b607-1739f3f1f140", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/feef08cf-3952-4013-b607-1739f3f1f140.png", "timestamp": "2024-02-15T20:40:38.228312+00:00"}}, {"id": "02505514-3177-426c-bba6-0a9e3cd125f6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.253135+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "ebdde372-905f-4858-a827-1439829b84d9", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/ebdde372-905f-4858-a827-1439829b84d9.png", "timestamp": "2024-02-15T20:45:25.990577+00:00"}}, {"id": "608963e3-32d7-4b69-8251-e4608c266e81", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.968584+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "ebdde372-905f-4858-a827-1439829b84d9", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/ebdde372-905f-4858-a827-1439829b84d9.png", "timestamp": "2024-02-15T20:45:25.990577+00:00"}}, {"id": "dc9345e2-cda1-4a63-8600-1f81c73b37a4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.548237+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "ebdde372-905f-4858-a827-1439829b84d9", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/ebdde372-905f-4858-a827-1439829b84d9.png", "timestamp": "2024-02-15T20:45:25.990577+00:00"}}, {"id": "f27d715b-1eeb-4acc-9d86-0db2644d9325", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.062892+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ebdde372-905f-4858-a827-1439829b84d9", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/ebdde372-905f-4858-a827-1439829b84d9.png", "timestamp": "2024-02-15T20:45:25.990577+00:00"}}, {"id": "bf50195c-90ec-4a27-ba57-fbde0ef0a87c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.751190+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "ebdde372-905f-4858-a827-1439829b84d9", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/ebdde372-905f-4858-a827-1439829b84d9.png", "timestamp": "2024-02-15T20:45:25.990577+00:00"}}, {"id": "90f6f3ec-9b50-425c-9be1-168d45072b16", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.313189+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "ebdde372-905f-4858-a827-1439829b84d9", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/ebdde372-905f-4858-a827-1439829b84d9.png", "timestamp": "2024-02-15T20:45:25.990577+00:00"}}, {"id": "3da86b3f-6524-4edb-93af-817a20de5ae9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.590989+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area.", "snapshot": {"id": "91c81b6e-96b1-4700-b200-9fdd79c12027", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/91c81b6e-96b1-4700-b200-9fdd79c12027.png", "timestamp": "2024-02-15T20:50:14.199577+00:00"}}, {"id": "d32e1cbf-26b2-4a63-b097-7ed076f1b4b9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.364584+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are water droplets visible on the image.", "snapshot": {"id": "91c81b6e-96b1-4700-b200-9fdd79c12027", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/91c81b6e-96b1-4700-b200-9fdd79c12027.png", "timestamp": "2024-02-15T20:50:14.199577+00:00"}}, {"id": "bd137cd7-6df0-4077-a5ff-bec1284025af", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.895961+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "91c81b6e-96b1-4700-b200-9fdd79c12027", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/91c81b6e-96b1-4700-b200-9fdd79c12027.png", "timestamp": "2024-02-15T20:50:14.199577+00:00"}}, {"id": "3064cd8e-7e84-4432-b920-a8fc56dc2393", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:26.013278+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades visible on the road.", "snapshot": {"id": "91c81b6e-96b1-4700-b200-9fdd79c12027", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/91c81b6e-96b1-4700-b200-9fdd79c12027.png", "timestamp": "2024-02-15T20:50:14.199577+00:00"}}, {"id": "48d0ae98-9735-40c9-a518-1bcc2771ab51", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.798861+00:00", "label": "easy", "label_explanation": "The traffic appears to be moving smoothly, with no major congestion or delays.", "snapshot": {"id": "91c81b6e-96b1-4700-b200-9fdd79c12027", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/91c81b6e-96b1-4700-b200-9fdd79c12027.png", "timestamp": "2024-02-15T20:50:14.199577+00:00"}}, {"id": "6c0611ee-57dc-4922-b906-58d8638b8095", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.155573+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road surface is wet. There are vehicles on the road, and the traffic appears to be moderate.", "snapshot": {"id": "91c81b6e-96b1-4700-b200-9fdd79c12027", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/91c81b6e-96b1-4700-b200-9fdd79c12027.png", "timestamp": "2024-02-15T20:50:14.199577+00:00"}}, {"id": "84390940-af85-4c4b-82c1-488a299ac82b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.257017+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "40b0e35b-3396-4e64-a637-33bf6ef68fae", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/40b0e35b-3396-4e64-a637-33bf6ef68fae.png", "timestamp": "2024-02-15T20:52:41.190536+00:00"}}, {"id": "a1326f57-30cc-4eea-88e1-2ca354baf126", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:52.770763+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "40b0e35b-3396-4e64-a637-33bf6ef68fae", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/40b0e35b-3396-4e64-a637-33bf6ef68fae.png", "timestamp": "2024-02-15T20:52:41.190536+00:00"}}, {"id": "5c5e4f98-53f9-44b4-aaab-68b4fcc3e27b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:52.548349+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, crossing the road at a zebra crossing. The road is wet from recent rain, but there are no significant puddles or flooding.", "snapshot": {"id": "40b0e35b-3396-4e64-a637-33bf6ef68fae", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/40b0e35b-3396-4e64-a637-33bf6ef68fae.png", "timestamp": "2024-02-15T20:52:41.190536+00:00"}}, {"id": "30f8eeca-9a67-4925-9b9a-394c28bbc03c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:52.346162+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "40b0e35b-3396-4e64-a637-33bf6ef68fae", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/40b0e35b-3396-4e64-a637-33bf6ef68fae.png", "timestamp": "2024-02-15T20:52:41.190536+00:00"}}, {"id": "71054bd5-981f-4655-a4d5-467277fde9d0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.048292+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While the road is wet, the water has drained effectively, leaving the road mostly dry.", "snapshot": {"id": "40b0e35b-3396-4e64-a637-33bf6ef68fae", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/40b0e35b-3396-4e64-a637-33bf6ef68fae.png", "timestamp": "2024-02-15T20:52:41.190536+00:00"}}, {"id": "38b3aadb-661b-45a2-a66f-4420c653afd1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.489304+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible. Traffic is able to flow freely in both directions.", "snapshot": {"id": "40b0e35b-3396-4e64-a637-33bf6ef68fae", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/40b0e35b-3396-4e64-a637-33bf6ef68fae.png", "timestamp": "2024-02-15T20:52:41.190536+00:00"}}, {"id": "5f5d1ca2-70d2-402d-9d2b-da8d3345514d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:19.172765+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "e91d30d9-db04-4d49-8340-1ed870c2ef31", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/e91d30d9-db04-4d49-8340-1ed870c2ef31.png", "timestamp": "2024-02-15T20:55:07.702461+00:00"}}, {"id": "f2d92cdc-0ee1-4948-9489-c20a7a4392e4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.901450+00:00", "label": "low", "label_explanation": "There is no significant water accumulation on the road surface. While it is wet, the water level is low and does not pose a risk to traffic.", "snapshot": {"id": "e91d30d9-db04-4d49-8340-1ed870c2ef31", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/e91d30d9-db04-4d49-8340-1ed870c2ef31.png", "timestamp": "2024-02-15T20:55:07.702461+00:00"}}, {"id": "3d47bf92-75fc-4cc6-86fa-4cbe6818472f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.668525+00:00", "label": "true", "label_explanation": "The road surface is wet, and rain is visible in the image.", "snapshot": {"id": "e91d30d9-db04-4d49-8340-1ed870c2ef31", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/e91d30d9-db04-4d49-8340-1ed870c2ef31.png", "timestamp": "2024-02-15T20:55:07.702461+00:00"}}, {"id": "cbd71096-67e1-4999-acfb-4d54e9c3eb15", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:19.407284+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible in the image. Traffic is flowing smoothly.", "snapshot": {"id": "e91d30d9-db04-4d49-8340-1ed870c2ef31", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/e91d30d9-db04-4d49-8340-1ed870c2ef31.png", "timestamp": "2024-02-15T20:55:07.702461+00:00"}}, {"id": "2d1ae4b5-0875-40d2-bfcb-af30e91f6103", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.492902+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is raining, and the road surface is wet but not flooded. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "e91d30d9-db04-4d49-8340-1ed870c2ef31", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/e91d30d9-db04-4d49-8340-1ed870c2ef31.png", "timestamp": "2024-02-15T20:55:07.702461+00:00"}}, {"id": "996297cf-78f9-48b1-89e8-815dbbc756c1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.270289+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e91d30d9-db04-4d49-8340-1ed870c2ef31", "camera_id": "001514", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001514/e91d30d9-db04-4d49-8340-1ed870c2ef31.png", "timestamp": "2024-02-15T20:55:07.702461+00:00"}}]}, {"id": "000398", "name": "R. DOMINGOS LOPES X R. MARIA LOPES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.123/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87964422, "longitude": -43.3417186, "objects": ["water_level", "image_description", "image_corrupted", "rain", "traffic", "road_blockade"], "identifications": [{"id": "0701f58c-a106-4ce3-b12b-04ddb7faa9c5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.907040+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are a few puddles on the road.", "snapshot": {"id": "56bc4517-a1a2-4186-aab6-2fecadfac5b0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/56bc4517-a1a2-4186-aab6-2fecadfac5b0.png", "timestamp": "2024-02-15T20:30:32.711054+00:00"}}, {"id": "dec086e8-fd74-4db5-ace3-ca940c829882", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.678362+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions.", "snapshot": {"id": "56bc4517-a1a2-4186-aab6-2fecadfac5b0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/56bc4517-a1a2-4186-aab6-2fecadfac5b0.png", "timestamp": "2024-02-15T20:30:32.711054+00:00"}}, {"id": "d9ad7263-8649-4627-b53a-f61e6670e706", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.372087+00:00", "label": "easy", "label_explanation": "The traffic is moderate, and there are no major disruptions.", "snapshot": {"id": "56bc4517-a1a2-4186-aab6-2fecadfac5b0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/56bc4517-a1a2-4186-aab6-2fecadfac5b0.png", "timestamp": "2024-02-15T20:30:32.711054+00:00"}}, {"id": "1d18492f-8513-4cac-a680-40fc0b44ff9c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.609750+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is rush hour, and there is moderate traffic on the road. The weather is rainy, and the road surface is wet. There are a few puddles on the road, but they are not causing any significant traffic disruptions.", "snapshot": {"id": "56bc4517-a1a2-4186-aab6-2fecadfac5b0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/56bc4517-a1a2-4186-aab6-2fecadfac5b0.png", "timestamp": "2024-02-15T20:30:32.711054+00:00"}}, {"id": "6f8b5bf2-7104-4a4e-8d8e-80ba686632f7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.407700+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "56bc4517-a1a2-4186-aab6-2fecadfac5b0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/56bc4517-a1a2-4186-aab6-2fecadfac5b0.png", "timestamp": "2024-02-15T20:30:32.711054+00:00"}}, {"id": "db3209c1-67b8-466d-9e27-be5436d1bd27", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.153139+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they are not causing any significant traffic disruptions.", "snapshot": {"id": "56bc4517-a1a2-4186-aab6-2fecadfac5b0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/56bc4517-a1a2-4186-aab6-2fecadfac5b0.png", "timestamp": "2024-02-15T20:30:32.711054+00:00"}}, {"id": "ebd1330f-72fa-46cd-b943-a01d05493045", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.515814+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "6d0135f7-f459-4750-a863-8d641ddf989e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/6d0135f7-f459-4750-a863-8d641ddf989e.png", "timestamp": "2024-02-15T20:43:01.005361+00:00"}}, {"id": "b032047a-ba4e-4e1d-be8d-78b6ba266d30", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.166823+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "6d0135f7-f459-4750-a863-8d641ddf989e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/6d0135f7-f459-4750-a863-8d641ddf989e.png", "timestamp": "2024-02-15T20:43:01.005361+00:00"}}, {"id": "b900ada6-3536-4e53-b86b-93b9761d51f1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.920590+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6d0135f7-f459-4750-a863-8d641ddf989e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/6d0135f7-f459-4750-a863-8d641ddf989e.png", "timestamp": "2024-02-15T20:43:01.005361+00:00"}}, {"id": "054d4606-9c8d-49bb-933b-c395159bf93e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.232483+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. Traffic is flowing freely.", "snapshot": {"id": "6d0135f7-f459-4750-a863-8d641ddf989e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/6d0135f7-f459-4750-a863-8d641ddf989e.png", "timestamp": "2024-02-15T20:43:01.005361+00:00"}}, {"id": "3b71e0a8-fba4-419d-945e-8be4319734e9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.747197+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is dry.", "snapshot": {"id": "6d0135f7-f459-4750-a863-8d641ddf989e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/6d0135f7-f459-4750-a863-8d641ddf989e.png", "timestamp": "2024-02-15T20:43:01.005361+00:00"}}, {"id": "0c3662da-77a0-4c2d-bda7-7f80e33a07b7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.009386+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly on the road.", "snapshot": {"id": "6d0135f7-f459-4750-a863-8d641ddf989e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/6d0135f7-f459-4750-a863-8d641ddf989e.png", "timestamp": "2024-02-15T20:43:01.005361+00:00"}}, {"id": "86d3533b-224b-407e-8ef6-3ced1b622c98", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.411723+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road.", "snapshot": {"id": "1d259762-3866-4079-be85-cd7f872606a1", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/1d259762-3866-4079-be85-cd7f872606a1.png", "timestamp": "2024-02-15T20:47:48.964554+00:00"}}, {"id": "2fe55607-2c28-40e6-a315-c0fcd3547dc1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.113843+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "1d259762-3866-4079-be85-cd7f872606a1", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/1d259762-3866-4079-be85-cd7f872606a1.png", "timestamp": "2024-02-15T20:47:48.964554+00:00"}}, {"id": "f575fef9-fada-4c29-bc42-92ffcc5d4d86", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.892509+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles visible.", "snapshot": {"id": "1d259762-3866-4079-be85-cd7f872606a1", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/1d259762-3866-4079-be85-cd7f872606a1.png", "timestamp": "2024-02-15T20:47:48.964554+00:00"}}, {"id": "0af65139-27f6-4a0d-8d8a-30e825230ffb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.394072+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "1d259762-3866-4079-be85-cd7f872606a1", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/1d259762-3866-4079-be85-cd7f872606a1.png", "timestamp": "2024-02-15T20:47:48.964554+00:00"}}, {"id": "650d3f99-bcb4-43fb-9107-2268f6576543", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.141605+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1d259762-3866-4079-be85-cd7f872606a1", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/1d259762-3866-4079-be85-cd7f872606a1.png", "timestamp": "2024-02-15T20:47:48.964554+00:00"}}, {"id": "845fad4b-64b1-4710-84d6-89af96fa35fc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.632755+00:00", "label": "true", "label_explanation": "There are wet patches on the road surface, indicating recent rainfall.", "snapshot": {"id": "1d259762-3866-4079-be85-cd7f872606a1", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/1d259762-3866-4079-be85-cd7f872606a1.png", "timestamp": "2024-02-15T20:47:48.964554+00:00"}}, {"id": "f686650d-0459-4fd9-b036-352cacee5b66", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.259709+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free and uninterrupted traffic flow.", "snapshot": {"id": "de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8.png", "timestamp": "2024-02-15T20:33:12.172358+00:00"}}, {"id": "7dc10940-ac84-4372-b757-4bab154da249", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:27.962245+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8.png", "timestamp": "2024-02-15T20:33:12.172358+00:00"}}, {"id": "75f364ee-6bec-498b-8d87-2b333802593c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:27.744544+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8.png", "timestamp": "2024-02-15T20:33:12.172358+00:00"}}, {"id": "a704838e-eebb-4e76-861e-c75abc50916a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:27.539817+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8.png", "timestamp": "2024-02-15T20:33:12.172358+00:00"}}, {"id": "aa062ced-9373-4436-a51d-77263b25dd19", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:27.241306+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8.png", "timestamp": "2024-02-15T20:33:12.172358+00:00"}}, {"id": "a7af4fe9-a63f-4c82-93a9-7c44b7a3ca2d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:27.035538+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/de0ffe77-f45b-4bed-a3ec-4f84ccadb5e8.png", "timestamp": "2024-02-15T20:33:12.172358+00:00"}}, {"id": "3b8a7330-a0b8-4ed4-a844-d4f442a5bf2d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.497321+00:00", "label": "low", "label_explanation": "Although the road is wet, there are no significant puddles or standing water. The water appears to be mostly on the surface, with some small puddles forming in low-lying areas.", "snapshot": {"id": "90e73d0e-605e-4089-94f6-40e04fb287de", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/90e73d0e-605e-4089-94f6-40e04fb287de.png", "timestamp": "2024-02-15T20:35:38.570934+00:00"}}, {"id": "bf5feb6a-872a-4c86-ac3e-d0b774810006", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.031992+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with traffic lights, trees, and buildings in the background. The weather appears to be cloudy and wet, as the road is visibly wet and there are water droplets on the camera lens.", "snapshot": {"id": "90e73d0e-605e-4089-94f6-40e04fb287de", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/90e73d0e-605e-4089-94f6-40e04fb287de.png", "timestamp": "2024-02-15T20:35:38.570934+00:00"}}, {"id": "07ca7e7f-788e-4df9-8149-684380324a4b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:53.799279+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "90e73d0e-605e-4089-94f6-40e04fb287de", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/90e73d0e-605e-4089-94f6-40e04fb287de.png", "timestamp": "2024-02-15T20:35:38.570934+00:00"}}, {"id": "d529880f-a11c-428c-b2fc-61e7b0436c9c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.705041+00:00", "label": "easy", "label_explanation": "The traffic appears to be moving smoothly, with no major congestion or delays. Vehicles are able to navigate the wet road conditions without difficulty.", "snapshot": {"id": "90e73d0e-605e-4089-94f6-40e04fb287de", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/90e73d0e-605e-4089-94f6-40e04fb287de.png", "timestamp": "2024-02-15T20:35:38.570934+00:00"}}, {"id": "9a2f69c1-840e-4567-89ef-9740f47fe6b4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.283845+00:00", "label": "true", "label_explanation": "As mentioned earlier, the road surface is wet, and there are water droplets on the camera lens, indicating the presence of rain.", "snapshot": {"id": "90e73d0e-605e-4089-94f6-40e04fb287de", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/90e73d0e-605e-4089-94f6-40e04fb287de.png", "timestamp": "2024-02-15T20:35:38.570934+00:00"}}, {"id": "09e7eb10-83f0-4625-bb91-fc2151a5cdde", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.971551+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "90e73d0e-605e-4089-94f6-40e04fb287de", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/90e73d0e-605e-4089-94f6-40e04fb287de.png", "timestamp": "2024-02-15T20:35:38.570934+00:00"}}, {"id": "2d444ab4-ecc5-4e44-b0ac-b35343fb6ab8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.332848+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "03d61c70-7054-41b0-bd97-7693e11328d0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/03d61c70-7054-41b0-bd97-7693e11328d0.png", "timestamp": "2024-02-15T20:40:36.602298+00:00"}}, {"id": "ce92bb45-a416-454f-85a6-5cbafa0bd944", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.816535+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "03d61c70-7054-41b0-bd97-7693e11328d0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/03d61c70-7054-41b0-bd97-7693e11328d0.png", "timestamp": "2024-02-15T20:40:36.602298+00:00"}}, {"id": "a6438aa4-a4b0-4b49-80eb-c895d531a4a3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.512206+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with a wet road surface.", "snapshot": {"id": "03d61c70-7054-41b0-bd97-7693e11328d0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/03d61c70-7054-41b0-bd97-7693e11328d0.png", "timestamp": "2024-02-15T20:40:36.602298+00:00"}}, {"id": "3ffb19a0-acbf-4800-a810-6e26beef58db", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.307193+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "03d61c70-7054-41b0-bd97-7693e11328d0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/03d61c70-7054-41b0-bd97-7693e11328d0.png", "timestamp": "2024-02-15T20:40:36.602298+00:00"}}, {"id": "5328d605-4910-439d-b055-fa7ba5f9f6ea", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.551975+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "03d61c70-7054-41b0-bd97-7693e11328d0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/03d61c70-7054-41b0-bd97-7693e11328d0.png", "timestamp": "2024-02-15T20:40:36.602298+00:00"}}, {"id": "71d57f39-5f0c-4a3b-b9c2-0af65a3ef63d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.069831+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "03d61c70-7054-41b0-bd97-7693e11328d0", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/03d61c70-7054-41b0-bd97-7693e11328d0.png", "timestamp": "2024-02-15T20:40:36.602298+00:00"}}, {"id": "ee757462-dc89-4769-baf2-3d6d576ec1ae", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.858186+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd.png", "timestamp": "2024-02-15T20:38:10.256199+00:00"}}, {"id": "d6c6c872-6512-4de0-996d-7607fc8dfbb1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.634024+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd.png", "timestamp": "2024-02-15T20:38:10.256199+00:00"}}, {"id": "78d0bea1-c28e-43fa-843b-419476721ec8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.045320+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades. Traffic is flowing smoothly.", "snapshot": {"id": "dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd.png", "timestamp": "2024-02-15T20:38:10.256199+00:00"}}, {"id": "86ba047d-cc76-4e3d-944d-cff88196c0ae", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.453217+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd.png", "timestamp": "2024-02-15T20:38:10.256199+00:00"}}, {"id": "6c6ecc42-6937-4fc7-bb6e-564e1c7857d7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.229089+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd.png", "timestamp": "2024-02-15T20:38:10.256199+00:00"}}, {"id": "6324f237-0c60-4fe6-9d6d-c38d7474e7b0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.970150+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/dbd73b55-c2a6-4c2b-a743-d1d7c2ac41dd.png", "timestamp": "2024-02-15T20:38:10.256199+00:00"}}, {"id": "0f5d46f3-8a30-435d-81ca-abc1c7107552", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.725755+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7acac0bd-46ff-4f9e-a23a-cf467affee1e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/7acac0bd-46ff-4f9e-a23a-cf467affee1e.png", "timestamp": "2024-02-15T20:45:23.960272+00:00"}}, {"id": "b2d7293b-54af-4c04-b160-659e5c685dad", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.420141+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "7acac0bd-46ff-4f9e-a23a-cf467affee1e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/7acac0bd-46ff-4f9e-a23a-cf467affee1e.png", "timestamp": "2024-02-15T20:45:23.960272+00:00"}}, {"id": "862de85d-a1a0-4e49-aed7-d922f55a1ddb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.134024+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "7acac0bd-46ff-4f9e-a23a-cf467affee1e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/7acac0bd-46ff-4f9e-a23a-cf467affee1e.png", "timestamp": "2024-02-15T20:45:23.960272+00:00"}}, {"id": "9c8d6f55-fde0-4cbc-a292-6d87e724f975", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.957310+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "7acac0bd-46ff-4f9e-a23a-cf467affee1e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/7acac0bd-46ff-4f9e-a23a-cf467affee1e.png", "timestamp": "2024-02-15T20:45:23.960272+00:00"}}, {"id": "49de7705-821a-4d72-ba49-7c147bbf0607", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.707228+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with a few vehicles on the road, including a bus and some motorcycles.", "snapshot": {"id": "7acac0bd-46ff-4f9e-a23a-cf467affee1e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/7acac0bd-46ff-4f9e-a23a-cf467affee1e.png", "timestamp": "2024-02-15T20:45:23.960272+00:00"}}, {"id": "3d0bdcbe-d27d-4c83-a2b7-1ddeeb93d1c7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.923473+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a bus stop, a few trees, and buildings in the background. It is daytime and the weather appears cloudy.", "snapshot": {"id": "7acac0bd-46ff-4f9e-a23a-cf467affee1e", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/7acac0bd-46ff-4f9e-a23a-cf467affee1e.png", "timestamp": "2024-02-15T20:45:23.960272+00:00"}}, {"id": "bdb0a3ea-b571-4632-8d88-3682358c30d9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.611556+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "70c04dd4-d761-4776-ae0f-19a18e4f69a7", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/70c04dd4-d761-4776-ae0f-19a18e4f69a7.png", "timestamp": "2024-02-15T20:50:11.919449+00:00"}}, {"id": "4f2808d4-b4ca-42e1-9eb3-78df6daf1861", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.607409+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear for traffic.", "snapshot": {"id": "70c04dd4-d761-4776-ae0f-19a18e4f69a7", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/70c04dd4-d761-4776-ae0f-19a18e4f69a7.png", "timestamp": "2024-02-15T20:50:11.919449+00:00"}}, {"id": "eef85309-c339-4487-8ec7-f09768f33b2f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.404844+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or congestion visible.", "snapshot": {"id": "70c04dd4-d761-4776-ae0f-19a18e4f69a7", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/70c04dd4-d761-4776-ae0f-19a18e4f69a7.png", "timestamp": "2024-02-15T20:50:11.919449+00:00"}}, {"id": "5b0cc0aa-6018-43db-ba93-0b7693c7f5f9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.152110+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is dry.", "snapshot": {"id": "70c04dd4-d761-4776-ae0f-19a18e4f69a7", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/70c04dd4-d761-4776-ae0f-19a18e4f69a7.png", "timestamp": "2024-02-15T20:50:11.919449+00:00"}}, {"id": "a89d751a-8bdb-40fc-889c-3ee66839169c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.830339+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "70c04dd4-d761-4776-ae0f-19a18e4f69a7", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/70c04dd4-d761-4776-ae0f-19a18e4f69a7.png", "timestamp": "2024-02-15T20:50:11.919449+00:00"}}, {"id": "2c581628-e136-42fd-9412-069dee81bfdc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.336807+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "70c04dd4-d761-4776-ae0f-19a18e4f69a7", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/70c04dd4-d761-4776-ae0f-19a18e4f69a7.png", "timestamp": "2024-02-15T20:50:11.919449+00:00"}}, {"id": "52bf820a-b212-4bed-84ac-d2f139647cdf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.940478+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "59bd2fd3-7cb1-45b6-81ce-11405e429937", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/59bd2fd3-7cb1-45b6-81ce-11405e429937.png", "timestamp": "2024-02-15T20:52:37.005743+00:00"}}, {"id": "1e0a99f0-84a4-472d-83a5-2dce3bec586d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.960300+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "59bd2fd3-7cb1-45b6-81ce-11405e429937", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/59bd2fd3-7cb1-45b6-81ce-11405e429937.png", "timestamp": "2024-02-15T20:52:37.005743+00:00"}}, {"id": "87471dfe-41e5-4b13-aa6e-5ed0a1c8134b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.143828+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "59bd2fd3-7cb1-45b6-81ce-11405e429937", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/59bd2fd3-7cb1-45b6-81ce-11405e429937.png", "timestamp": "2024-02-15T20:52:37.005743+00:00"}}, {"id": "50d4e3dd-32f7-409d-9eab-732d21c4ef54", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.721013+00:00", "label": "low", "label_explanation": "The road surface is dry with no visible water accumulation.", "snapshot": {"id": "59bd2fd3-7cb1-45b6-81ce-11405e429937", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/59bd2fd3-7cb1-45b6-81ce-11405e429937.png", "timestamp": "2024-02-15T20:52:37.005743+00:00"}}, {"id": "706c0d1c-dfa9-4483-91aa-002419fbbff0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.526491+00:00", "label": "false", "label_explanation": "There are no visible signs of rain in the image.", "snapshot": {"id": "59bd2fd3-7cb1-45b6-81ce-11405e429937", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/59bd2fd3-7cb1-45b6-81ce-11405e429937.png", "timestamp": "2024-02-15T20:52:37.005743+00:00"}}, {"id": "e5f4ba28-e2cb-4585-a6b5-0748607a5cac", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.163516+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with a chance of rain.", "snapshot": {"id": "59bd2fd3-7cb1-45b6-81ce-11405e429937", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/59bd2fd3-7cb1-45b6-81ce-11405e429937.png", "timestamp": "2024-02-15T20:52:37.005743+00:00"}}, {"id": "01fcb825-2c8c-4591-bc1c-5ebb133ac22e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.237781+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road during daytime. It is rush hour, and there is moderate traffic on the road. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "5d75e0ce-909a-4734-bfae-4454b17e31e5", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/5d75e0ce-909a-4734-bfae-4454b17e31e5.png", "timestamp": "2024-02-15T20:55:04.274146+00:00"}}, {"id": "ae4d5f70-93d5-4252-b419-978dca03aee0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.938894+00:00", "label": "easy", "label_explanation": "There is moderate traffic on the road, but it is still flowing smoothly. There are no major delays or disruptions.", "snapshot": {"id": "5d75e0ce-909a-4734-bfae-4454b17e31e5", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/5d75e0ce-909a-4734-bfae-4454b17e31e5.png", "timestamp": "2024-02-15T20:55:04.274146+00:00"}}, {"id": "112deb24-0021-4322-a222-758a760d0638", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.725656+00:00", "label": "low", "label_explanation": "There is no standing water or flooding on the road. The road surface is wet, but it is still easily navigable for vehicles.", "snapshot": {"id": "5d75e0ce-909a-4734-bfae-4454b17e31e5", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/5d75e0ce-909a-4734-bfae-4454b17e31e5.png", "timestamp": "2024-02-15T20:55:04.274146+00:00"}}, {"id": "cec24022-506d-47c7-9a5f-0a3929389c26", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.448415+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water or flooding.", "snapshot": {"id": "5d75e0ce-909a-4734-bfae-4454b17e31e5", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/5d75e0ce-909a-4734-bfae-4454b17e31e5.png", "timestamp": "2024-02-15T20:55:04.274146+00:00"}}, {"id": "081fb6c0-b10d-46a5-8cad-9a6398771d7c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.236207+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles.", "snapshot": {"id": "5d75e0ce-909a-4734-bfae-4454b17e31e5", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/5d75e0ce-909a-4734-bfae-4454b17e31e5.png", "timestamp": "2024-02-15T20:55:04.274146+00:00"}}, {"id": "59c1fb41-a6c8-49a0-b9b7-fc8415b3e4e6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.044755+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5d75e0ce-909a-4734-bfae-4454b17e31e5", "camera_id": "000398", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000398/5d75e0ce-909a-4734-bfae-4454b17e31e5.png", "timestamp": "2024-02-15T20:55:04.274146+00:00"}}]}, {"id": "001171", "name": "RUA EST\u00c1CIO DE S\u00c1, 165 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914749, "longitude": -43.206623, "objects": ["water_level", "image_corrupted", "rain", "traffic", "road_blockade", "image_description"], "identifications": [{"id": "65bf0b3e-ee57-479a-b3da-911b3c6180a0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.993572+00:00", "label": "free", "label_explanation": "There are no road blockades.", "snapshot": {"id": "e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de.png", "timestamp": "2024-02-15T20:30:08.826337+00:00"}}, {"id": "3593f945-adce-43d8-a6ef-626bf8c484bf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.667534+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with several cars on the road.", "snapshot": {"id": "e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de.png", "timestamp": "2024-02-15T20:30:08.826337+00:00"}}, {"id": "03074614-fa05-4a57-82f5-2a95a1dfa53c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.330031+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de.png", "timestamp": "2024-02-15T20:30:08.826337+00:00"}}, {"id": "be2f04e8-bb8b-4130-8551-dc3c30a64988", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.028904+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de.png", "timestamp": "2024-02-15T20:30:08.826337+00:00"}}, {"id": "1ba85387-abc9-42d8-8c20-3ca5eb5d422b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.561475+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a slight bend to the right. There are several cars on the road, and the traffic is moderate. The road is wet from recent rain, but there is no standing water. There are trees and buildings on either side of the road.", "snapshot": {"id": "e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de.png", "timestamp": "2024-02-15T20:30:08.826337+00:00"}}, {"id": "294bdc58-ad6a-4c0c-9d3f-696d290f7b23", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.851034+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/e8cbfe74-7061-4e2f-9d0e-fadb77b2e6de.png", "timestamp": "2024-02-15T20:30:08.826337+00:00"}}, {"id": "716bf287-dd7d-43fe-9744-4f9ea10610b4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:08.347339+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be described.", "snapshot": {"id": "759e378f-af85-44be-b7d0-0f9cffdb7572", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/759e378f-af85-44be-b7d0-0f9cffdb7572.png", "timestamp": "2024-02-15T20:44:56.534218+00:00"}}, {"id": "c0f37561-5a2f-42e1-9d60-cd30fb296caf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:07.996612+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption makes it impossible to analyze the road conditions or traffic flow.", "snapshot": {"id": "759e378f-af85-44be-b7d0-0f9cffdb7572", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/759e378f-af85-44be-b7d0-0f9cffdb7572.png", "timestamp": "2024-02-15T20:44:56.534218+00:00"}}, {"id": "8e0a30ed-12d9-4039-b169-b01882d17a49", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:52.161295+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "d7bd7c25-213f-44cf-a779-e288a23f1374", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/d7bd7c25-213f-44cf-a779-e288a23f1374.png", "timestamp": "2024-02-15T20:37:38.071770+00:00"}}, {"id": "cad48298-799b-4a20-8c08-020bb8c7c298", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:51.560949+00:00", "label": "true", "label_explanation": "The image is severely corrupted with uniform green and purple color distortions, making it impossible to analyze.", "snapshot": {"id": "d7bd7c25-213f-44cf-a779-e288a23f1374", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/d7bd7c25-213f-44cf-a779-e288a23f1374.png", "timestamp": "2024-02-15T20:37:38.071770+00:00"}}, {"id": "7405afe0-c897-4aba-b856-a4ed72632fe2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.020260+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "e214225b-e18d-4125-ade5-1f6b4e781ff2", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/e214225b-e18d-4125-ade5-1f6b4e781ff2.png", "timestamp": "2024-02-15T20:35:04.376508+00:00"}}, {"id": "3e9704e8-f173-4786-a2ff-9aa09233f1f2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.420796+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with uniform grey color replacing the visual data. This corruption makes it impossible to analyze the road conditions or traffic flow.", "snapshot": {"id": "e214225b-e18d-4125-ade5-1f6b4e781ff2", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/e214225b-e18d-4125-ade5-1f6b4e781ff2.png", "timestamp": "2024-02-15T20:35:04.376508+00:00"}}, {"id": "df7e042e-bf7d-49cb-a87b-c040f7b343fc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:18.135999+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "e2512efe-40aa-4407-9a5a-e4ed4ceb446b", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/e2512efe-40aa-4407-9a5a-e4ed4ceb446b.png", "timestamp": "2024-02-15T20:40:02.650526+00:00"}}, {"id": "977aacf1-1c9f-451e-91cd-702e98c71b65", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:18.791857+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be described.", "snapshot": {"id": "e2512efe-40aa-4407-9a5a-e4ed4ceb446b", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/e2512efe-40aa-4407-9a5a-e4ed4ceb446b.png", "timestamp": "2024-02-15T20:40:02.650526+00:00"}}, {"id": "c4bbb7c6-02b3-4297-b540-3d4727a17cb7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:28.862184+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no visible congestion or hazards.", "snapshot": {"id": "38e6a7a4-54be-4fae-adb6-85bf9100c7fa", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/38e6a7a4-54be-4fae-adb6-85bf9100c7fa.png", "timestamp": "2024-02-15T20:47:17.763966+00:00"}}, {"id": "a21c269f-67b7-400c-b854-0127871fa438", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:28.498125+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "38e6a7a4-54be-4fae-adb6-85bf9100c7fa", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/38e6a7a4-54be-4fae-adb6-85bf9100c7fa.png", "timestamp": "2024-02-15T20:47:17.763966+00:00"}}, {"id": "05ea840d-d6e1-48f7-abec-003b0fd1dd8f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:28.077434+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with traffic lights, trees, and buildings in the background. The road is dry, and there are no visible signs of water.", "snapshot": {"id": "38e6a7a4-54be-4fae-adb6-85bf9100c7fa", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/38e6a7a4-54be-4fae-adb6-85bf9100c7fa.png", "timestamp": "2024-02-15T20:47:17.763966+00:00"}}, {"id": "24bc118d-ed88-40c5-a828-47b9326b78cc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:27.781355+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "38e6a7a4-54be-4fae-adb6-85bf9100c7fa", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/38e6a7a4-54be-4fae-adb6-85bf9100c7fa.png", "timestamp": "2024-02-15T20:47:17.763966+00:00"}}, {"id": "31c6a40c-f759-4c93-8650-114d6839726b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:29.119297+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road.", "snapshot": {"id": "38e6a7a4-54be-4fae-adb6-85bf9100c7fa", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/38e6a7a4-54be-4fae-adb6-85bf9100c7fa.png", "timestamp": "2024-02-15T20:47:17.763966+00:00"}}, {"id": "2bd48293-f846-4fe3-a903-dc117ed2ad67", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:28.331326+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "38e6a7a4-54be-4fae-adb6-85bf9100c7fa", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/38e6a7a4-54be-4fae-adb6-85bf9100c7fa.png", "timestamp": "2024-02-15T20:47:17.763966+00:00"}}, {"id": "9c22a846-643e-487f-81b2-0868f7fec433", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:58.060258+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "4a7b3b44-5dde-4a57-84ea-0d20304b8495", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/4a7b3b44-5dde-4a57-84ea-0d20304b8495.png", "timestamp": "2024-02-15T20:42:47.401917+00:00"}}, {"id": "4aae256b-9716-4103-b5ee-576787aa08fa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:58.314430+00:00", "label": "null", "label_explanation": "The image is corrupted and does not provide any useful information.", "snapshot": {"id": "4a7b3b44-5dde-4a57-84ea-0d20304b8495", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/4a7b3b44-5dde-4a57-84ea-0d20304b8495.png", "timestamp": "2024-02-15T20:42:47.401917+00:00"}}, {"id": "2712c01a-bb9b-4441-ae15-709781ebea47", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:42.173581+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear for traffic to pass.", "snapshot": {"id": "11a55506-ea4d-4056-9eee-fe1475d4bfcc", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/11a55506-ea4d-4056-9eee-fe1475d4bfcc.png", "timestamp": "2024-02-15T20:32:28.013738+00:00"}}, {"id": "622eb4f7-98ec-4a45-bcf8-df8c5a38242b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:41.805284+00:00", "label": "easy", "label_explanation": "The road is partially visible, with a clear lane for traffic to pass. Traffic flow appears to be moderate, with a few vehicles visible.", "snapshot": {"id": "11a55506-ea4d-4056-9eee-fe1475d4bfcc", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/11a55506-ea4d-4056-9eee-fe1475d4bfcc.png", "timestamp": "2024-02-15T20:32:28.013738+00:00"}}, {"id": "3f59f538-a4c6-4f40-abec-59061151c150", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:41.346542+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "11a55506-ea4d-4056-9eee-fe1475d4bfcc", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/11a55506-ea4d-4056-9eee-fe1475d4bfcc.png", "timestamp": "2024-02-15T20:32:28.013738+00:00"}}, {"id": "d9003cc1-664d-4c51-8c63-f1a81ba2f39e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:40.662146+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "11a55506-ea4d-4056-9eee-fe1475d4bfcc", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/11a55506-ea4d-4056-9eee-fe1475d4bfcc.png", "timestamp": "2024-02-15T20:32:28.013738+00:00"}}, {"id": "939faa8e-6fec-4837-8f15-94a5ed8a444f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:39.895207+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a church, trees, and buildings in the background. The road is partially visible, with a green area to the left and buildings to the right.", "snapshot": {"id": "11a55506-ea4d-4056-9eee-fe1475d4bfcc", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/11a55506-ea4d-4056-9eee-fe1475d4bfcc.png", "timestamp": "2024-02-15T20:32:28.013738+00:00"}}, {"id": "351354ea-923a-431b-ae62-2946a53844f4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:39.427278+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "11a55506-ea4d-4056-9eee-fe1475d4bfcc", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/11a55506-ea4d-4056-9eee-fe1475d4bfcc.png", "timestamp": "2024-02-15T20:32:28.013738+00:00"}}, {"id": "9e0087bf-f3fe-43d1-b3d4-f7d3d1ed8ad2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:01.446717+00:00", "label": "true", "label_explanation": "The image is corrupted and has significant data loss, making it difficult to analyze.", "snapshot": {"id": "3e00c633-c4f6-4485-ba2c-790cbaf7cedd", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/3e00c633-c4f6-4485-ba2c-790cbaf7cedd.png", "timestamp": "2024-02-15T20:49:50.338164+00:00"}}, {"id": "5782f467-4403-4cd5-bf6c-409575088561", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:01.739366+00:00", "label": "null", "label_explanation": "The image is corrupted and has significant data loss, making it difficult to analyze.", "snapshot": {"id": "3e00c633-c4f6-4485-ba2c-790cbaf7cedd", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/3e00c633-c4f6-4485-ba2c-790cbaf7cedd.png", "timestamp": "2024-02-15T20:49:50.338164+00:00"}}, {"id": "1eb611e2-0568-4b0a-b254-aa4422484f3c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:17.944402+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with large green and grey blocks obscuring most of the visual data. It is impossible to discern any meaningful information from this image.", "snapshot": {"id": "b898487b-8b9d-4b7c-8585-1d12d1e5f24c", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/b898487b-8b9d-4b7c-8585-1d12d1e5f24c.png", "timestamp": "2024-02-15T20:52:08.292440+00:00"}}, {"id": "a8ea17cb-6d5e-41bb-b131-0588c2bf79e6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:18.079267+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "b898487b-8b9d-4b7c-8585-1d12d1e5f24c", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/b898487b-8b9d-4b7c-8585-1d12d1e5f24c.png", "timestamp": "2024-02-15T20:52:08.292440+00:00"}}, {"id": "96f2b28c-7243-4e2f-a363-4fbf2b3c3c51", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.374432+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "4204dc5e-ba8b-4275-827e-3dfdeb5bc912", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/4204dc5e-ba8b-4275-827e-3dfdeb5bc912.png", "timestamp": "2024-02-15T20:54:41.676007+00:00"}}, {"id": "7a3b0759-1ec0-4f2a-a6d1-5d0d9deb9652", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.825646+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "4204dc5e-ba8b-4275-827e-3dfdeb5bc912", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/4204dc5e-ba8b-4275-827e-3dfdeb5bc912.png", "timestamp": "2024-02-15T20:54:41.676007+00:00"}}, {"id": "264af521-e43c-4062-abab-79974e683e09", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.332458+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4204dc5e-ba8b-4275-827e-3dfdeb5bc912", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/4204dc5e-ba8b-4275-827e-3dfdeb5bc912.png", "timestamp": "2024-02-15T20:54:41.676007+00:00"}}, {"id": "fea2bcf2-fa71-45ff-9132-3e9ef766f42e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.856790+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "4204dc5e-ba8b-4275-827e-3dfdeb5bc912", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/4204dc5e-ba8b-4275-827e-3dfdeb5bc912.png", "timestamp": "2024-02-15T20:54:41.676007+00:00"}}, {"id": "858b3ff4-56dc-433d-b560-c2aa89e4d8c0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.463744+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "4204dc5e-ba8b-4275-827e-3dfdeb5bc912", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/4204dc5e-ba8b-4275-827e-3dfdeb5bc912.png", "timestamp": "2024-02-15T20:54:41.676007+00:00"}}, {"id": "4ce23d25-5a1f-4982-bd12-32ca578b9fba", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.575533+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "4204dc5e-ba8b-4275-827e-3dfdeb5bc912", "camera_id": "001171", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001171/4204dc5e-ba8b-4275-827e-3dfdeb5bc912.png", "timestamp": "2024-02-15T20:54:41.676007+00:00"}}]}, {"id": "001152", "name": "AV. MEM DE S\u00c1 X R. DOS INV\u00c1LIDOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91270999, "longitude": -43.18437761, "objects": ["image_corrupted", "image_description", "water_level", "rain", "traffic", "road_blockade"], "identifications": [{"id": "d1b0312c-aabb-41d8-ae94-a23d6b8148e7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.430898+00:00", "label": "free", "label_explanation": "It is not possible to tell if there are any road blockades in the image.", "snapshot": {"id": "d97f621d-a73b-43dd-a570-6fab4e891eb7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/d97f621d-a73b-43dd-a570-6fab4e891eb7.png", "timestamp": "2024-02-15T20:29:57.828030+00:00"}}, {"id": "bd158de8-4487-411e-a637-3dd244a646fe", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.219100+00:00", "label": "easy", "label_explanation": "It is not possible to tell the traffic level in the image.", "snapshot": {"id": "d97f621d-a73b-43dd-a570-6fab4e891eb7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/d97f621d-a73b-43dd-a570-6fab4e891eb7.png", "timestamp": "2024-02-15T20:29:57.828030+00:00"}}, {"id": "ece82f9a-da93-4199-bdd6-f7976d41b3bc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:11.707386+00:00", "label": "low", "label_explanation": "It is not possible to tell the water level in the image.", "snapshot": {"id": "d97f621d-a73b-43dd-a570-6fab4e891eb7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/d97f621d-a73b-43dd-a570-6fab4e891eb7.png", "timestamp": "2024-02-15T20:29:57.828030+00:00"}}, {"id": "63e3f8f3-2b32-4591-a5d9-a378f885f8ed", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:10.908325+00:00", "label": "false", "label_explanation": "It is not possible to tell if it is raining in the image.", "snapshot": {"id": "d97f621d-a73b-43dd-a570-6fab4e891eb7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/d97f621d-a73b-43dd-a570-6fab4e891eb7.png", "timestamp": "2024-02-15T20:29:57.828030+00:00"}}, {"id": "f94651ef-266b-4c11-a7f7-3a9a292c4373", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:10.341826+00:00", "label": "null", "label_explanation": "The image is a CCTV image of an urban road.", "snapshot": {"id": "d97f621d-a73b-43dd-a570-6fab4e891eb7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/d97f621d-a73b-43dd-a570-6fab4e891eb7.png", "timestamp": "2024-02-15T20:29:57.828030+00:00"}}, {"id": "0f76c0ca-9072-4e64-8dd0-a09b5026d4b5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:09.895064+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "d97f621d-a73b-43dd-a570-6fab4e891eb7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/d97f621d-a73b-43dd-a570-6fab4e891eb7.png", "timestamp": "2024-02-15T20:29:57.828030+00:00"}}, {"id": "ce995d07-42c2-4b63-817d-6b99286976bf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.899324+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "a972bdef-839c-4062-af25-d062bad3737d", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/a972bdef-839c-4062-af25-d062bad3737d.png", "timestamp": "2024-02-15T20:49:42.754455+00:00"}}, {"id": "c220b080-8edf-4c75-90ad-ec9a4f0398c7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.542184+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "a972bdef-839c-4062-af25-d062bad3737d", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/a972bdef-839c-4062-af25-d062bad3737d.png", "timestamp": "2024-02-15T20:49:42.754455+00:00"}}, {"id": "7c4ec6e4-150f-42cb-94bd-99dd6f1f1331", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:26.950310+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no visible details.", "snapshot": {"id": "d76a6ffe-4514-49a8-b779-c223be2ab5ba", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/d76a6ffe-4514-49a8-b779-c223be2ab5ba.png", "timestamp": "2024-02-15T20:47:18.841190+00:00"}}, {"id": "efd6810e-cae3-4879-9abb-678541c6d1ee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:27.431536+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "d76a6ffe-4514-49a8-b779-c223be2ab5ba", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/d76a6ffe-4514-49a8-b779-c223be2ab5ba.png", "timestamp": "2024-02-15T20:47:18.841190+00:00"}}, {"id": "2fffe402-afe4-4268-aece-7ffaf5569adf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.958918+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "e2954a49-83a5-4a5e-b562-5ac7b039ae36", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/e2954a49-83a5-4a5e-b562-5ac7b039ae36.png", "timestamp": "2024-02-15T20:35:31.553525+00:00"}}, {"id": "9968beac-3c9b-4c58-a67a-948d25c2f1a2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.693358+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "e2954a49-83a5-4a5e-b562-5ac7b039ae36", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/e2954a49-83a5-4a5e-b562-5ac7b039ae36.png", "timestamp": "2024-02-15T20:35:31.553525+00:00"}}, {"id": "82bb6cce-5369-4887-b33a-3d05b3916aa2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.463460+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "e2954a49-83a5-4a5e-b562-5ac7b039ae36", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/e2954a49-83a5-4a5e-b562-5ac7b039ae36.png", "timestamp": "2024-02-15T20:35:31.553525+00:00"}}, {"id": "70c97198-6516-4f0d-b475-458a4aa75cbd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.779563+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e2954a49-83a5-4a5e-b562-5ac7b039ae36", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/e2954a49-83a5-4a5e-b562-5ac7b039ae36.png", "timestamp": "2024-02-15T20:35:31.553525+00:00"}}, {"id": "1fc0c039-586b-4fd0-9fb0-147065a21ab7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.182001+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "e2954a49-83a5-4a5e-b562-5ac7b039ae36", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/e2954a49-83a5-4a5e-b562-5ac7b039ae36.png", "timestamp": "2024-02-15T20:35:31.553525+00:00"}}, {"id": "5c5bbda5-890e-4fe5-8f03-a9ff49c169fc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.979672+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "e2954a49-83a5-4a5e-b562-5ac7b039ae36", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/e2954a49-83a5-4a5e-b562-5ac7b039ae36.png", "timestamp": "2024-02-15T20:35:31.553525+00:00"}}, {"id": "46346465-94ec-4128-85c4-d2eda35bcd3f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:39.949890+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no visible details.", "snapshot": {"id": "a7b15edb-1af8-4830-885b-9de06c966839", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/a7b15edb-1af8-4830-885b-9de06c966839.png", "timestamp": "2024-02-15T20:37:30.201483+00:00"}}, {"id": "32ea2ad0-d089-42ef-bdea-fa78b97f209e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:40.733400+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "a7b15edb-1af8-4830-885b-9de06c966839", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/a7b15edb-1af8-4830-885b-9de06c966839.png", "timestamp": "2024-02-15T20:37:30.201483+00:00"}}, {"id": "ef22727a-fa96-4b85-bb6a-843b7e03e98e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.874737+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "42d11716-80f5-4cf7-b3de-a1f4d45581d8", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/42d11716-80f5-4cf7-b3de-a1f4d45581d8.png", "timestamp": "2024-02-15T20:40:12.559579+00:00"}}, {"id": "b734692e-5cf8-4713-8178-70dcb21cd02b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.151225+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "42d11716-80f5-4cf7-b3de-a1f4d45581d8", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/42d11716-80f5-4cf7-b3de-a1f4d45581d8.png", "timestamp": "2024-02-15T20:40:12.559579+00:00"}}, {"id": "6db826b8-1d9b-4326-b7f0-f7b067bacdbf", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.565015+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "42d11716-80f5-4cf7-b3de-a1f4d45581d8", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/42d11716-80f5-4cf7-b3de-a1f4d45581d8.png", "timestamp": "2024-02-15T20:40:12.559579+00:00"}}, {"id": "396bdd2d-921e-41e8-9991-6c7175f1fa16", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.288515+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and people.", "snapshot": {"id": "42d11716-80f5-4cf7-b3de-a1f4d45581d8", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/42d11716-80f5-4cf7-b3de-a1f4d45581d8.png", "timestamp": "2024-02-15T20:40:12.559579+00:00"}}, {"id": "95ff668e-2707-4a74-991d-33b487b032ed", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:27.996660+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "42d11716-80f5-4cf7-b3de-a1f4d45581d8", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/42d11716-80f5-4cf7-b3de-a1f4d45581d8.png", "timestamp": "2024-02-15T20:40:12.559579+00:00"}}, {"id": "62896952-41d8-4434-854e-6b371c2f3613", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.917982+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "42d11716-80f5-4cf7-b3de-a1f4d45581d8", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/42d11716-80f5-4cf7-b3de-a1f4d45581d8.png", "timestamp": "2024-02-15T20:40:12.559579+00:00"}}, {"id": "24837bbc-e914-4a21-8192-230f72dfcdd4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:41.166095+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "3e468c1b-cf3d-4042-a25b-8e557b26b97f", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/3e468c1b-cf3d-4042-a25b-8e557b26b97f.png", "timestamp": "2024-02-15T20:42:31.212902+00:00"}}, {"id": "3adc9544-371f-4825-b567-533f590681d8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:40.996595+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and distorted shapes, making it impossible to analyze.", "snapshot": {"id": "3e468c1b-cf3d-4042-a25b-8e557b26b97f", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/3e468c1b-cf3d-4042-a25b-8e557b26b97f.png", "timestamp": "2024-02-15T20:42:31.212902+00:00"}}, {"id": "713c7748-0cdf-40c9-b018-0edb5644330c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:05.440862+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "cc6a724e-8fec-421d-a2e1-70c77d606911", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/cc6a724e-8fec-421d-a2e1-70c77d606911.png", "timestamp": "2024-02-15T20:44:55.850407+00:00"}}, {"id": "e78e77cc-8941-4a50-8e98-e4728aeca7b2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:05.211360+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "cc6a724e-8fec-421d-a2e1-70c77d606911", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/cc6a724e-8fec-421d-a2e1-70c77d606911.png", "timestamp": "2024-02-15T20:44:55.850407+00:00"}}, {"id": "6ea667d3-5a50-46be-b672-85f28c8099d2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:44.868072+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "39189f1f-7011-4e22-86ed-cb329e6b1611", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/39189f1f-7011-4e22-86ed-cb329e6b1611.png", "timestamp": "2024-02-15T20:32:31.331358+00:00"}}, {"id": "644f08b9-fbaf-4354-ab1d-737e5c23d306", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:44.020388+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "39189f1f-7011-4e22-86ed-cb329e6b1611", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/39189f1f-7011-4e22-86ed-cb329e6b1611.png", "timestamp": "2024-02-15T20:32:31.331358+00:00"}}, {"id": "89dc028f-8218-486a-8a07-67f2c5c869f3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:39.460292+00:00", "label": "low", "label_explanation": "It is not possible to tell the water level.", "snapshot": {"id": "011ce19b-178c-44ea-9ed7-31e387b418c7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/011ce19b-178c-44ea-9ed7-31e387b418c7.png", "timestamp": "2024-02-15T20:54:29.378984+00:00"}}, {"id": "e26e02a4-fa9b-4bb2-b464-3675efff744a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:39.102804+00:00", "label": "false", "label_explanation": "It is not possible to tell if it is raining.", "snapshot": {"id": "011ce19b-178c-44ea-9ed7-31e387b418c7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/011ce19b-178c-44ea-9ed7-31e387b418c7.png", "timestamp": "2024-02-15T20:54:29.378984+00:00"}}, {"id": "1c4b79f7-576b-4d3f-ba81-3a045afd6cae", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:38.839358+00:00", "label": "null", "label_explanation": "There is no image to describe.", "snapshot": {"id": "011ce19b-178c-44ea-9ed7-31e387b418c7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/011ce19b-178c-44ea-9ed7-31e387b418c7.png", "timestamp": "2024-02-15T20:54:29.378984+00:00"}}, {"id": "9780e99a-93f7-4908-af68-0f7d9cb06a9f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:38.629989+00:00", "label": "true", "label_explanation": "The image is corrupted. There is no visible content.", "snapshot": {"id": "011ce19b-178c-44ea-9ed7-31e387b418c7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/011ce19b-178c-44ea-9ed7-31e387b418c7.png", "timestamp": "2024-02-15T20:54:29.378984+00:00"}}, {"id": "22efd94e-54b5-426c-99ba-a8dc529034d9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:39.932899+00:00", "label": "free", "label_explanation": "It is not possible to tell if there are any road blockades.", "snapshot": {"id": "011ce19b-178c-44ea-9ed7-31e387b418c7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/011ce19b-178c-44ea-9ed7-31e387b418c7.png", "timestamp": "2024-02-15T20:54:29.378984+00:00"}}, {"id": "a55caa20-45ae-4989-9db8-65af4b5012fc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:39.704072+00:00", "label": "easy", "label_explanation": "It is not possible to tell the traffic conditions.", "snapshot": {"id": "011ce19b-178c-44ea-9ed7-31e387b418c7", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/011ce19b-178c-44ea-9ed7-31e387b418c7.png", "timestamp": "2024-02-15T20:54:29.378984+00:00"}}, {"id": "6b5f7cdb-0e31-491f-8c65-7b1147842de4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.129969+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in all directions.", "snapshot": {"id": "9a272d51-c008-4f0a-8bc8-469d02666f87", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/9a272d51-c008-4f0a-8bc8-469d02666f87.png", "timestamp": "2024-02-15T20:52:32.689094+00:00"}}, {"id": "e49c43c4-df36-4bc1-840b-f70246294679", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.321166+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy, as there is no standing water or significant puddles.", "snapshot": {"id": "9a272d51-c008-4f0a-8bc8-469d02666f87", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/9a272d51-c008-4f0a-8bc8-469d02666f87.png", "timestamp": "2024-02-15T20:52:32.689094+00:00"}}, {"id": "a8c68442-6b58-47e1-bf10-2686c32a2e12", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.536943+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no significant puddles or standing water, and the road surface is mostly dry.", "snapshot": {"id": "9a272d51-c008-4f0a-8bc8-469d02666f87", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/9a272d51-c008-4f0a-8bc8-469d02666f87.png", "timestamp": "2024-02-15T20:52:32.689094+00:00"}}, {"id": "63b0f035-efec-48c5-b48b-36d395f6505d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.945163+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, motorcycles, and buses. Pedestrians are also visible, crossing the intersection. The road surface is wet, but there are no significant puddles or standing water.", "snapshot": {"id": "9a272d51-c008-4f0a-8bc8-469d02666f87", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/9a272d51-c008-4f0a-8bc8-469d02666f87.png", "timestamp": "2024-02-15T20:52:32.689094+00:00"}}, {"id": "3a1d5bcc-9b8b-4c82-8b2e-d79a47750eb2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.737937+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9a272d51-c008-4f0a-8bc8-469d02666f87", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/9a272d51-c008-4f0a-8bc8-469d02666f87.png", "timestamp": "2024-02-15T20:52:32.689094+00:00"}}, {"id": "806e6ac9-253e-4cf7-b069-6d7c68dd17c0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.834714+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move without significant difficulty. Pedestrians are also able to cross the intersection without any issues.", "snapshot": {"id": "9a272d51-c008-4f0a-8bc8-469d02666f87", "camera_id": "001152", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001152/9a272d51-c008-4f0a-8bc8-469d02666f87.png", "timestamp": "2024-02-15T20:52:32.689094+00:00"}}]}, {"id": "000528", "name": "ESTR. DO CAFUND\u00c1 X ESTR. MERINGUAVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914204, "longitude": -43.375713, "objects": ["image_description", "water_level", "rain", "image_corrupted", "road_blockade", "traffic"], "identifications": [{"id": "378c4356-3b4a-4c87-a650-70468e52e2c5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.822745+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "325404c7-bbae-438e-9f04-d2733d543329", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/325404c7-bbae-438e-9f04-d2733d543329.png", "timestamp": "2024-02-15T20:30:08.558073+00:00"}}, {"id": "8c80a858-8da1-4c48-9034-a25c5792f523", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.586788+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move freely without any major delays.", "snapshot": {"id": "325404c7-bbae-438e-9f04-d2733d543329", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/325404c7-bbae-438e-9f04-d2733d543329.png", "timestamp": "2024-02-15T20:30:08.558073+00:00"}}, {"id": "1344c8e0-bb1d-4f7c-8226-aea79df76411", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.793373+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles visible. The rain appears to have recently stopped, as the road is not heavily flooded.", "snapshot": {"id": "325404c7-bbae-438e-9f04-d2733d543329", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/325404c7-bbae-438e-9f04-d2733d543329.png", "timestamp": "2024-02-15T20:30:08.558073+00:00"}}, {"id": "b229e0c5-4811-43a1-bc3a-67277a25f435", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.103587+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "325404c7-bbae-438e-9f04-d2733d543329", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/325404c7-bbae-438e-9f04-d2733d543329.png", "timestamp": "2024-02-15T20:30:08.558073+00:00"}}, {"id": "389f80f0-46d2-4e57-bffb-4efb160af3cc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.338594+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some small puddles, but they are not deep enough to impede traffic.", "snapshot": {"id": "325404c7-bbae-438e-9f04-d2733d543329", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/325404c7-bbae-438e-9f04-d2733d543329.png", "timestamp": "2024-02-15T20:30:08.558073+00:00"}}, {"id": "decb7d94-76c5-4849-9ceb-8d234beda430", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.612821+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a slight bend. It is daytime, and the weather appears to be overcast. There are several vehicles on the road, including cars and a bus. The road surface is wet from recent rain, and there are some small puddles.", "snapshot": {"id": "325404c7-bbae-438e-9f04-d2733d543329", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/325404c7-bbae-438e-9f04-d2733d543329.png", "timestamp": "2024-02-15T20:30:08.558073+00:00"}}, {"id": "6700dad9-7c9c-4bb4-8189-8605f0a8859c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.811493+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9.png", "timestamp": "2024-02-15T20:37:38.154764+00:00"}}, {"id": "2fc16a68-8614-4200-b4c9-bbd21e8417de", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.383620+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry.", "snapshot": {"id": "737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9.png", "timestamp": "2024-02-15T20:37:38.154764+00:00"}}, {"id": "34b8a78a-b36f-4870-b232-505d1c3621d1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.496485+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9.png", "timestamp": "2024-02-15T20:37:38.154764+00:00"}}, {"id": "c61c67a9-b008-470d-8f05-e437963c70c4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.565806+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades present. Traffic is able to flow freely in both directions.", "snapshot": {"id": "737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9.png", "timestamp": "2024-02-15T20:37:38.154764+00:00"}}, {"id": "458e1e7f-a05f-4bd1-b84d-737a7abd1900", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.165653+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major disruptions or congestion. Vehicles are able to navigate the wet road conditions without difficulty.", "snapshot": {"id": "737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9.png", "timestamp": "2024-02-15T20:37:38.154764+00:00"}}, {"id": "292b8415-2f9c-4eed-ae35-2185a9b96d97", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.123004+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and foliage in the background. The road surface is wet from recent rain, with small puddles scattered throughout. Traffic appears to be moderate, with cars moving steadily in both directions. There are no visible obstructions or hazards on the road.", "snapshot": {"id": "737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/737b2c3a-4359-4ecc-bc17-d13c3bb3dfa9.png", "timestamp": "2024-02-15T20:37:38.154764+00:00"}}, {"id": "dbad854b-b9b8-44d1-b866-9eb18e7a7473", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.359974+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "78f34cc8-9cfd-4fc4-9a34-f593af3b1b45", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/78f34cc8-9cfd-4fc4-9a34-f593af3b1b45.png", "timestamp": "2024-02-15T20:35:08.197286+00:00"}}, {"id": "c329ca4b-dc7d-41e7-82be-7ecc2184a83d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.846010+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "78f34cc8-9cfd-4fc4-9a34-f593af3b1b45", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/78f34cc8-9cfd-4fc4-9a34-f593af3b1b45.png", "timestamp": "2024-02-15T20:35:08.197286+00:00"}}, {"id": "67f12a9a-0e06-4889-b429-82a6b3bede86", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.591255+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "78f34cc8-9cfd-4fc4-9a34-f593af3b1b45", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/78f34cc8-9cfd-4fc4-9a34-f593af3b1b45.png", "timestamp": "2024-02-15T20:35:08.197286+00:00"}}, {"id": "650a0df9-72cf-42a3-aa13-6d0e11350080", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.326854+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "78f34cc8-9cfd-4fc4-9a34-f593af3b1b45", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/78f34cc8-9cfd-4fc4-9a34-f593af3b1b45.png", "timestamp": "2024-02-15T20:35:08.197286+00:00"}}, {"id": "8b37a15d-fb5d-4350-bad7-9434a87c880f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.788267+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "78f34cc8-9cfd-4fc4-9a34-f593af3b1b45", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/78f34cc8-9cfd-4fc4-9a34-f593af3b1b45.png", "timestamp": "2024-02-15T20:35:08.197286+00:00"}}, {"id": "245279d3-b8b3-404c-b294-c273911ea5a6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.409627+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "78f34cc8-9cfd-4fc4-9a34-f593af3b1b45", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/78f34cc8-9cfd-4fc4-9a34-f593af3b1b45.png", "timestamp": "2024-02-15T20:35:08.197286+00:00"}}, {"id": "8b099b3d-3e61-4329-8f18-df451402692e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:25.239093+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and foliage in the background.", "snapshot": {"id": "6f0072b9-90eb-44e9-849b-6162325e40c2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/6f0072b9-90eb-44e9-849b-6162325e40c2.png", "timestamp": "2024-02-15T20:40:10.991281+00:00"}}, {"id": "1e9c4ca9-5f28-4149-b941-84afa8f96c99", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:25.949779+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "6f0072b9-90eb-44e9-849b-6162325e40c2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/6f0072b9-90eb-44e9-849b-6162325e40c2.png", "timestamp": "2024-02-15T20:40:10.991281+00:00"}}, {"id": "76bd4b29-46da-4a33-b0b3-344f2380990c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:27.219505+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "6f0072b9-90eb-44e9-849b-6162325e40c2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/6f0072b9-90eb-44e9-849b-6162325e40c2.png", "timestamp": "2024-02-15T20:40:10.991281+00:00"}}, {"id": "7f82d16a-e825-4094-9888-403cc99b1578", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:27.790918+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "6f0072b9-90eb-44e9-849b-6162325e40c2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/6f0072b9-90eb-44e9-849b-6162325e40c2.png", "timestamp": "2024-02-15T20:40:10.991281+00:00"}}, {"id": "4102505a-bf27-4d12-8c1e-c38ef160e0bc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.534588+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "6f0072b9-90eb-44e9-849b-6162325e40c2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/6f0072b9-90eb-44e9-849b-6162325e40c2.png", "timestamp": "2024-02-15T20:40:10.991281+00:00"}}, {"id": "a060dffd-eef4-42f0-9950-d4d3e06c82a3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.664788+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6f0072b9-90eb-44e9-849b-6162325e40c2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/6f0072b9-90eb-44e9-849b-6162325e40c2.png", "timestamp": "2024-02-15T20:40:10.991281+00:00"}}, {"id": "b4076d79-20af-45b4-88d2-46fba61ff0e1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.313617+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars, buses, and motorcycles. The road is lined with trees and buildings.", "snapshot": {"id": "1c404080-0330-40a7-b6d5-9b09b5630f0d", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/1c404080-0330-40a7-b6d5-9b09b5630f0d.png", "timestamp": "2024-02-15T20:45:01.090364+00:00"}}, {"id": "de2c68f2-f2cf-4718-8f65-cce820ba7b05", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.846205+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "1c404080-0330-40a7-b6d5-9b09b5630f0d", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/1c404080-0330-40a7-b6d5-9b09b5630f0d.png", "timestamp": "2024-02-15T20:45:01.090364+00:00"}}, {"id": "0d5d40bf-6a75-43f2-82b5-c222ff059004", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.515302+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "1c404080-0330-40a7-b6d5-9b09b5630f0d", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/1c404080-0330-40a7-b6d5-9b09b5630f0d.png", "timestamp": "2024-02-15T20:45:01.090364+00:00"}}, {"id": "9dceac38-46e4-4a9c-b5a0-b55134c1d9a7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.501014+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "1c404080-0330-40a7-b6d5-9b09b5630f0d", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/1c404080-0330-40a7-b6d5-9b09b5630f0d.png", "timestamp": "2024-02-15T20:45:01.090364+00:00"}}, {"id": "0872a7ea-6283-430f-b515-897d7c0c99a0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.072936+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1c404080-0330-40a7-b6d5-9b09b5630f0d", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/1c404080-0330-40a7-b6d5-9b09b5630f0d.png", "timestamp": "2024-02-15T20:45:01.090364+00:00"}}, {"id": "42026733-b86c-4f5e-8971-807a1dcf6034", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.128285+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "1c404080-0330-40a7-b6d5-9b09b5630f0d", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/1c404080-0330-40a7-b6d5-9b09b5630f0d.png", "timestamp": "2024-02-15T20:45:01.090364+00:00"}}, {"id": "53ca3aca-9252-41ac-a983-df82a7e60687", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.837022+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with various vehicles, buildings, and road signs.", "snapshot": {"id": "8a21194f-0dba-49a9-93f4-0379315875d1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/8a21194f-0dba-49a9-93f4-0379315875d1.png", "timestamp": "2024-02-15T20:47:25.906850+00:00"}}, {"id": "5458cbf8-3dc2-4fc4-9b0d-30e5df940d56", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.498818+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8a21194f-0dba-49a9-93f4-0379315875d1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/8a21194f-0dba-49a9-93f4-0379315875d1.png", "timestamp": "2024-02-15T20:47:25.906850+00:00"}}, {"id": "4af5ad0f-f91e-43db-8ca1-f74048c3c0bf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.283579+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road.", "snapshot": {"id": "8a21194f-0dba-49a9-93f4-0379315875d1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/8a21194f-0dba-49a9-93f4-0379315875d1.png", "timestamp": "2024-02-15T20:47:25.906850+00:00"}}, {"id": "ac6089cf-4959-406b-a192-cbddf329b1a2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.564335+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "8a21194f-0dba-49a9-93f4-0379315875d1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/8a21194f-0dba-49a9-93f4-0379315875d1.png", "timestamp": "2024-02-15T20:47:25.906850+00:00"}}, {"id": "a3b07d94-12d4-4251-a4f7-46c7658f92ed", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.911985+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving steadily through the intersection.", "snapshot": {"id": "8a21194f-0dba-49a9-93f4-0379315875d1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/8a21194f-0dba-49a9-93f4-0379315875d1.png", "timestamp": "2024-02-15T20:47:25.906850+00:00"}}, {"id": "0fff9e4d-0b62-4548-9589-079c20ecc89b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.267134+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "8a21194f-0dba-49a9-93f4-0379315875d1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/8a21194f-0dba-49a9-93f4-0379315875d1.png", "timestamp": "2024-02-15T20:47:25.906850+00:00"}}, {"id": "920e68db-cd01-4aaa-8773-da08f1d13271", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:53.254604+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "0b053174-e288-4bb7-8738-f46c4992b53e", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/0b053174-e288-4bb7-8738-f46c4992b53e.png", "timestamp": "2024-02-15T20:42:39.754949+00:00"}}, {"id": "c3e8761c-604b-4873-a04b-744de8d1b742", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:53.900565+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "0b053174-e288-4bb7-8738-f46c4992b53e", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/0b053174-e288-4bb7-8738-f46c4992b53e.png", "timestamp": "2024-02-15T20:42:39.754949+00:00"}}, {"id": "73d331a1-6d96-414a-b070-657d4f57cc1d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.876368+00:00", "label": "true", "label_explanation": "There is some light rain falling, but the road surface is still mostly dry.", "snapshot": {"id": "0b053174-e288-4bb7-8738-f46c4992b53e", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/0b053174-e288-4bb7-8738-f46c4992b53e.png", "timestamp": "2024-02-15T20:42:39.754949+00:00"}}, {"id": "6e57d861-a6b8-4808-a1bd-5bb5643c0e62", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.658453+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "0b053174-e288-4bb7-8738-f46c4992b53e", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/0b053174-e288-4bb7-8738-f46c4992b53e.png", "timestamp": "2024-02-15T20:42:39.754949+00:00"}}, {"id": "8613620c-eef8-4bd2-b30d-4a884247a498", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.375530+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0b053174-e288-4bb7-8738-f46c4992b53e", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/0b053174-e288-4bb7-8738-f46c4992b53e.png", "timestamp": "2024-02-15T20:42:39.754949+00:00"}}, {"id": "d79a3b36-d49a-4523-8729-2835d61f3f2e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.164257+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road.", "snapshot": {"id": "0b053174-e288-4bb7-8738-f46c4992b53e", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/0b053174-e288-4bb7-8738-f46c4992b53e.png", "timestamp": "2024-02-15T20:42:39.754949+00:00"}}, {"id": "0c798cb1-b336-4bac-91c3-72fe87fc529b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:36.427651+00:00", "label": "null", "label_explanation": "There is no image to describe as the image is corrupted.", "snapshot": {"id": "a481339d-c891-409b-977b-ac4ecad9b287", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/a481339d-c891-409b-977b-ac4ecad9b287.png", "timestamp": "2024-02-15T20:32:26.228038+00:00"}}, {"id": "c41dceef-b4a4-4658-9a9f-09e4446a6c54", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:35.852146+00:00", "label": "true", "label_explanation": "The image is corrupted and contains no useful information. The entire image is a uniform grey color with no visible features or details.", "snapshot": {"id": "a481339d-c891-409b-977b-ac4ecad9b287", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/a481339d-c891-409b-977b-ac4ecad9b287.png", "timestamp": "2024-02-15T20:32:26.228038+00:00"}}, {"id": "a15b9b6b-f269-4a44-8387-041d8ac51527", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.511548+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "defa07d8-184e-45cf-b7ef-babd4ec95552", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/defa07d8-184e-45cf-b7ef-babd4ec95552.png", "timestamp": "2024-02-15T20:52:13.063394+00:00"}}, {"id": "1a5c0848-45bf-4ba8-b360-9f0fffa66249", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.060441+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "defa07d8-184e-45cf-b7ef-babd4ec95552", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/defa07d8-184e-45cf-b7ef-babd4ec95552.png", "timestamp": "2024-02-15T20:52:13.063394+00:00"}}, {"id": "0734698c-b195-4e52-b6fc-cb7a28e4d03e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.273717+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "defa07d8-184e-45cf-b7ef-babd4ec95552", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/defa07d8-184e-45cf-b7ef-babd4ec95552.png", "timestamp": "2024-02-15T20:52:13.063394+00:00"}}, {"id": "e960b192-de7d-44f7-ab0c-0fb6c76a82f2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.839606+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "defa07d8-184e-45cf-b7ef-babd4ec95552", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/defa07d8-184e-45cf-b7ef-babd4ec95552.png", "timestamp": "2024-02-15T20:52:13.063394+00:00"}}, {"id": "0a719134-46f0-466c-af2e-07ee62a66714", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.831196+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "defa07d8-184e-45cf-b7ef-babd4ec95552", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/defa07d8-184e-45cf-b7ef-babd4ec95552.png", "timestamp": "2024-02-15T20:52:13.063394+00:00"}}, {"id": "ff283401-4a71-466c-a272-52ecc44b6892", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.311674+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "defa07d8-184e-45cf-b7ef-babd4ec95552", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/defa07d8-184e-45cf-b7ef-babd4ec95552.png", "timestamp": "2024-02-15T20:52:13.063394+00:00"}}, {"id": "71bc5c93-5baf-4bde-8135-d238923e1278", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.994605+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2.png", "timestamp": "2024-02-15T20:49:50.787163+00:00"}}, {"id": "38ad7eb7-90ac-4960-a5e1-6e3fb3d89ec0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.625773+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with several vehicles visible. Traffic is moving smoothly.", "snapshot": {"id": "22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2.png", "timestamp": "2024-02-15T20:49:50.787163+00:00"}}, {"id": "77eb31f1-54e8-48d7-803f-4a3d3d8d4143", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.666922+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars and motorcycles. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2.png", "timestamp": "2024-02-15T20:49:50.787163+00:00"}}, {"id": "7f085dad-d89f-4c8a-b566-4bc4eae8c5aa", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.377924+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2.png", "timestamp": "2024-02-15T20:49:50.787163+00:00"}}, {"id": "94ba2653-28a7-4483-b47f-26b60ba0023d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.332258+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2.png", "timestamp": "2024-02-15T20:49:50.787163+00:00"}}, {"id": "22bce87f-3d16-4364-9cdd-82c7ecb6dff0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.908648+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/22b7a4c2-5919-45b3-b8a1-ee0a66ef6ce2.png", "timestamp": "2024-02-15T20:49:50.787163+00:00"}}, {"id": "4416c982-6987-453f-ab97-f959dc40fe1b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.098550+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "fe5625d3-f683-43b0-95a3-2ef448bcefa1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/fe5625d3-f683-43b0-95a3-2ef448bcefa1.png", "timestamp": "2024-02-15T20:54:42.470191+00:00"}}, {"id": "22e19566-8131-4a45-abc2-2d661a1a886b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.357856+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "fe5625d3-f683-43b0-95a3-2ef448bcefa1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/fe5625d3-f683-43b0-95a3-2ef448bcefa1.png", "timestamp": "2024-02-15T20:54:42.470191+00:00"}}, {"id": "0007f889-11e7-4148-a7ee-d642493a979e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.868746+00:00", "label": "low", "label_explanation": "The water level on the road is low, with no significant accumulation of water.", "snapshot": {"id": "fe5625d3-f683-43b0-95a3-2ef448bcefa1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/fe5625d3-f683-43b0-95a3-2ef448bcefa1.png", "timestamp": "2024-02-15T20:54:42.470191+00:00"}}, {"id": "e76530bb-f2cb-4dd2-9c19-1f5b5474fc4c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.530738+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "fe5625d3-f683-43b0-95a3-2ef448bcefa1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/fe5625d3-f683-43b0-95a3-2ef448bcefa1.png", "timestamp": "2024-02-15T20:54:42.470191+00:00"}}, {"id": "f7b62477-1c64-4314-a493-593dee9a9aee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.109761+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection in an urban area. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars and motorcycles. The road surface is wet from recent rain, but there are no significant puddles or standing water. The sidewalks are lined with trees and buildings.", "snapshot": {"id": "fe5625d3-f683-43b0-95a3-2ef448bcefa1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/fe5625d3-f683-43b0-95a3-2ef448bcefa1.png", "timestamp": "2024-02-15T20:54:42.470191+00:00"}}, {"id": "e9f3ae47-9405-4e1c-8710-c693468cefc6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.777741+00:00", "label": "false", "label_explanation": "The image is clear with no visible signs of corruption or data loss.", "snapshot": {"id": "fe5625d3-f683-43b0-95a3-2ef448bcefa1", "camera_id": "000528", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000528/fe5625d3-f683-43b0-95a3-2ef448bcefa1.png", "timestamp": "2024-02-15T20:54:42.470191+00:00"}}]}, {"id": "001530", "name": "R. HADDOCK LOBO 282 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.185/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919879, "longitude": -43.21525, "objects": ["image_corrupted", "image_description", "rain", "road_blockade", "traffic", "water_level"], "identifications": [{"id": "f18aeb7e-83b0-4d79-aa1b-8adfa68db606", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:14.972715+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "48842811-16d7-4914-bc51-7e05e2e7af7b", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/48842811-16d7-4914-bc51-7e05e2e7af7b.png", "timestamp": "2024-02-15T20:29:59.091508+00:00"}}, {"id": "d6e83957-8c85-4668-8814-3344a2f15c74", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:14.721304+00:00", "label": "easy", "label_explanation": "The traffic flow is moderate, with vehicles moving at a steady pace. There are no visible signs of congestion or delays.", "snapshot": {"id": "48842811-16d7-4914-bc51-7e05e2e7af7b", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/48842811-16d7-4914-bc51-7e05e2e7af7b.png", "timestamp": "2024-02-15T20:29:59.091508+00:00"}}, {"id": "eb2830b5-e201-46d6-8fca-530d27373b15", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:14.058287+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "48842811-16d7-4914-bc51-7e05e2e7af7b", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/48842811-16d7-4914-bc51-7e05e2e7af7b.png", "timestamp": "2024-02-15T20:29:59.091508+00:00"}}, {"id": "89338157-9f61-4c05-a928-a555f4f37c41", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:13.557968+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately lit. There are several vehicles on the road, including cars and trucks. The road surface is dry, with no visible signs of water or debris.", "snapshot": {"id": "48842811-16d7-4914-bc51-7e05e2e7af7b", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/48842811-16d7-4914-bc51-7e05e2e7af7b.png", "timestamp": "2024-02-15T20:29:59.091508+00:00"}}, {"id": "38c05304-3ed5-4a19-ba6b-e10fb7f19512", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:14.383049+00:00", "label": "low", "label_explanation": "The water level on the road is low, with no visible signs of flooding or water accumulation.", "snapshot": {"id": "48842811-16d7-4914-bc51-7e05e2e7af7b", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/48842811-16d7-4914-bc51-7e05e2e7af7b.png", "timestamp": "2024-02-15T20:29:59.091508+00:00"}}, {"id": "05daf432-8d41-4ac2-972c-270bf60cf8c2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:13.123578+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "48842811-16d7-4914-bc51-7e05e2e7af7b", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/48842811-16d7-4914-bc51-7e05e2e7af7b.png", "timestamp": "2024-02-15T20:29:59.091508+00:00"}}, {"id": "8b274da0-03ea-45a3-b71d-f8f1d08933eb", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.583222+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "dae55563-4057-464b-af16-a65e96e9c33c", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dae55563-4057-464b-af16-a65e96e9c33c.png", "timestamp": "2024-02-15T20:47:19.876471+00:00"}}, {"id": "a1e30a94-5da5-44d2-90b7-6446e0974b1e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.293451+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "dae55563-4057-464b-af16-a65e96e9c33c", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dae55563-4057-464b-af16-a65e96e9c33c.png", "timestamp": "2024-02-15T20:47:19.876471+00:00"}}, {"id": "80401c88-5e02-4539-a27b-9a61ba234bec", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.028275+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "dae55563-4057-464b-af16-a65e96e9c33c", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dae55563-4057-464b-af16-a65e96e9c33c.png", "timestamp": "2024-02-15T20:47:19.876471+00:00"}}, {"id": "567f32a9-fdbc-402e-83b9-12715f0093d7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:30.689905+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "dae55563-4057-464b-af16-a65e96e9c33c", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dae55563-4057-464b-af16-a65e96e9c33c.png", "timestamp": "2024-02-15T20:47:19.876471+00:00"}}, {"id": "0e7e4a6b-ebb2-4102-b9cd-0bce757a18dc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:30.426145+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars, buses, and motorcycles. The road is lined with trees and buildings.", "snapshot": {"id": "dae55563-4057-464b-af16-a65e96e9c33c", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dae55563-4057-464b-af16-a65e96e9c33c.png", "timestamp": "2024-02-15T20:47:19.876471+00:00"}}, {"id": "d2cfc0e0-77c8-4098-abaf-7bd71aeddbc1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:30.188689+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "dae55563-4057-464b-af16-a65e96e9c33c", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dae55563-4057-464b-af16-a65e96e9c33c.png", "timestamp": "2024-02-15T20:47:19.876471+00:00"}}, {"id": "0ce3a8b6-08fe-4b8f-a9b7-1552d0a6e8e2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.500419+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "2eed8819-a745-4846-a6c1-c79b7b9feee8", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/2eed8819-a745-4846-a6c1-c79b7b9feee8.png", "timestamp": "2024-02-15T20:35:07.324166+00:00"}}, {"id": "f6791aa9-8ce9-4940-a544-11b868e31c23", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.090372+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2eed8819-a745-4846-a6c1-c79b7b9feee8", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/2eed8819-a745-4846-a6c1-c79b7b9feee8.png", "timestamp": "2024-02-15T20:35:07.324166+00:00"}}, {"id": "f60f7f49-0ae3-4c81-8173-4e0eeb170782", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.482661+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy enough to cause any significant traffic disruptions.", "snapshot": {"id": "2eed8819-a745-4846-a6c1-c79b7b9feee8", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/2eed8819-a745-4846-a6c1-c79b7b9feee8.png", "timestamp": "2024-02-15T20:35:07.324166+00:00"}}, {"id": "167ce287-141d-4177-94c2-baba54c3ae8e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.983033+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays. Vehicles are able to navigate the road without any difficulty.", "snapshot": {"id": "2eed8819-a745-4846-a6c1-c79b7b9feee8", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/2eed8819-a745-4846-a6c1-c79b7b9feee8.png", "timestamp": "2024-02-15T20:35:07.324166+00:00"}}, {"id": "454b164d-639d-4912-b60b-95bdb0b8d282", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.093091+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "2eed8819-a745-4846-a6c1-c79b7b9feee8", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/2eed8819-a745-4846-a6c1-c79b7b9feee8.png", "timestamp": "2024-02-15T20:35:07.324166+00:00"}}, {"id": "db1e2a16-46f6-487b-b4ec-de5854eefece", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.729338+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles parked on either side of the road, and a few trees can be seen lining the street.", "snapshot": {"id": "2eed8819-a745-4846-a6c1-c79b7b9feee8", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/2eed8819-a745-4846-a6c1-c79b7b9feee8.png", "timestamp": "2024-02-15T20:35:07.324166+00:00"}}, {"id": "c727be48-4327-4fd8-b3b9-ded579a432e8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:47.414854+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "ef5d9704-47f5-478a-9b54-28e799ea86f6", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ef5d9704-47f5-478a-9b54-28e799ea86f6.png", "timestamp": "2024-02-15T20:37:35.653941+00:00"}}, {"id": "8e85de96-cfb5-4985-8147-7dadca001d06", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:46.470966+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ef5d9704-47f5-478a-9b54-28e799ea86f6", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ef5d9704-47f5-478a-9b54-28e799ea86f6.png", "timestamp": "2024-02-15T20:37:35.653941+00:00"}}, {"id": "44d0eb09-a9d8-4773-b560-2f52b2a20dfa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:48.796204+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "ef5d9704-47f5-478a-9b54-28e799ea86f6", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ef5d9704-47f5-478a-9b54-28e799ea86f6.png", "timestamp": "2024-02-15T20:37:35.653941+00:00"}}, {"id": "d105a2c9-972e-4844-a214-fc67fe1c012d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:47.807000+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and the road surface is still visible.", "snapshot": {"id": "ef5d9704-47f5-478a-9b54-28e799ea86f6", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ef5d9704-47f5-478a-9b54-28e799ea86f6.png", "timestamp": "2024-02-15T20:37:35.653941+00:00"}}, {"id": "9a3c2e19-c50d-4e21-bad6-74f5c3b37a27", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:46.940640+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several cars parked on the side of the road, and a few trees can be seen lining the street.", "snapshot": {"id": "ef5d9704-47f5-478a-9b54-28e799ea86f6", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ef5d9704-47f5-478a-9b54-28e799ea86f6.png", "timestamp": "2024-02-15T20:37:35.653941+00:00"}}, {"id": "c7e6e71c-6d7a-422a-b50d-f814e502e7b1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:48.419068+00:00", "label": "easy", "label_explanation": "The traffic is light, and there are no major obstructions on the road. Vehicles can move freely.", "snapshot": {"id": "ef5d9704-47f5-478a-9b54-28e799ea86f6", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ef5d9704-47f5-478a-9b54-28e799ea86f6.png", "timestamp": "2024-02-15T20:37:35.653941+00:00"}}, {"id": "5d655918-b956-4967-8b1c-8ae0e8e53ff0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.906211+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "3f1e2e87-d483-4c47-98f8-96bd909468a4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/3f1e2e87-d483-4c47-98f8-96bd909468a4.png", "timestamp": "2024-02-15T20:40:06.069189+00:00"}}, {"id": "ceb59ba4-1e3f-43f1-b875-68ac346bfd74", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:19.612107+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "3f1e2e87-d483-4c47-98f8-96bd909468a4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/3f1e2e87-d483-4c47-98f8-96bd909468a4.png", "timestamp": "2024-02-15T20:40:06.069189+00:00"}}, {"id": "32b742ce-f80e-4548-a267-7ca7d74402ef", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.395626+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "3f1e2e87-d483-4c47-98f8-96bd909468a4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/3f1e2e87-d483-4c47-98f8-96bd909468a4.png", "timestamp": "2024-02-15T20:40:06.069189+00:00"}}, {"id": "77051aa7-d9a9-4ae4-a88e-e066bfd68231", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:20.627894+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "3f1e2e87-d483-4c47-98f8-96bd909468a4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/3f1e2e87-d483-4c47-98f8-96bd909468a4.png", "timestamp": "2024-02-15T20:40:06.069189+00:00"}}, {"id": "ab8910eb-b4bb-477e-bde2-c78a05168754", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:18.726937+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars, buses, and motorcycles. The road is lined with trees and buildings.", "snapshot": {"id": "3f1e2e87-d483-4c47-98f8-96bd909468a4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/3f1e2e87-d483-4c47-98f8-96bd909468a4.png", "timestamp": "2024-02-15T20:40:06.069189+00:00"}}, {"id": "8542baed-5510-4c27-8377-230ac3d190d6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:17.681512+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of data loss or corruption.", "snapshot": {"id": "3f1e2e87-d483-4c47-98f8-96bd909468a4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/3f1e2e87-d483-4c47-98f8-96bd909468a4.png", "timestamp": "2024-02-15T20:40:06.069189+00:00"}}, {"id": "bf1ba741-eb7c-4d27-82fe-13e0ebb6a012", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:45.944922+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "dafe2d2d-ce78-41cb-832c-a73365a7f4cd", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dafe2d2d-ce78-41cb-832c-a73365a7f4cd.png", "timestamp": "2024-02-15T20:42:33.614470+00:00"}}, {"id": "2132022a-b850-4c5f-b68f-9bb7500592ca", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:45.716470+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a traffic light at the intersection. There are several vehicles on the road, including cars, buses, and motorcycles. There are also trees and buildings in the background.", "snapshot": {"id": "dafe2d2d-ce78-41cb-832c-a73365a7f4cd", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dafe2d2d-ce78-41cb-832c-a73365a7f4cd.png", "timestamp": "2024-02-15T20:42:33.614470+00:00"}}, {"id": "72f87ae5-59e4-4df4-b747-a5c6a15e4d8b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:45.345229+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "dafe2d2d-ce78-41cb-832c-a73365a7f4cd", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dafe2d2d-ce78-41cb-832c-a73365a7f4cd.png", "timestamp": "2024-02-15T20:42:33.614470+00:00"}}, {"id": "7eb19943-34df-4034-b03f-0cc8a3ca457e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.060636+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable in both directions.", "snapshot": {"id": "dafe2d2d-ce78-41cb-832c-a73365a7f4cd", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dafe2d2d-ce78-41cb-832c-a73365a7f4cd.png", "timestamp": "2024-02-15T20:42:33.614470+00:00"}}, {"id": "8dea8242-9c8a-40ad-b953-57202ca394e7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:46.831790+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "dafe2d2d-ce78-41cb-832c-a73365a7f4cd", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dafe2d2d-ce78-41cb-832c-a73365a7f4cd.png", "timestamp": "2024-02-15T20:42:33.614470+00:00"}}, {"id": "01c22486-c4b9-4a1e-ae2c-8ac9525f0f56", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:46.295371+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not cover a significant portion of the road surface.", "snapshot": {"id": "dafe2d2d-ce78-41cb-832c-a73365a7f4cd", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/dafe2d2d-ce78-41cb-832c-a73365a7f4cd.png", "timestamp": "2024-02-15T20:42:33.614470+00:00"}}, {"id": "34d2d523-fd17-4955-af6b-2db9e1363abc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.278091+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "41d8d834-90f7-4fe5-904d-896c91391d58", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/41d8d834-90f7-4fe5-904d-896c91391d58.png", "timestamp": "2024-02-15T20:44:57.387391+00:00"}}, {"id": "7386d9e8-aa85-494c-a8bf-e73463186acf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.616963+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "41d8d834-90f7-4fe5-904d-896c91391d58", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/41d8d834-90f7-4fe5-904d-896c91391d58.png", "timestamp": "2024-02-15T20:44:57.387391+00:00"}}, {"id": "ad035095-202c-4310-aa3d-3f38b0485f9b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.861878+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant problems for traffic.", "snapshot": {"id": "41d8d834-90f7-4fe5-904d-896c91391d58", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/41d8d834-90f7-4fe5-904d-896c91391d58.png", "timestamp": "2024-02-15T20:44:57.387391+00:00"}}, {"id": "fd15f96c-569a-40a9-b980-09d95e234662", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.639075+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. The rain is not heavy, as the road is still passable for vehicles.", "snapshot": {"id": "41d8d834-90f7-4fe5-904d-896c91391d58", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/41d8d834-90f7-4fe5-904d-896c91391d58.png", "timestamp": "2024-02-15T20:44:57.387391+00:00"}}, {"id": "462f9d4a-3552-469b-bc83-dc67dd833428", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.387931+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars, buses, and trucks. The road is lined with trees and buildings.", "snapshot": {"id": "41d8d834-90f7-4fe5-904d-896c91391d58", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/41d8d834-90f7-4fe5-904d-896c91391d58.png", "timestamp": "2024-02-15T20:44:57.387391+00:00"}}, {"id": "4a1d25c5-efe7-4b0d-a157-ac9f9d23ae89", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.138560+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "41d8d834-90f7-4fe5-904d-896c91391d58", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/41d8d834-90f7-4fe5-904d-896c91391d58.png", "timestamp": "2024-02-15T20:44:57.387391+00:00"}}, {"id": "d5c5cc43-4ea3-436d-8f11-d5bff509c2f2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:47.942931+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving at a steady pace. There are no major obstructions or congestion visible in the image.", "snapshot": {"id": "440cb258-5295-4178-b409-dc8a13dc98b4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/440cb258-5295-4178-b409-dc8a13dc98b4.png", "timestamp": "2024-02-15T20:32:28.473902+00:00"}}, {"id": "55c9d443-75ab-4511-b412-e1db597aaeb2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.034199+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road with various vehicles, including a bus, cars, and a motorcycle. Pedestrians are also visible on the sidewalk, and there are trees and buildings in the background.", "snapshot": {"id": "440cb258-5295-4178-b409-dc8a13dc98b4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/440cb258-5295-4178-b409-dc8a13dc98b4.png", "timestamp": "2024-02-15T20:32:28.473902+00:00"}}, {"id": "502967df-d08c-4d21-a796-8fcb638923ca", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.847193+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also small puddles of water on the road.", "snapshot": {"id": "440cb258-5295-4178-b409-dc8a13dc98b4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/440cb258-5295-4178-b409-dc8a13dc98b4.png", "timestamp": "2024-02-15T20:32:28.473902+00:00"}}, {"id": "aab30bf8-1130-4ee3-bedf-2ae32587c2d9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.844536+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "440cb258-5295-4178-b409-dc8a13dc98b4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/440cb258-5295-4178-b409-dc8a13dc98b4.png", "timestamp": "2024-02-15T20:32:28.473902+00:00"}}, {"id": "d7286322-2de1-4712-bc0f-354659b90338", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:46.778785+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry.", "snapshot": {"id": "440cb258-5295-4178-b409-dc8a13dc98b4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/440cb258-5295-4178-b409-dc8a13dc98b4.png", "timestamp": "2024-02-15T20:32:28.473902+00:00"}}, {"id": "6906b809-66df-454f-87b2-5f9d28c2b69b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:44.089160+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "440cb258-5295-4178-b409-dc8a13dc98b4", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/440cb258-5295-4178-b409-dc8a13dc98b4.png", "timestamp": "2024-02-15T20:32:28.473902+00:00"}}, {"id": "5d552008-bf84-49d3-a314-f028623727b8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:56.870905+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "ad9e61db-20d7-42e2-b8b8-334738327d40", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ad9e61db-20d7-42e2-b8b8-334738327d40.png", "timestamp": "2024-02-15T20:49:46.124765+00:00"}}, {"id": "708b455c-4cbc-4960-b6d0-ec00390accc4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:56.662409+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both vehicular and pedestrian traffic. The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "ad9e61db-20d7-42e2-b8b8-334738327d40", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ad9e61db-20d7-42e2-b8b8-334738327d40.png", "timestamp": "2024-02-15T20:49:46.124765+00:00"}}, {"id": "0620b194-91f8-41f2-813a-1a26c562f8da", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:57.765772+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible.", "snapshot": {"id": "ad9e61db-20d7-42e2-b8b8-334738327d40", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ad9e61db-20d7-42e2-b8b8-334738327d40.png", "timestamp": "2024-02-15T20:49:46.124765+00:00"}}, {"id": "701b522a-e9ad-470e-bf72-e8c4498873bb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:57.369167+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "ad9e61db-20d7-42e2-b8b8-334738327d40", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ad9e61db-20d7-42e2-b8b8-334738327d40.png", "timestamp": "2024-02-15T20:49:46.124765+00:00"}}, {"id": "f287cf9a-6b1e-4a03-b5ba-021c08693ff2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:57.179875+00:00", "label": "low", "label_explanation": "There is no standing water or flooding on the road surface.", "snapshot": {"id": "ad9e61db-20d7-42e2-b8b8-334738327d40", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ad9e61db-20d7-42e2-b8b8-334738327d40.png", "timestamp": "2024-02-15T20:49:46.124765+00:00"}}, {"id": "7ac627e1-943f-4317-9c48-a86cdedc18f3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:56.354865+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ad9e61db-20d7-42e2-b8b8-334738327d40", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/ad9e61db-20d7-42e2-b8b8-334738327d40.png", "timestamp": "2024-02-15T20:49:46.124765+00:00"}}, {"id": "c06c661d-c80b-4b4b-afc4-0f4c4d96cac7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.093841+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a reasonable speed. There are no major obstructions or delays visible.", "snapshot": {"id": "c4ea6662-e730-4493-bae0-73d1382f8873", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/c4ea6662-e730-4493-bae0-73d1382f8873.png", "timestamp": "2024-02-15T20:52:10.967965+00:00"}}, {"id": "49229c83-6391-463b-9d8f-5307576d59ce", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.315114+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and passable in both directions.", "snapshot": {"id": "c4ea6662-e730-4493-bae0-73d1382f8873", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/c4ea6662-e730-4493-bae0-73d1382f8873.png", "timestamp": "2024-02-15T20:52:10.967965+00:00"}}, {"id": "6860db18-90cf-45ab-a1ad-ad2f5a4db9c9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.237995+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for each direction separated by a median. The road surface is paved and in good condition, with visible lane markings. There are several trees on either side of the road, and buildings and other structures can be seen in the background.", "snapshot": {"id": "c4ea6662-e730-4493-bae0-73d1382f8873", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/c4ea6662-e730-4493-bae0-73d1382f8873.png", "timestamp": "2024-02-15T20:52:10.967965+00:00"}}, {"id": "08bc2227-d209-44cc-9e38-8b586e3cb781", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.474813+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water accumulation.", "snapshot": {"id": "c4ea6662-e730-4493-bae0-73d1382f8873", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/c4ea6662-e730-4493-bae0-73d1382f8873.png", "timestamp": "2024-02-15T20:52:10.967965+00:00"}}, {"id": "ede48cad-cee1-424a-bdec-3bc7cf2efcbc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.818792+00:00", "label": "low", "label_explanation": "The water level on the road is low. There is no visible water on the road surface.", "snapshot": {"id": "c4ea6662-e730-4493-bae0-73d1382f8873", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/c4ea6662-e730-4493-bae0-73d1382f8873.png", "timestamp": "2024-02-15T20:52:10.967965+00:00"}}, {"id": "4d90a311-cb42-44eb-bceb-11589d3a0303", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:21.985357+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c4ea6662-e730-4493-bae0-73d1382f8873", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/c4ea6662-e730-4493-bae0-73d1382f8873.png", "timestamp": "2024-02-15T20:52:10.967965+00:00"}}, {"id": "19e0a020-a573-44cd-8c8b-1cd1c8cdd9f6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:45.509250+00:00", "label": "free", "label_explanation": "There are no road blockades present in the image. The road is completely clear, and there are no obstructions to traffic flow.", "snapshot": {"id": "a0722b78-5d2f-4e3b-a732-1affb22d11d9", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/a0722b78-5d2f-4e3b-a732-1affb22d11d9.png", "timestamp": "2024-02-15T20:54:32.579365+00:00"}}, {"id": "640990f8-ff4c-4c97-93de-46794cb7f69e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:45.022162+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several cars on the road, but they are all moving at a steady pace. There are no visible signs of congestion or gridlock.", "snapshot": {"id": "a0722b78-5d2f-4e3b-a732-1affb22d11d9", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/a0722b78-5d2f-4e3b-a732-1affb22d11d9.png", "timestamp": "2024-02-15T20:54:32.579365+00:00"}}, {"id": "48055669-229e-4d0d-b58b-3b4bd612d264", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:44.710411+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "a0722b78-5d2f-4e3b-a732-1affb22d11d9", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/a0722b78-5d2f-4e3b-a732-1affb22d11d9.png", "timestamp": "2024-02-15T20:54:32.579365+00:00"}}, {"id": "290f54f3-2ebf-4bc3-a13f-53e630ddcb1f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:44.235703+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water on the road.", "snapshot": {"id": "a0722b78-5d2f-4e3b-a732-1affb22d11d9", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/a0722b78-5d2f-4e3b-a732-1affb22d11d9.png", "timestamp": "2024-02-15T20:54:32.579365+00:00"}}, {"id": "5ccc6c84-5986-4cbe-821e-ee43a2609b45", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:43.466779+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a0722b78-5d2f-4e3b-a732-1affb22d11d9", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/a0722b78-5d2f-4e3b-a732-1affb22d11d9.png", "timestamp": "2024-02-15T20:54:32.579365+00:00"}}, {"id": "251ab9b2-fad4-467d-a415-ce97685c4fe1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:43.955803+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for each direction separated by a central median. The road surface is paved and in good condition, with no visible potholes or cracks. There are several trees on either side of the road, and buildings and other structures can be seen in the background.", "snapshot": {"id": "a0722b78-5d2f-4e3b-a732-1affb22d11d9", "camera_id": "001530", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001530/a0722b78-5d2f-4e3b-a732-1affb22d11d9.png", "timestamp": "2024-02-15T20:54:32.579365+00:00"}}]}, {"id": "000326", "name": "RUA PROF. ABELARDO L\u00d3BO X R. PROF. SALDANHA X PRA\u00c7A MARCOS TAMOYO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96144335, "longitude": -43.20486169, "objects": ["image_corrupted", "rain", "water_level", "image_description", "traffic", "road_blockade"], "identifications": [{"id": "08984d68-bb63-4962-9ac1-d95b1c489921", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.600367+00:00", "label": "null", "label_explanation": "The image captures a section of an urban road with a few cars parked on the side. Trees and foliage line the street, and buildings are visible in the background. The weather appears to be overcast, and the road surface is wet from recent rain.", "snapshot": {"id": "421bcb87-a148-4609-a83e-4f5b11bf6d30", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/421bcb87-a148-4609-a83e-4f5b11bf6d30.png", "timestamp": "2024-02-15T20:30:32.254148+00:00"}}, {"id": "0180f042-07e6-40e5-814a-a3e750e100bc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.371545+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "421bcb87-a148-4609-a83e-4f5b11bf6d30", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/421bcb87-a148-4609-a83e-4f5b11bf6d30.png", "timestamp": "2024-02-15T20:30:32.254148+00:00"}}, {"id": "9200b18e-8ab0-40d4-b1ae-68aa919c058d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.793861+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and it is clear for\u901a\u884c.", "snapshot": {"id": "421bcb87-a148-4609-a83e-4f5b11bf6d30", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/421bcb87-a148-4609-a83e-4f5b11bf6d30.png", "timestamp": "2024-02-15T20:30:32.254148+00:00"}}, {"id": "6c95ad72-14ea-444f-a865-75df1827ff91", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.028963+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "421bcb87-a148-4609-a83e-4f5b11bf6d30", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/421bcb87-a148-4609-a83e-4f5b11bf6d30.png", "timestamp": "2024-02-15T20:30:32.254148+00:00"}}, {"id": "4c081b39-da7f-4f51-a713-6f6ae25a6039", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.265618+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, and the gutters are clear.", "snapshot": {"id": "421bcb87-a148-4609-a83e-4f5b11bf6d30", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/421bcb87-a148-4609-a83e-4f5b11bf6d30.png", "timestamp": "2024-02-15T20:30:32.254148+00:00"}}, {"id": "d1806278-6e61-4224-983f-245db00780f8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.508209+00:00", "label": "easy", "label_explanation": "There is no traffic on the road, likely due to the rain.", "snapshot": {"id": "421bcb87-a148-4609-a83e-4f5b11bf6d30", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/421bcb87-a148-4609-a83e-4f5b11bf6d30.png", "timestamp": "2024-02-15T20:30:32.254148+00:00"}}, {"id": "c62785f1-56cb-4ef2-9ab1-c81b2df5ec19", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.529282+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with two lanes, featuring a yellow car and a white van driving in opposite directions. The road is lined with trees and buildings, with a park on one side. The weather appears overcast, and there are some small puddles on the road.", "snapshot": {"id": "d1e8201d-df95-49be-b765-400509aca946", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d1e8201d-df95-49be-b765-400509aca946.png", "timestamp": "2024-02-15T20:43:01.046551+00:00"}}, {"id": "db54b9a2-5928-42c8-86f5-a4ee6c90c9fd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.282272+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d1e8201d-df95-49be-b765-400509aca946", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d1e8201d-df95-49be-b765-400509aca946.png", "timestamp": "2024-02-15T20:43:01.046551+00:00"}}, {"id": "d64bfd57-9b9c-4dd5-beb3-35967c5718b2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.101273+00:00", "label": "moderate", "label_explanation": "The traffic on the road is moderate, with a few cars visible in both directions. The presence of water on the road may cause some minor hindrance to traffic flow.", "snapshot": {"id": "d1e8201d-df95-49be-b765-400509aca946", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d1e8201d-df95-49be-b765-400509aca946.png", "timestamp": "2024-02-15T20:43:01.046551+00:00"}}, {"id": "9e338213-ffde-40c1-9ca5-efbd9d10c592", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.910964+00:00", "label": "low", "label_explanation": "The water level on the road is low, as the puddles are small and shallow, and the road surface is still mostly visible.", "snapshot": {"id": "d1e8201d-df95-49be-b765-400509aca946", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d1e8201d-df95-49be-b765-400509aca946.png", "timestamp": "2024-02-15T20:43:01.046551+00:00"}}, {"id": "2651e6bd-1006-451a-8946-8e965831cec5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.309971+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely in both directions.", "snapshot": {"id": "d1e8201d-df95-49be-b765-400509aca946", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d1e8201d-df95-49be-b765-400509aca946.png", "timestamp": "2024-02-15T20:43:01.046551+00:00"}}, {"id": "23870f94-9e7c-449f-9e71-6ec3c7c3f18d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.747784+00:00", "label": "true", "label_explanation": "There is some rain present on the road, as indicated by the small puddles and the wet appearance of the road surface.", "snapshot": {"id": "d1e8201d-df95-49be-b765-400509aca946", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d1e8201d-df95-49be-b765-400509aca946.png", "timestamp": "2024-02-15T20:43:01.046551+00:00"}}, {"id": "f3c472b6-4b20-4993-be0e-bd3bf0e45dad", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:25.637096+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "f1dea433-ead0-48a8-9a73-f4fcf5a013ec", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/f1dea433-ead0-48a8-9a73-f4fcf5a013ec.png", "timestamp": "2024-02-15T20:33:09.839825+00:00"}}, {"id": "236c6e1e-e866-4c6a-9412-e9ff2516c4f6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:25.367829+00:00", "label": "easy", "label_explanation": "The traffic is moving smoothly, with no major congestion.", "snapshot": {"id": "f1dea433-ead0-48a8-9a73-f4fcf5a013ec", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/f1dea433-ead0-48a8-9a73-f4fcf5a013ec.png", "timestamp": "2024-02-15T20:33:09.839825+00:00"}}, {"id": "4c1c7fc2-6b31-464b-8968-cad4d3fd4fe1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:25.090799+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "f1dea433-ead0-48a8-9a73-f4fcf5a013ec", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/f1dea433-ead0-48a8-9a73-f4fcf5a013ec.png", "timestamp": "2024-02-15T20:33:09.839825+00:00"}}, {"id": "0d23bb63-fd18-44a8-9497-655c7e73aabc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:24.886730+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are water droplets on the camera lens.", "snapshot": {"id": "f1dea433-ead0-48a8-9a73-f4fcf5a013ec", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/f1dea433-ead0-48a8-9a73-f4fcf5a013ec.png", "timestamp": "2024-02-15T20:33:09.839825+00:00"}}, {"id": "6f5a995b-6752-4593-8b72-7ef7841fa714", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:24.678317+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a park to the right. It is daytime and the weather is rainy. There are a few cars on the road, and the traffic appears to be moderate.", "snapshot": {"id": "f1dea433-ead0-48a8-9a73-f4fcf5a013ec", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/f1dea433-ead0-48a8-9a73-f4fcf5a013ec.png", "timestamp": "2024-02-15T20:33:09.839825+00:00"}}, {"id": "efc5029f-2636-4355-b4c4-b76329ef4aad", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:24.426106+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f1dea433-ead0-48a8-9a73-f4fcf5a013ec", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/f1dea433-ead0-48a8-9a73-f4fcf5a013ec.png", "timestamp": "2024-02-15T20:33:09.839825+00:00"}}, {"id": "d15a0aa8-b6ac-4a78-b881-b89cdc797838", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:51.716146+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "6bae4be8-dd0d-4880-8c5b-0c39474724bd", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/6bae4be8-dd0d-4880-8c5b-0c39474724bd.png", "timestamp": "2024-02-15T20:35:37.608200+00:00"}}, {"id": "68a0589d-6f89-4c0c-a61b-3a68a61e842a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:51.503359+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a park on one side and buildings on the other. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "6bae4be8-dd0d-4880-8c5b-0c39474724bd", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/6bae4be8-dd0d-4880-8c5b-0c39474724bd.png", "timestamp": "2024-02-15T20:35:37.608200+00:00"}}, {"id": "ba0cf6da-50c6-4143-b292-7d7747e08546", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:51.285112+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6bae4be8-dd0d-4880-8c5b-0c39474724bd", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/6bae4be8-dd0d-4880-8c5b-0c39474724bd.png", "timestamp": "2024-02-15T20:35:37.608200+00:00"}}, {"id": "f9bb877d-b283-46a0-afa6-4fb6ca4aba3f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.399594+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "6bae4be8-dd0d-4880-8c5b-0c39474724bd", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/6bae4be8-dd0d-4880-8c5b-0c39474724bd.png", "timestamp": "2024-02-15T20:35:37.608200+00:00"}}, {"id": "04685076-365b-4d5f-84c4-921b7a41489e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.200097+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "6bae4be8-dd0d-4880-8c5b-0c39474724bd", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/6bae4be8-dd0d-4880-8c5b-0c39474724bd.png", "timestamp": "2024-02-15T20:35:37.608200+00:00"}}, {"id": "6e5efb52-1f5e-4148-b7bc-fccca2dc255a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:51.945349+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "6bae4be8-dd0d-4880-8c5b-0c39474724bd", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/6bae4be8-dd0d-4880-8c5b-0c39474724bd.png", "timestamp": "2024-02-15T20:35:37.608200+00:00"}}, {"id": "31fb4096-5118-4dd2-9eca-3728f31beb41", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.582019+00:00", "label": "false", "label_explanation": "There are no visible signs of rain in the image. The road surface is dry, and there are no water droplets or puddles on the road.", "snapshot": {"id": "c7d36942-6866-4e20-a6c8-3e7600fbff36", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/c7d36942-6866-4e20-a6c8-3e7600fbff36.png", "timestamp": "2024-02-15T20:45:22.737355+00:00"}}, {"id": "f7aca0a1-8685-40ea-90b9-8cae83146e55", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.404697+00:00", "label": "null", "label_explanation": "The image captures a section of an urban road with a clear view of the street and surrounding environment. It is daytime, and the weather appears to be overcast with a possibility of rain.", "snapshot": {"id": "c7d36942-6866-4e20-a6c8-3e7600fbff36", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/c7d36942-6866-4e20-a6c8-3e7600fbff36.png", "timestamp": "2024-02-15T20:45:22.737355+00:00"}}, {"id": "0817f3df-976c-4d17-bc4d-2f48dbdd0a1f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.865722+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible signs of water accumulation. There are no flooded areas or puddles on the road.", "snapshot": {"id": "c7d36942-6866-4e20-a6c8-3e7600fbff36", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/c7d36942-6866-4e20-a6c8-3e7600fbff36.png", "timestamp": "2024-02-15T20:45:22.737355+00:00"}}, {"id": "9524d824-d8ec-4628-91ff-e12bc8601dc8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.173025+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c7d36942-6866-4e20-a6c8-3e7600fbff36", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/c7d36942-6866-4e20-a6c8-3e7600fbff36.png", "timestamp": "2024-02-15T20:45:22.737355+00:00"}}, {"id": "8e6b4934-0922-4add-a0df-00703755f48a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.265006+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. The entire road surface is clear, allowing for smooth traffic flow.", "snapshot": {"id": "c7d36942-6866-4e20-a6c8-3e7600fbff36", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/c7d36942-6866-4e20-a6c8-3e7600fbff36.png", "timestamp": "2024-02-15T20:45:22.737355+00:00"}}, {"id": "058d5204-1c9a-48d9-85ec-f464933596d1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.070136+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion or obstructions. Vehicles are moving smoothly in both directions.", "snapshot": {"id": "c7d36942-6866-4e20-a6c8-3e7600fbff36", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/c7d36942-6866-4e20-a6c8-3e7600fbff36.png", "timestamp": "2024-02-15T20:45:22.737355+00:00"}}, {"id": "63bb884f-9d20-49a7-bf93-8af7f539bbb8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.995122+00:00", "label": "easy", "label_explanation": "The car is driving on the road without any visible obstructions.", "snapshot": {"id": "90050b39-66b9-4547-b7ed-3d6dfc2b3c32", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/90050b39-66b9-4547-b7ed-3d6dfc2b3c32.png", "timestamp": "2024-02-15T20:47:47.902361+00:00"}}, {"id": "c5f903f1-559b-4b00-af36-54e00699b4ee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.212365+00:00", "label": "null", "label_explanation": "The image shows a section of an urban road with a car driving on the left side. There are trees and foliage on the right side of the road, and buildings and a mountain in the background. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "90050b39-66b9-4547-b7ed-3d6dfc2b3c32", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/90050b39-66b9-4547-b7ed-3d6dfc2b3c32.png", "timestamp": "2024-02-15T20:47:47.902361+00:00"}}, {"id": "25c7d41c-9d1d-4bae-9cf9-f7b730dec03b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.694679+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "90050b39-66b9-4547-b7ed-3d6dfc2b3c32", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/90050b39-66b9-4547-b7ed-3d6dfc2b3c32.png", "timestamp": "2024-02-15T20:47:47.902361+00:00"}}, {"id": "5c8f3780-3a32-4807-96e6-39a23f33c4b7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.884426+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "90050b39-66b9-4547-b7ed-3d6dfc2b3c32", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/90050b39-66b9-4547-b7ed-3d6dfc2b3c32.png", "timestamp": "2024-02-15T20:47:47.902361+00:00"}}, {"id": "6bb8ce77-f038-463d-9115-74be895fbe92", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.188783+00:00", "label": "free", "label_explanation": "There are no obstructions on the road.", "snapshot": {"id": "90050b39-66b9-4547-b7ed-3d6dfc2b3c32", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/90050b39-66b9-4547-b7ed-3d6dfc2b3c32.png", "timestamp": "2024-02-15T20:47:47.902361+00:00"}}, {"id": "9d4bc0dd-afee-488d-b169-1e4fd6594716", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.462790+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "90050b39-66b9-4547-b7ed-3d6dfc2b3c32", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/90050b39-66b9-4547-b7ed-3d6dfc2b3c32.png", "timestamp": "2024-02-15T20:47:47.902361+00:00"}}, {"id": "64d2be76-5e9f-45ae-85e2-9fa528c7547d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.490738+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a steady flow of vehicles. Traffic appears to be moving smoothly, with no major congestion or delays.", "snapshot": {"id": "08540d7b-e60e-4def-8782-5b9266e7831f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/08540d7b-e60e-4def-8782-5b9266e7831f.png", "timestamp": "2024-02-15T20:40:36.532156+00:00"}}, {"id": "53993db1-e2ea-4f94-9318-934dee51e911", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.253060+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "08540d7b-e60e-4def-8782-5b9266e7831f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/08540d7b-e60e-4def-8782-5b9266e7831f.png", "timestamp": "2024-02-15T20:40:36.532156+00:00"}}, {"id": "955b2d36-7ab4-4ca0-aeda-79e8a3374d33", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.097793+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "08540d7b-e60e-4def-8782-5b9266e7831f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/08540d7b-e60e-4def-8782-5b9266e7831f.png", "timestamp": "2024-02-15T20:40:36.532156+00:00"}}, {"id": "79ed0b66-ab03-41aa-a7d1-ef533e16a1fa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.883394+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely without any impediments.", "snapshot": {"id": "08540d7b-e60e-4def-8782-5b9266e7831f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/08540d7b-e60e-4def-8782-5b9266e7831f.png", "timestamp": "2024-02-15T20:40:36.532156+00:00"}}, {"id": "562aac5f-fc47-4d3d-bfff-a63c9520d70f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.654221+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "08540d7b-e60e-4def-8782-5b9266e7831f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/08540d7b-e60e-4def-8782-5b9266e7831f.png", "timestamp": "2024-02-15T20:40:36.532156+00:00"}}, {"id": "12386096-f326-4d01-abd4-b78afdac6149", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.813205+00:00", "label": "null", "label_explanation": "The image captures a section of an urban road with a clear view of the street and surrounding environment. It is daytime, and the weather appears to be overcast with a possibility of rain.", "snapshot": {"id": "08540d7b-e60e-4def-8782-5b9266e7831f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/08540d7b-e60e-4def-8782-5b9266e7831f.png", "timestamp": "2024-02-15T20:40:36.532156+00:00"}}, {"id": "2f164d07-534b-4c48-a590-c7aa19e9d8b7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.007292+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "ab4c3c7e-439e-4f39-847e-25b58bf366db", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/ab4c3c7e-439e-4f39-847e-25b58bf366db.png", "timestamp": "2024-02-15T20:50:11.137162+00:00"}}, {"id": "18690298-92b4-4b0d-943e-b2b909fa46cf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.782010+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions.", "snapshot": {"id": "ab4c3c7e-439e-4f39-847e-25b58bf366db", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/ab4c3c7e-439e-4f39-847e-25b58bf366db.png", "timestamp": "2024-02-15T20:50:11.137162+00:00"}}, {"id": "9f1360d8-7bcd-45bb-8636-f07b00ee6871", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.317322+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "ab4c3c7e-439e-4f39-847e-25b58bf366db", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/ab4c3c7e-439e-4f39-847e-25b58bf366db.png", "timestamp": "2024-02-15T20:50:11.137162+00:00"}}, {"id": "de1d754a-53ad-43df-aa9e-0d48b950284f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.074243+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a traffic light, trees, and a person walking on the sidewalk.", "snapshot": {"id": "ab4c3c7e-439e-4f39-847e-25b58bf366db", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/ab4c3c7e-439e-4f39-847e-25b58bf366db.png", "timestamp": "2024-02-15T20:50:11.137162+00:00"}}, {"id": "f17a0335-0150-4a10-a632-9b34880b8989", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.549674+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "ab4c3c7e-439e-4f39-847e-25b58bf366db", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/ab4c3c7e-439e-4f39-847e-25b58bf366db.png", "timestamp": "2024-02-15T20:50:11.137162+00:00"}}, {"id": "96008a53-c894-4e37-95cc-d963e02c6996", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.878069+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ab4c3c7e-439e-4f39-847e-25b58bf366db", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/ab4c3c7e-439e-4f39-847e-25b58bf366db.png", "timestamp": "2024-02-15T20:50:11.137162+00:00"}}, {"id": "5ac20b80-e645-4332-8388-96d3d0670d95", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.838164+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "d73fbf4f-1dbd-4f9a-8447-25580c97e66f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d73fbf4f-1dbd-4f9a-8447-25580c97e66f.png", "timestamp": "2024-02-15T20:52:36.485429+00:00"}}, {"id": "55b73ffd-8f44-4bb9-b073-9795cab3cdff", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.588287+00:00", "label": "easy", "label_explanation": "The yellow taxi is driving smoothly on the wet road, and there are no other vehicles visible in the image.", "snapshot": {"id": "d73fbf4f-1dbd-4f9a-8447-25580c97e66f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d73fbf4f-1dbd-4f9a-8447-25580c97e66f.png", "timestamp": "2024-02-15T20:52:36.485429+00:00"}}, {"id": "7aa7bcfc-a5d3-49cb-9ab2-a40c76bf0ab2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.022691+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d73fbf4f-1dbd-4f9a-8447-25580c97e66f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d73fbf4f-1dbd-4f9a-8447-25580c97e66f.png", "timestamp": "2024-02-15T20:52:36.485429+00:00"}}, {"id": "478b4553-3cfa-4a91-bdf9-abedbb3d03a7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.299502+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not causing any significant hindrance to traffic.", "snapshot": {"id": "d73fbf4f-1dbd-4f9a-8447-25580c97e66f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d73fbf4f-1dbd-4f9a-8447-25580c97e66f.png", "timestamp": "2024-02-15T20:52:36.485429+00:00"}}, {"id": "988fbd3e-e2ed-4231-aa40-a48ce132d1f5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.803141+00:00", "label": "null", "label_explanation": "The image captures a scene of an urban road with a yellow taxi driving on the wet road. There is a person standing on the sidewalk, waiting for a taxi. The road is surrounded by trees and buildings.", "snapshot": {"id": "d73fbf4f-1dbd-4f9a-8447-25580c97e66f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d73fbf4f-1dbd-4f9a-8447-25580c97e66f.png", "timestamp": "2024-02-15T20:52:36.485429+00:00"}}, {"id": "c5e146b5-f611-41b9-adee-2bc55f0c8663", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.598886+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d73fbf4f-1dbd-4f9a-8447-25580c97e66f", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/d73fbf4f-1dbd-4f9a-8447-25580c97e66f.png", "timestamp": "2024-02-15T20:52:36.485429+00:00"}}, {"id": "dc5c2677-a5ba-457e-916b-6c058433275c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.027588+00:00", "label": "easy", "label_explanation": "The road is clear of any obstructions and traffic is flowing smoothly.", "snapshot": {"id": "b621c7e2-85f1-4468-b71a-4e505fb53e0b", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/b621c7e2-85f1-4468-b71a-4e505fb53e0b.png", "timestamp": "2024-02-15T20:55:03.296388+00:00"}}, {"id": "bfcbc70c-cbce-45d9-9bb5-ef852af233ab", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.840617+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, only a thin layer of water that has not yet evaporated or been absorbed into the pavement.", "snapshot": {"id": "b621c7e2-85f1-4468-b71a-4e505fb53e0b", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/b621c7e2-85f1-4468-b71a-4e505fb53e0b.png", "timestamp": "2024-02-15T20:55:03.296388+00:00"}}, {"id": "f325c881-5805-4c33-9ff2-1274f034f503", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.622086+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "b621c7e2-85f1-4468-b71a-4e505fb53e0b", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/b621c7e2-85f1-4468-b71a-4e505fb53e0b.png", "timestamp": "2024-02-15T20:55:03.296388+00:00"}}, {"id": "be5c724d-8c81-490b-af80-31cac389541b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.416895+00:00", "label": "null", "label_explanation": "The image captures a section of an urban road with a person standing on the sidewalk to the right. There are trees and foliage on the left, and buildings and a mountain in the background. The road is wet from recent rain, but there are no significant puddles or obstructions.", "snapshot": {"id": "b621c7e2-85f1-4468-b71a-4e505fb53e0b", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/b621c7e2-85f1-4468-b71a-4e505fb53e0b.png", "timestamp": "2024-02-15T20:55:03.296388+00:00"}}, {"id": "0bf64d11-de9c-4b1c-aa2f-7a4f2fdf90c7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.177585+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of corruption or data loss.", "snapshot": {"id": "b621c7e2-85f1-4468-b71a-4e505fb53e0b", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/b621c7e2-85f1-4468-b71a-4e505fb53e0b.png", "timestamp": "2024-02-15T20:55:03.296388+00:00"}}, {"id": "86ec3a9d-5596-47a3-8df4-2cc6784421e6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.198092+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and it is completely passable.", "snapshot": {"id": "b621c7e2-85f1-4468-b71a-4e505fb53e0b", "camera_id": "000326", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000326/b621c7e2-85f1-4468-b71a-4e505fb53e0b.png", "timestamp": "2024-02-15T20:55:03.296388+00:00"}}]}, {"id": "001234", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962674, "longitude": -43.164681, "objects": ["image_corrupted", "image_description", "water_level", "rain", "road_blockade", "traffic"], "identifications": [{"id": "28bb6bcb-3016-43dc-9b35-93b8c7126965", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:54.813924+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "8645328c-40ec-4e40-b5a9-1303991ab203", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/8645328c-40ec-4e40-b5a9-1303991ab203.png", "timestamp": "2024-02-15T20:32:35.057068+00:00"}}, {"id": "3c285412-a724-4d3d-8e01-30f49475dec2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.641034+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "8645328c-40ec-4e40-b5a9-1303991ab203", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/8645328c-40ec-4e40-b5a9-1303991ab203.png", "timestamp": "2024-02-15T20:32:35.057068+00:00"}}, {"id": "e6fcaa62-a2f3-4fc7-bb3d-6ef058b9b464", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:51.532748+00:00", "label": "null", "label_explanation": "The image shows a section of a park with a tiled pathway, surrounded by trees and buildings.", "snapshot": {"id": "8645328c-40ec-4e40-b5a9-1303991ab203", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/8645328c-40ec-4e40-b5a9-1303991ab203.png", "timestamp": "2024-02-15T20:32:35.057068+00:00"}}, {"id": "d9a13ad4-5727-4f11-ba29-076718d88f3d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.643417+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "8645328c-40ec-4e40-b5a9-1303991ab203", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/8645328c-40ec-4e40-b5a9-1303991ab203.png", "timestamp": "2024-02-15T20:32:35.057068+00:00"}}, {"id": "25430fc9-70de-4288-a475-65fdd879fb12", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.168855+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "8645328c-40ec-4e40-b5a9-1303991ab203", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/8645328c-40ec-4e40-b5a9-1303991ab203.png", "timestamp": "2024-02-15T20:32:35.057068+00:00"}}, {"id": "3c2a8f34-9515-4815-a3be-60fd25d7c3ed", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.589431+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a few trees on either side. The road is in good condition, with no visible cracks or potholes. There are a few cars on the road, and the traffic is light. The weather is clear, and the sun is shining.", "snapshot": {"id": "836e49fe-bcc2-41cf-bd7a-18bdf7892a44", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/836e49fe-bcc2-41cf-bd7a-18bdf7892a44.png", "timestamp": "2024-02-15T20:43:04.297954+00:00"}}, {"id": "f39d48f3-c018-42a1-96db-a20851b79af9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.378912+00:00", "label": "false", "label_explanation": "The image is clear and free of visual interferences.", "snapshot": {"id": "836e49fe-bcc2-41cf-bd7a-18bdf7892a44", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/836e49fe-bcc2-41cf-bd7a-18bdf7892a44.png", "timestamp": "2024-02-15T20:43:04.297954+00:00"}}, {"id": "ff5757c6-e8d8-4683-96de-6e8e6d6326f1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:15.588217+00:00", "label": "free", "label_explanation": "There are no road blockades.", "snapshot": {"id": "836e49fe-bcc2-41cf-bd7a-18bdf7892a44", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/836e49fe-bcc2-41cf-bd7a-18bdf7892a44.png", "timestamp": "2024-02-15T20:43:04.297954+00:00"}}, {"id": "2675d3d8-004a-4cc9-8bff-cc375b4a7a8c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:15.299238+00:00", "label": "easy", "label_explanation": "The traffic is light.", "snapshot": {"id": "836e49fe-bcc2-41cf-bd7a-18bdf7892a44", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/836e49fe-bcc2-41cf-bd7a-18bdf7892a44.png", "timestamp": "2024-02-15T20:43:04.297954+00:00"}}, {"id": "925ae13c-f438-4260-9701-985dd07a9eb5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:15.098381+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "836e49fe-bcc2-41cf-bd7a-18bdf7892a44", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/836e49fe-bcc2-41cf-bd7a-18bdf7892a44.png", "timestamp": "2024-02-15T20:43:04.297954+00:00"}}, {"id": "bed6b1fc-6aef-47bd-a797-42f00f3416ab", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.800260+00:00", "label": "false", "label_explanation": "There is no rain in the image.", "snapshot": {"id": "836e49fe-bcc2-41cf-bd7a-18bdf7892a44", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/836e49fe-bcc2-41cf-bd7a-18bdf7892a44.png", "timestamp": "2024-02-15T20:43:04.297954+00:00"}}, {"id": "e56163f1-0d5a-43ba-9960-8ab0b71a91f3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.091629+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a statue in the background. The road is partially visible, with a section of it blocked by a large tree. There are parked cars on the side of the road, and the weather appears to be clear.", "snapshot": {"id": "b4e024e6-6d12-411e-8571-00a95bb2e549", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/b4e024e6-6d12-411e-8571-00a95bb2e549.png", "timestamp": "2024-02-15T20:35:06.036547+00:00"}}, {"id": "fd06a63f-6cf0-494e-be5e-16ec03de7f95", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.303663+00:00", "label": "partially", "label_explanation": "The road is partially blocked by a tree, but there is still space for vehicles to pass.", "snapshot": {"id": "b4e024e6-6d12-411e-8571-00a95bb2e549", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/b4e024e6-6d12-411e-8571-00a95bb2e549.png", "timestamp": "2024-02-15T20:35:06.036547+00:00"}}, {"id": "679b57e6-4a16-4de3-8bd1-9702a78b9de2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.953865+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "b4e024e6-6d12-411e-8571-00a95bb2e549", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/b4e024e6-6d12-411e-8571-00a95bb2e549.png", "timestamp": "2024-02-15T20:35:06.036547+00:00"}}, {"id": "1bf2e8eb-ca66-4817-873f-7f2542189f60", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.572578+00:00", "label": "moderate", "label_explanation": "The road is partially blocked by a tree, but there is still space for vehicles to pass.", "snapshot": {"id": "b4e024e6-6d12-411e-8571-00a95bb2e549", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/b4e024e6-6d12-411e-8571-00a95bb2e549.png", "timestamp": "2024-02-15T20:35:06.036547+00:00"}}, {"id": "963e0271-17ee-49c3-8ec0-a6cf2beedf5a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.471159+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "b4e024e6-6d12-411e-8571-00a95bb2e549", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/b4e024e6-6d12-411e-8571-00a95bb2e549.png", "timestamp": "2024-02-15T20:35:06.036547+00:00"}}, {"id": "c15d07fe-f6c7-4c89-bb5c-65732b9358fe", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:19.468151+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b4e024e6-6d12-411e-8571-00a95bb2e549", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/b4e024e6-6d12-411e-8571-00a95bb2e549.png", "timestamp": "2024-02-15T20:35:06.036547+00:00"}}, {"id": "83d2a0d1-2455-41ec-9aa9-59848cdb8ab5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.820527+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "9b4b15e6-ca94-4a52-a95c-81f86897d7c6", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/9b4b15e6-ca94-4a52-a95c-81f86897d7c6.png", "timestamp": "2024-02-15T20:37:38.219119+00:00"}}, {"id": "4dfc2303-0d54-4931-b99b-3e413d9b3d60", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.665565+00:00", "label": "null", "label_explanation": "The image shows a section of a park with a tiled walkway, surrounded by trees and buildings. There are people walking on the walkway, and a few vehicles parked on the side.", "snapshot": {"id": "9b4b15e6-ca94-4a52-a95c-81f86897d7c6", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/9b4b15e6-ca94-4a52-a95c-81f86897d7c6.png", "timestamp": "2024-02-15T20:37:38.219119+00:00"}}, {"id": "e9e6943c-4727-4123-b762-c4bd13c326dc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.207088+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9b4b15e6-ca94-4a52-a95c-81f86897d7c6", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/9b4b15e6-ca94-4a52-a95c-81f86897d7c6.png", "timestamp": "2024-02-15T20:37:38.219119+00:00"}}, {"id": "905a0124-5a4f-413b-8ecf-116c1c05bde2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.129609+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and it is clear for traffic to pass.", "snapshot": {"id": "9b4b15e6-ca94-4a52-a95c-81f86897d7c6", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/9b4b15e6-ca94-4a52-a95c-81f86897d7c6.png", "timestamp": "2024-02-15T20:37:38.219119+00:00"}}, {"id": "b7bf63f6-81b0-4c55-b6c7-d7f13d532597", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.251695+00:00", "label": "easy", "label_explanation": "There is light traffic on the road, with a few vehicles parked on the side.", "snapshot": {"id": "9b4b15e6-ca94-4a52-a95c-81f86897d7c6", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/9b4b15e6-ca94-4a52-a95c-81f86897d7c6.png", "timestamp": "2024-02-15T20:37:38.219119+00:00"}}, {"id": "a2e7e5d7-2d6f-4543-99ac-b17d721fae0e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.236485+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "9b4b15e6-ca94-4a52-a95c-81f86897d7c6", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/9b4b15e6-ca94-4a52-a95c-81f86897d7c6.png", "timestamp": "2024-02-15T20:37:38.219119+00:00"}}, {"id": "a5df912d-dc5a-44c1-a87b-3e6881c25536", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.640993+00:00", "label": "easy", "label_explanation": "There are no vehicles on the pathway, but there are a few pedestrians walking.", "snapshot": {"id": "0737c62c-de54-44dd-abb9-3240ebf782f3", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/0737c62c-de54-44dd-abb9-3240ebf782f3.png", "timestamp": "2024-02-15T20:40:10.262859+00:00"}}, {"id": "fe85192c-c7d4-4b50-a854-d2f9a26f2af2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.522589+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0737c62c-de54-44dd-abb9-3240ebf782f3", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/0737c62c-de54-44dd-abb9-3240ebf782f3.png", "timestamp": "2024-02-15T20:40:10.262859+00:00"}}, {"id": "476049ff-bf4b-46a6-a1dc-46da744bd1cf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.638395+00:00", "label": "free", "label_explanation": "The pathway is clear, with no obstructions or blockades.", "snapshot": {"id": "0737c62c-de54-44dd-abb9-3240ebf782f3", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/0737c62c-de54-44dd-abb9-3240ebf782f3.png", "timestamp": "2024-02-15T20:40:10.262859+00:00"}}, {"id": "6aafeedb-e0c5-497f-a463-87ae1765a3d8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.256970+00:00", "label": "low", "label_explanation": "The water is shallow and does not pose a significant risk to pedestrians or vehicles.", "snapshot": {"id": "0737c62c-de54-44dd-abb9-3240ebf782f3", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/0737c62c-de54-44dd-abb9-3240ebf782f3.png", "timestamp": "2024-02-15T20:40:10.262859+00:00"}}, {"id": "551b8023-b9b3-43c9-8886-505dc3f70f7a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.068855+00:00", "label": "null", "label_explanation": "The image captures a section of a park with a tiled pathway, surrounded by trees and buildings. It is daytime and appears to have recently rained.", "snapshot": {"id": "0737c62c-de54-44dd-abb9-3240ebf782f3", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/0737c62c-de54-44dd-abb9-3240ebf782f3.png", "timestamp": "2024-02-15T20:40:10.262859+00:00"}}, {"id": "54cab9ad-2a3f-47bc-a08d-02d2a5a354c5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.703510+00:00", "label": "true", "label_explanation": "The pathway is wet, and there are small puddles of water on the ground.", "snapshot": {"id": "0737c62c-de54-44dd-abb9-3240ebf782f3", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/0737c62c-de54-44dd-abb9-3240ebf782f3.png", "timestamp": "2024-02-15T20:40:10.262859+00:00"}}, {"id": "c0210362-1ab5-477c-afb2-02d8dc0b07ba", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:29.884319+00:00", "label": "low", "label_explanation": "There is no water on the road surface, and it is completely dry.", "snapshot": {"id": "97d92ab6-f0fa-4a99-b272-dae337c366e2", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/97d92ab6-f0fa-4a99-b272-dae337c366e2.png", "timestamp": "2024-02-15T20:47:18.833540+00:00"}}, {"id": "f4033c5f-1e1d-44d7-b15f-9b5de2b5b4be", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:29.674524+00:00", "label": "false", "label_explanation": "There is no rain present in the image, and the road surface appears dry.", "snapshot": {"id": "97d92ab6-f0fa-4a99-b272-dae337c366e2", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/97d92ab6-f0fa-4a99-b272-dae337c366e2.png", "timestamp": "2024-02-15T20:47:18.833540+00:00"}}, {"id": "b3de87f3-0f43-4b95-ba68-77fbe21a2c9d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:29.382266+00:00", "label": "null", "label_explanation": "The image captures a section of an urban road with a few parked cars and a couple of people walking.", "snapshot": {"id": "97d92ab6-f0fa-4a99-b272-dae337c366e2", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/97d92ab6-f0fa-4a99-b272-dae337c366e2.png", "timestamp": "2024-02-15T20:47:18.833540+00:00"}}, {"id": "07300249-fbab-48f0-873f-c3786e796d06", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:29.118436+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "97d92ab6-f0fa-4a99-b272-dae337c366e2", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/97d92ab6-f0fa-4a99-b272-dae337c366e2.png", "timestamp": "2024-02-15T20:47:18.833540+00:00"}}, {"id": "07097873-d3a8-4ba8-804b-982ae113115c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:30.423928+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "97d92ab6-f0fa-4a99-b272-dae337c366e2", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/97d92ab6-f0fa-4a99-b272-dae337c366e2.png", "timestamp": "2024-02-15T20:47:18.833540+00:00"}}, {"id": "bcbd00d6-01d7-46dc-995c-c48b724ceec0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:30.198068+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "97d92ab6-f0fa-4a99-b272-dae337c366e2", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/97d92ab6-f0fa-4a99-b272-dae337c366e2.png", "timestamp": "2024-02-15T20:47:18.833540+00:00"}}, {"id": "816c971e-8098-4996-a876-598c6de0dacc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.012674+00:00", "label": "easy", "label_explanation": "The road is dry, and there are no visible obstructions or traffic disruptions. Traffic can flow smoothly.", "snapshot": {"id": "21b8d48d-e5c6-465e-84e2-4cb327db09b9", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/21b8d48d-e5c6-465e-84e2-4cb327db09b9.png", "timestamp": "2024-02-15T20:45:00.147776+00:00"}}, {"id": "b523bb56-0053-460a-b480-e41a8258a99d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.349800+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions observed in the image. The road is clear for\u901a\u884c.", "snapshot": {"id": "21b8d48d-e5c6-465e-84e2-4cb327db09b9", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/21b8d48d-e5c6-465e-84e2-4cb327db09b9.png", "timestamp": "2024-02-15T20:45:00.147776+00:00"}}, {"id": "fbeba8cf-0674-4b26-8e3d-19c66867d654", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.074507+00:00", "label": "null", "label_explanation": "The image captures a section of an urban road with a distinctive black and white wave-like mosaic pattern. It is daytime, and the weather appears to be clear, with no visible rain or water on the road surface. There are several parked vehicles along the side of the road, and a few people are walking on the sidewalk.", "snapshot": {"id": "21b8d48d-e5c6-465e-84e2-4cb327db09b9", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/21b8d48d-e5c6-465e-84e2-4cb327db09b9.png", "timestamp": "2024-02-15T20:45:00.147776+00:00"}}, {"id": "c87936f8-96d1-4058-acc3-2ce1d0cc17b9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.693219+00:00", "label": "low", "label_explanation": "Since there is no water present on the road, the water level is considered 'low'.", "snapshot": {"id": "21b8d48d-e5c6-465e-84e2-4cb327db09b9", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/21b8d48d-e5c6-465e-84e2-4cb327db09b9.png", "timestamp": "2024-02-15T20:45:00.147776+00:00"}}, {"id": "0b5192ce-0c1c-4e01-9682-d7113bc47291", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.413179+00:00", "label": "false", "label_explanation": "As mentioned earlier, there is no visible rain or water on the road surface, indicating dry conditions.", "snapshot": {"id": "21b8d48d-e5c6-465e-84e2-4cb327db09b9", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/21b8d48d-e5c6-465e-84e2-4cb327db09b9.png", "timestamp": "2024-02-15T20:45:00.147776+00:00"}}, {"id": "05cd11da-ee10-4823-8bea-1dc511ef7038", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.871882+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "21b8d48d-e5c6-465e-84e2-4cb327db09b9", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/21b8d48d-e5c6-465e-84e2-4cb327db09b9.png", "timestamp": "2024-02-15T20:45:00.147776+00:00"}}, {"id": "8d41a3b5-cdaa-4618-a5d7-fd4c3afef8ea", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:00.558215+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "01752255-2ca4-4cee-9ad9-aa73bb78326a", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/01752255-2ca4-4cee-9ad9-aa73bb78326a.png", "timestamp": "2024-02-15T20:49:49.101948+00:00"}}, {"id": "bccdccff-6284-47ad-9810-cb2db9f7f025", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:01.382466+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is completely clear, with no barriers or obstacles impeding traffic.", "snapshot": {"id": "01752255-2ca4-4cee-9ad9-aa73bb78326a", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/01752255-2ca4-4cee-9ad9-aa73bb78326a.png", "timestamp": "2024-02-15T20:49:49.101948+00:00"}}, {"id": "a923f4e6-e5d3-4f05-aed8-c02f16c8299f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:00.957200+00:00", "label": "easy", "label_explanation": "There is no traffic on the road. The road is completely empty, with no cars or pedestrians visible.", "snapshot": {"id": "01752255-2ca4-4cee-9ad9-aa73bb78326a", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/01752255-2ca4-4cee-9ad9-aa73bb78326a.png", "timestamp": "2024-02-15T20:49:49.101948+00:00"}}, {"id": "84020fc5-c756-47be-a990-5a61503f8cc9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.964466+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "01752255-2ca4-4cee-9ad9-aa73bb78326a", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/01752255-2ca4-4cee-9ad9-aa73bb78326a.png", "timestamp": "2024-02-15T20:49:49.101948+00:00"}}, {"id": "e5a5b45f-410b-4a9d-ab3e-b6f1c0e92289", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:00.377261+00:00", "label": "false", "label_explanation": "There are no visible signs of rain in the image. The road surface is dry, and there are no puddles or reflections on the ground.", "snapshot": {"id": "01752255-2ca4-4cee-9ad9-aa73bb78326a", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/01752255-2ca4-4cee-9ad9-aa73bb78326a.png", "timestamp": "2024-02-15T20:49:49.101948+00:00"}}, {"id": "f052e98b-97dd-471f-8c17-f0402d188bf4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:00.153038+00:00", "label": "null", "label_explanation": "The image captures a section of an urban road with a green tractor in the left corner and a police car on the right side. The road surface is made of patterned tiles, and there are trees and buildings in the background.", "snapshot": {"id": "01752255-2ca4-4cee-9ad9-aa73bb78326a", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/01752255-2ca4-4cee-9ad9-aa73bb78326a.png", "timestamp": "2024-02-15T20:49:49.101948+00:00"}}, {"id": "6448cd6b-de98-4836-b08e-12fe7ca8382a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:16.227133+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly in both directions. There are no visible obstructions or delays.", "snapshot": {"id": "34822725-f76a-4fde-ba82-083272327911", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/34822725-f76a-4fde-ba82-083272327911.png", "timestamp": "2024-02-15T20:52:06.103078+00:00"}}, {"id": "a566dcc1-3b00-494c-9a22-19fa54993722", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:15.501490+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water on the road.", "snapshot": {"id": "34822725-f76a-4fde-ba82-083272327911", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/34822725-f76a-4fde-ba82-083272327911.png", "timestamp": "2024-02-15T20:52:06.103078+00:00"}}, {"id": "259cd49d-9907-4a0e-91ef-91679c22a154", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:16.494221+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and free of any impediments.", "snapshot": {"id": "34822725-f76a-4fde-ba82-083272327911", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/34822725-f76a-4fde-ba82-083272327911.png", "timestamp": "2024-02-15T20:52:06.103078+00:00"}}, {"id": "b1055cec-adb2-435d-9737-299f274b77f4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:15.751760+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "34822725-f76a-4fde-ba82-083272327911", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/34822725-f76a-4fde-ba82-083272327911.png", "timestamp": "2024-02-15T20:52:06.103078+00:00"}}, {"id": "b9a8014c-6f32-4721-9fa6-c2f57f714ac2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:15.306813+00:00", "label": "null", "label_explanation": "The image depicts an urban road scene in daylight. It is a four-lane road with a wide median strip. There are trees on either side of the road, and buildings and other structures in the background. The road is dry, and there is no visible rain or water on the surface.", "snapshot": {"id": "34822725-f76a-4fde-ba82-083272327911", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/34822725-f76a-4fde-ba82-083272327911.png", "timestamp": "2024-02-15T20:52:06.103078+00:00"}}, {"id": "3ad5de98-9a61-4c8a-bce2-d16d67d98e0f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:15.078104+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions, and the image appears intact.", "snapshot": {"id": "34822725-f76a-4fde-ba82-083272327911", "camera_id": "001234", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001234/34822725-f76a-4fde-ba82-083272327911.png", "timestamp": "2024-02-15T20:52:06.103078+00:00"}}]}, {"id": "001390", "name": "R. FRANCISCO EUG\u00caNIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90699671, "longitude": -43.21102191, "objects": ["image_corrupted", "water_level", "image_description", "road_blockade", "traffic", "rain"], "identifications": [{"id": "5e24c202-639a-4070-b7db-ef9a179a8929", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:20.977983+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing vehicles to pass through freely.", "snapshot": {"id": "f2ad8131-3126-4484-99dc-067fffad6ed6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/f2ad8131-3126-4484-99dc-067fffad6ed6.png", "timestamp": "2024-02-15T20:30:05.490139+00:00"}}, {"id": "8b977653-17c8-4b39-83b9-5047e9a5e575", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:20.737715+00:00", "label": "moderate", "label_explanation": "The traffic flow appears to be slightly slower than usual due to the wet road conditions, but vehicles can still navigate through the area without major difficulty.", "snapshot": {"id": "f2ad8131-3126-4484-99dc-067fffad6ed6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/f2ad8131-3126-4484-99dc-067fffad6ed6.png", "timestamp": "2024-02-15T20:30:05.490139+00:00"}}, {"id": "8479b0a1-adb4-469f-b812-f2f1657520b9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:20.319988+00:00", "label": "low", "label_explanation": "While there is water on the road, it is mostly limited to small puddles and does not significantly cover the road surface.", "snapshot": {"id": "f2ad8131-3126-4484-99dc-067fffad6ed6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/f2ad8131-3126-4484-99dc-067fffad6ed6.png", "timestamp": "2024-02-15T20:30:05.490139+00:00"}}, {"id": "dc64b21f-006d-48cf-ac75-09b8ed9bf751", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:19.971199+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining.", "snapshot": {"id": "f2ad8131-3126-4484-99dc-067fffad6ed6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/f2ad8131-3126-4484-99dc-067fffad6ed6.png", "timestamp": "2024-02-15T20:30:05.490139+00:00"}}, {"id": "40b91558-c821-4f6e-8264-b191c916c427", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:19.737779+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. The road surface is wet, and there are water puddles in some areas.", "snapshot": {"id": "f2ad8131-3126-4484-99dc-067fffad6ed6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/f2ad8131-3126-4484-99dc-067fffad6ed6.png", "timestamp": "2024-02-15T20:30:05.490139+00:00"}}, {"id": "8a738616-0aa8-4391-ae78-059a4d1b4932", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:19.419299+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f2ad8131-3126-4484-99dc-067fffad6ed6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/f2ad8131-3126-4484-99dc-067fffad6ed6.png", "timestamp": "2024-02-15T20:30:05.490139+00:00"}}, {"id": "d93f75c8-aa9f-4985-974a-49d2866504e0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.426808+00:00", "label": "moderate", "label_explanation": "The traffic is moving slowly due to the wet road conditions, but there are no major disruptions.", "snapshot": {"id": "4c1b16e0-8bb0-419c-9b61-8e3f9c483b53", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/4c1b16e0-8bb0-419c-9b61-8e3f9c483b53.png", "timestamp": "2024-02-15T20:32:32.187481+00:00"}}, {"id": "2e5b927d-7919-4317-9d93-a30b370425c7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:44.626568+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "4c1b16e0-8bb0-419c-9b61-8e3f9c483b53", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/4c1b16e0-8bb0-419c-9b61-8e3f9c483b53.png", "timestamp": "2024-02-15T20:32:32.187481+00:00"}}, {"id": "c434a86a-ff53-4ccb-a300-fdb01a01a0f7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:46.222008+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "4c1b16e0-8bb0-419c-9b61-8e3f9c483b53", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/4c1b16e0-8bb0-419c-9b61-8e3f9c483b53.png", "timestamp": "2024-02-15T20:32:32.187481+00:00"}}, {"id": "1ba67e56-ae1f-4f02-add1-ffe09d02f97c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:43.868713+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are water droplets visible on the windshield of the vehicle capturing the scene.", "snapshot": {"id": "4c1b16e0-8bb0-419c-9b61-8e3f9c483b53", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/4c1b16e0-8bb0-419c-9b61-8e3f9c483b53.png", "timestamp": "2024-02-15T20:32:32.187481+00:00"}}, {"id": "9917a839-523b-41e6-97a7-150de33de8ee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:43.248550+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road surface is wet. There are vehicles on the road, and the traffic appears to be moderate.", "snapshot": {"id": "4c1b16e0-8bb0-419c-9b61-8e3f9c483b53", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/4c1b16e0-8bb0-419c-9b61-8e3f9c483b53.png", "timestamp": "2024-02-15T20:32:32.187481+00:00"}}, {"id": "7b3f02ad-25fd-45ae-b9aa-490a0c14eb04", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:42.746330+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4c1b16e0-8bb0-419c-9b61-8e3f9c483b53", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/4c1b16e0-8bb0-419c-9b61-8e3f9c483b53.png", "timestamp": "2024-02-15T20:32:32.187481+00:00"}}, {"id": "4b58701a-ec33-47a7-a367-880cb34add94", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:56.806871+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6.png", "timestamp": "2024-02-15T20:49:44.255752+00:00"}}, {"id": "8c1175d7-7437-4b23-8b6d-22991d234f1e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:55.613391+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a painted median and trees on either side. There are cars and a motorcycle on the road, and buildings and a mountain in the background.", "snapshot": {"id": "dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6.png", "timestamp": "2024-02-15T20:49:44.255752+00:00"}}, {"id": "38705bec-9a47-418e-b5c9-979803f81f0f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:56.200418+00:00", "label": "low", "label_explanation": "There are puddles of water on the road, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6.png", "timestamp": "2024-02-15T20:49:44.255752+00:00"}}, {"id": "2febc016-d16e-4f9c-83aa-20cad55a6e4d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:56.572579+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6.png", "timestamp": "2024-02-15T20:49:44.255752+00:00"}}, {"id": "09cdf33a-5b38-4dcd-9453-7901d32faf6c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:55.946105+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6.png", "timestamp": "2024-02-15T20:49:44.255752+00:00"}}, {"id": "2a8ce416-e1cc-477d-a2b9-e51e119bee61", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:55.419396+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/dbf96e4b-8e12-4f7a-8298-71cfb3bd75c6.png", "timestamp": "2024-02-15T20:49:44.255752+00:00"}}, {"id": "0961ed23-65e7-4185-ac7f-ae46349d763f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.939728+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "b521e023-23e4-4262-ba98-c474f42be943", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b521e023-23e4-4262-ba98-c474f42be943.png", "timestamp": "2024-02-15T20:47:24.913251+00:00"}}, {"id": "146928df-8320-488c-89d9-d9e1cc9f5577", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.556475+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or congestion.", "snapshot": {"id": "b521e023-23e4-4262-ba98-c474f42be943", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b521e023-23e4-4262-ba98-c474f42be943.png", "timestamp": "2024-02-15T20:47:24.913251+00:00"}}, {"id": "d095aed6-3a3b-4dfb-9110-6b0dabecaa21", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.247598+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles.", "snapshot": {"id": "b521e023-23e4-4262-ba98-c474f42be943", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b521e023-23e4-4262-ba98-c474f42be943.png", "timestamp": "2024-02-15T20:47:24.913251+00:00"}}, {"id": "4290f095-0049-4a57-8763-98d9d2a4ba37", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.436786+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b521e023-23e4-4262-ba98-c474f42be943", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b521e023-23e4-4262-ba98-c474f42be943.png", "timestamp": "2024-02-15T20:47:24.913251+00:00"}}, {"id": "2faec4ad-46ce-45c3-830f-85f7ad1f6463", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.002794+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "b521e023-23e4-4262-ba98-c474f42be943", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b521e023-23e4-4262-ba98-c474f42be943.png", "timestamp": "2024-02-15T20:47:24.913251+00:00"}}, {"id": "3cc5cb7d-dc12-4cef-9909-67301c15af32", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.703123+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars and buses. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "b521e023-23e4-4262-ba98-c474f42be943", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b521e023-23e4-4262-ba98-c474f42be943.png", "timestamp": "2024-02-15T20:47:24.913251+00:00"}}, {"id": "cb77021c-ab09-4cad-9187-feb7731a03a3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:19.676725+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a bus, cars, and a truck driving on the wet road surface. There are buildings and trees on either side of the road, and the sky is overcast.", "snapshot": {"id": "da9957c0-4a20-425a-b0a0-ff174b57b591", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/da9957c0-4a20-425a-b0a0-ff174b57b591.png", "timestamp": "2024-02-15T20:35:06.279507+00:00"}}, {"id": "fb491045-482d-4126-855d-b21b2cdc124e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.604251+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "da9957c0-4a20-425a-b0a0-ff174b57b591", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/da9957c0-4a20-425a-b0a0-ff174b57b591.png", "timestamp": "2024-02-15T20:35:06.279507+00:00"}}, {"id": "812134f4-9732-40f6-ba44-068720337341", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.037259+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "da9957c0-4a20-425a-b0a0-ff174b57b591", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/da9957c0-4a20-425a-b0a0-ff174b57b591.png", "timestamp": "2024-02-15T20:35:06.279507+00:00"}}, {"id": "391c1e80-7676-4145-8d96-3022a2fab6d7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.998827+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "da9957c0-4a20-425a-b0a0-ff174b57b591", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/da9957c0-4a20-425a-b0a0-ff174b57b591.png", "timestamp": "2024-02-15T20:35:06.279507+00:00"}}, {"id": "f28eb2ef-81b4-47e7-a381-c85bd1d8bb21", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.453152+00:00", "label": "low", "label_explanation": "While the road is wet, there are no significant puddles or water accumulation visible on the road surface.", "snapshot": {"id": "da9957c0-4a20-425a-b0a0-ff174b57b591", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/da9957c0-4a20-425a-b0a0-ff174b57b591.png", "timestamp": "2024-02-15T20:35:06.279507+00:00"}}, {"id": "e286628b-c0ad-4452-95e8-2b8f46e62d8e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.101254+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "da9957c0-4a20-425a-b0a0-ff174b57b591", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/da9957c0-4a20-425a-b0a0-ff174b57b591.png", "timestamp": "2024-02-15T20:35:06.279507+00:00"}}, {"id": "f61aed4a-f229-406a-a379-fa051a8dd248", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:46.000039+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "086d0665-be62-4ef8-84d8-8f821ab5174a", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/086d0665-be62-4ef8-84d8-8f821ab5174a.png", "timestamp": "2024-02-15T20:37:34.165236+00:00"}}, {"id": "4aa1674a-a516-4e81-8aaf-c7bf65319474", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:45.337574+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, and there are some puddles on the road.", "snapshot": {"id": "086d0665-be62-4ef8-84d8-8f821ab5174a", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/086d0665-be62-4ef8-84d8-8f821ab5174a.png", "timestamp": "2024-02-15T20:37:34.165236+00:00"}}, {"id": "cb4ef576-31c7-4af8-9d0f-ce2b972fd6d4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:45.002955+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is a four-lane road with a bus stop on the right side. There are several vehicles on the road, including cars, buses, and motorcycles. The road surface is wet from recent rain, and there are some puddles on the road.", "snapshot": {"id": "086d0665-be62-4ef8-84d8-8f821ab5174a", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/086d0665-be62-4ef8-84d8-8f821ab5174a.png", "timestamp": "2024-02-15T20:37:34.165236+00:00"}}, {"id": "47e6911e-813e-4f24-84ab-9acd1d903f98", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:45.729606+00:00", "label": "low", "label_explanation": "The water level on the road is low, with some puddles but no significant accumulation of water.", "snapshot": {"id": "086d0665-be62-4ef8-84d8-8f821ab5174a", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/086d0665-be62-4ef8-84d8-8f821ab5174a.png", "timestamp": "2024-02-15T20:37:34.165236+00:00"}}, {"id": "8a68e6d1-a03e-48a0-8e22-421fc94365ba", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:46.502923+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "086d0665-be62-4ef8-84d8-8f821ab5174a", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/086d0665-be62-4ef8-84d8-8f821ab5174a.png", "timestamp": "2024-02-15T20:37:34.165236+00:00"}}, {"id": "b6f89676-623f-4e87-b196-b0c5b85a088c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:44.466588+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "086d0665-be62-4ef8-84d8-8f821ab5174a", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/086d0665-be62-4ef8-84d8-8f821ab5174a.png", "timestamp": "2024-02-15T20:37:34.165236+00:00"}}, {"id": "5bedcb6b-a479-4ec5-a855-ab6ca25e8e70", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:46.830202+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "b56f3dbb-8e6b-407d-aac5-0262e2fbf780", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b56f3dbb-8e6b-407d-aac5-0262e2fbf780.png", "timestamp": "2024-02-15T20:42:34.793378+00:00"}}, {"id": "d5bd9ee7-d411-41f2-aa05-1aa5703b2c4a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:46.024597+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b56f3dbb-8e6b-407d-aac5-0262e2fbf780", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b56f3dbb-8e6b-407d-aac5-0262e2fbf780.png", "timestamp": "2024-02-15T20:42:34.793378+00:00"}}, {"id": "347e71be-3f93-40d9-8d65-dd3e204b6847", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.145277+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or disruptions.", "snapshot": {"id": "b56f3dbb-8e6b-407d-aac5-0262e2fbf780", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b56f3dbb-8e6b-407d-aac5-0262e2fbf780.png", "timestamp": "2024-02-15T20:42:34.793378+00:00"}}, {"id": "d194b4b5-78dc-4c4d-9e14-de8b11d54dee", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:46.469235+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "b56f3dbb-8e6b-407d-aac5-0262e2fbf780", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b56f3dbb-8e6b-407d-aac5-0262e2fbf780.png", "timestamp": "2024-02-15T20:42:34.793378+00:00"}}, {"id": "756d29db-2874-411c-812b-0b98198e39cb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:46.269385+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "b56f3dbb-8e6b-407d-aac5-0262e2fbf780", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b56f3dbb-8e6b-407d-aac5-0262e2fbf780.png", "timestamp": "2024-02-15T20:42:34.793378+00:00"}}, {"id": "d839c3d2-7960-48d9-9145-86a1e64462c6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.426925+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "b56f3dbb-8e6b-407d-aac5-0262e2fbf780", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/b56f3dbb-8e6b-407d-aac5-0262e2fbf780.png", "timestamp": "2024-02-15T20:42:34.793378+00:00"}}, {"id": "7d463250-5f10-430b-9142-c1fd9a797597", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.142900+00:00", "label": "low", "label_explanation": "There are some puddles on the road, but the water level is generally low and does not pose a significant hazard to traffic.", "snapshot": {"id": "3ac921b7-0658-489c-9e25-b221dc8fdaae", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/3ac921b7-0658-489c-9e25-b221dc8fdaae.png", "timestamp": "2024-02-15T20:40:10.031163+00:00"}}, {"id": "c103bdcb-13f2-4629-9f75-d26366608de5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.583477+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "3ac921b7-0658-489c-9e25-b221dc8fdaae", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/3ac921b7-0658-489c-9e25-b221dc8fdaae.png", "timestamp": "2024-02-15T20:40:10.031163+00:00"}}, {"id": "f99910ff-35d3-4112-b497-3bbb605a44ca", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.515061+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3ac921b7-0658-489c-9e25-b221dc8fdaae", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/3ac921b7-0658-489c-9e25-b221dc8fdaae.png", "timestamp": "2024-02-15T20:40:10.031163+00:00"}}, {"id": "7a6798ed-0119-4892-bb2d-ad20e56f3358", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.426596+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "3ac921b7-0658-489c-9e25-b221dc8fdaae", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/3ac921b7-0658-489c-9e25-b221dc8fdaae.png", "timestamp": "2024-02-15T20:40:10.031163+00:00"}}, {"id": "cfc7e99d-ccfd-4bba-99fd-26047fad58ac", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.573310+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "3ac921b7-0658-489c-9e25-b221dc8fdaae", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/3ac921b7-0658-489c-9e25-b221dc8fdaae.png", "timestamp": "2024-02-15T20:40:10.031163+00:00"}}, {"id": "dc6fc5e1-0122-434b-ad09-a05df51b69b8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.935313+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, with some puddles visible. There are trees and buildings on either side of the road.", "snapshot": {"id": "3ac921b7-0658-489c-9e25-b221dc8fdaae", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/3ac921b7-0658-489c-9e25-b221dc8fdaae.png", "timestamp": "2024-02-15T20:40:10.031163+00:00"}}, {"id": "fed1cc16-cdc2-432d-892d-597065c9746f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.482264+00:00", "label": "true", "label_explanation": "The image is corrupted, with significant green and grey color distortions, making it difficult to analyze road conditions.", "snapshot": {"id": "fb21d5a4-7558-4c76-adb6-a28e13bd1b90", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/fb21d5a4-7558-4c76-adb6-a28e13bd1b90.png", "timestamp": "2024-02-15T20:44:58.165541+00:00"}}, {"id": "5ef054bd-0d47-421c-a6d1-5ec95717a5ee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.817269+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "fb21d5a4-7558-4c76-adb6-a28e13bd1b90", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/fb21d5a4-7558-4c76-adb6-a28e13bd1b90.png", "timestamp": "2024-02-15T20:44:58.165541+00:00"}}, {"id": "ce52091c-1960-41d6-8782-2ec0baa48f92", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:20.560025+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "e4fc61be-497a-4737-ae08-e3313947c5c9", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/e4fc61be-497a-4737-ae08-e3313947c5c9.png", "timestamp": "2024-02-15T20:52:08.948008+00:00"}}, {"id": "add5642a-d48f-49aa-b6e2-6782b6ed471b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:20.100944+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "e4fc61be-497a-4737-ae08-e3313947c5c9", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/e4fc61be-497a-4737-ae08-e3313947c5c9.png", "timestamp": "2024-02-15T20:52:08.948008+00:00"}}, {"id": "f4ac6cf8-c5be-4b7f-9578-520e2c619b60", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:19.784593+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "e4fc61be-497a-4737-ae08-e3313947c5c9", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/e4fc61be-497a-4737-ae08-e3313947c5c9.png", "timestamp": "2024-02-15T20:52:08.948008+00:00"}}, {"id": "305a03eb-fcc3-4047-8a4c-5f454994497e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:19.427292+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a few vehicles, including a yellow bus, and some pedestrians.", "snapshot": {"id": "e4fc61be-497a-4737-ae08-e3313947c5c9", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/e4fc61be-497a-4737-ae08-e3313947c5c9.png", "timestamp": "2024-02-15T20:52:08.948008+00:00"}}, {"id": "c878091b-59ab-4307-b9f4-bfeda281a433", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:19.043865+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e4fc61be-497a-4737-ae08-e3313947c5c9", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/e4fc61be-497a-4737-ae08-e3313947c5c9.png", "timestamp": "2024-02-15T20:52:08.948008+00:00"}}, {"id": "4200e4d8-2115-4c2b-8853-5ea159ee239a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:20.332211+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "e4fc61be-497a-4737-ae08-e3313947c5c9", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/e4fc61be-497a-4737-ae08-e3313947c5c9.png", "timestamp": "2024-02-15T20:52:08.948008+00:00"}}, {"id": "ba8bc6e8-1fb6-4d93-b672-00007ea822bd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:48.910346+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "946d2c99-3557-4ce2-a726-c2e060e178c5", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/946d2c99-3557-4ce2-a726-c2e060e178c5.png", "timestamp": "2024-02-15T20:54:39.598417+00:00"}}, {"id": "f9f0d070-2e26-44d8-b251-1cb2602e5edc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:48.600855+00:00", "label": "true", "label_explanation": "The image is corrupted, with green and grey color distortions indicating data loss.", "snapshot": {"id": "946d2c99-3557-4ce2-a726-c2e060e178c5", "camera_id": "001390", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001390/946d2c99-3557-4ce2-a726-c2e060e178c5.png", "timestamp": "2024-02-15T20:54:39.598417+00:00"}}]}, {"id": "001231", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96264, "longitude": -43.165506, "objects": ["image_corrupted", "image_description", "rain", "water_level", "road_blockade", "traffic"], "identifications": [{"id": "1f3afebc-f4f3-417e-baaa-175cf9d05d6e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.727572+00:00", "label": "true", "label_explanation": "There are visible signs of rain on the road, with small puddles forming.", "snapshot": {"id": "7d346cb7-f18f-4b10-a61c-7ace63f0b467", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/7d346cb7-f18f-4b10-a61c-7ace63f0b467.png", "timestamp": "2024-02-15T20:44:59.924546+00:00"}}, {"id": "bea3139f-1c20-4a10-9a06-118aad8ea1c5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.273767+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7d346cb7-f18f-4b10-a61c-7ace63f0b467", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/7d346cb7-f18f-4b10-a61c-7ace63f0b467.png", "timestamp": "2024-02-15T20:44:59.924546+00:00"}}, {"id": "e8f7bf8c-a7d0-4d81-91f5-4ab34b89bc77", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.921333+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road.", "snapshot": {"id": "7d346cb7-f18f-4b10-a61c-7ace63f0b467", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/7d346cb7-f18f-4b10-a61c-7ace63f0b467.png", "timestamp": "2024-02-15T20:44:59.924546+00:00"}}, {"id": "b8e88045-7330-4f61-9ae4-d13294350198", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.602677+00:00", "label": "easy", "label_explanation": "Traffic appears to be moving smoothly, with no major disruptions caused by the rain.", "snapshot": {"id": "7d346cb7-f18f-4b10-a61c-7ace63f0b467", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/7d346cb7-f18f-4b10-a61c-7ace63f0b467.png", "timestamp": "2024-02-15T20:44:59.924546+00:00"}}, {"id": "4dd39ee3-3d35-4998-95c3-e8b79655e93e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.271661+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present.", "snapshot": {"id": "7d346cb7-f18f-4b10-a61c-7ace63f0b467", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/7d346cb7-f18f-4b10-a61c-7ace63f0b467.png", "timestamp": "2024-02-15T20:44:59.924546+00:00"}}, {"id": "d9b9b01e-cea2-46bb-bb9a-688511584a93", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.525897+00:00", "label": "null", "label_explanation": "The image captures a coastal avenue with a clear view of the beach and buildings in the background. The weather appears to be overcast, with a mix of sunlight and clouds.", "snapshot": {"id": "7d346cb7-f18f-4b10-a61c-7ace63f0b467", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/7d346cb7-f18f-4b10-a61c-7ace63f0b467.png", "timestamp": "2024-02-15T20:44:59.924546+00:00"}}, {"id": "47dd6c74-173c-4916-8c1e-00f1fd5810a4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:46.295287+00:00", "label": "true", "label_explanation": "The presence of water on the street indicates that it has been raining.", "snapshot": {"id": "47c9a609-4d6e-4428-8ec3-5f7171f92b86", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/47c9a609-4d6e-4428-8ec3-5f7171f92b86.png", "timestamp": "2024-02-15T20:37:34.531694+00:00"}}, {"id": "a983b372-0d4c-4452-814a-c3a2f68d6ed3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:47.036347+00:00", "label": "easy", "label_explanation": "The wet road may cause some inconvenience for drivers and pedestrians, but it does not pose a significant hindrance to traffic flow.", "snapshot": {"id": "47c9a609-4d6e-4428-8ec3-5f7171f92b86", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/47c9a609-4d6e-4428-8ec3-5f7171f92b86.png", "timestamp": "2024-02-15T20:37:34.531694+00:00"}}, {"id": "4e5302bb-310f-425f-b2bb-9ca541337258", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:45.742935+00:00", "label": "null", "label_explanation": "The image captures a coastal avenue with a clear view of the beach on one side and buildings on the other. The weather appears overcast, with dark clouds covering the sky. There are people walking on the sidewalk, and cars on the street. The street is wet, with small puddles of water here and there.", "snapshot": {"id": "47c9a609-4d6e-4428-8ec3-5f7171f92b86", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/47c9a609-4d6e-4428-8ec3-5f7171f92b86.png", "timestamp": "2024-02-15T20:37:34.531694+00:00"}}, {"id": "f8404a79-d1fe-48a6-b86a-17efb6b7d389", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:46.738546+00:00", "label": "low", "label_explanation": "The water on the street is shallow, with small puddles scattered around. It does not cover a significant portion of the road surface.", "snapshot": {"id": "47c9a609-4d6e-4428-8ec3-5f7171f92b86", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/47c9a609-4d6e-4428-8ec3-5f7171f92b86.png", "timestamp": "2024-02-15T20:37:34.531694+00:00"}}, {"id": "53d4ba41-039d-44fd-a8c9-a998d42cdef8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:47.441436+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "47c9a609-4d6e-4428-8ec3-5f7171f92b86", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/47c9a609-4d6e-4428-8ec3-5f7171f92b86.png", "timestamp": "2024-02-15T20:37:34.531694+00:00"}}, {"id": "36d261f0-73aa-4714-8061-d3f11dca0fca", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:45.338495+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "47c9a609-4d6e-4428-8ec3-5f7171f92b86", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/47c9a609-4d6e-4428-8ec3-5f7171f92b86.png", "timestamp": "2024-02-15T20:37:34.531694+00:00"}}, {"id": "10fa6312-f164-493c-926a-cea9409dfae0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.657830+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "e474ce3a-9df3-43d8-b543-9c7d62917557", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/e474ce3a-9df3-43d8-b543-9c7d62917557.png", "timestamp": "2024-02-15T20:40:08.195139+00:00"}}, {"id": "6dfe4456-3be0-4d75-9815-27ecbe64b795", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:18.905892+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e474ce3a-9df3-43d8-b543-9c7d62917557", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/e474ce3a-9df3-43d8-b543-9c7d62917557.png", "timestamp": "2024-02-15T20:40:08.195139+00:00"}}, {"id": "b0f6ede1-95e5-4cc1-b607-26fe68c00630", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:19.979946+00:00", "label": "null", "label_explanation": "The image captures a six-lane urban road with a partial view of the beach on the left side. There are tall buildings on the right side of the road, and the sky is cloudy with shades of grey and light blue. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "e474ce3a-9df3-43d8-b543-9c7d62917557", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/e474ce3a-9df3-43d8-b543-9c7d62917557.png", "timestamp": "2024-02-15T20:40:08.195139+00:00"}}, {"id": "934c4cf9-a782-4cb4-9b63-224175686b27", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.461151+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "e474ce3a-9df3-43d8-b543-9c7d62917557", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/e474ce3a-9df3-43d8-b543-9c7d62917557.png", "timestamp": "2024-02-15T20:40:08.195139+00:00"}}, {"id": "573a4f75-99c0-4034-a0c1-f2cc125c5a87", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.070813+00:00", "label": "easy", "label_explanation": "The road is moderately busy with cars, but traffic is still flowing smoothly.", "snapshot": {"id": "e474ce3a-9df3-43d8-b543-9c7d62917557", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/e474ce3a-9df3-43d8-b543-9c7d62917557.png", "timestamp": "2024-02-15T20:40:08.195139+00:00"}}, {"id": "33081788-77ea-4a5d-88a7-79c66516fe07", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:20.856068+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "e474ce3a-9df3-43d8-b543-9c7d62917557", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/e474ce3a-9df3-43d8-b543-9c7d62917557.png", "timestamp": "2024-02-15T20:40:08.195139+00:00"}}, {"id": "173e0e1c-1e34-46cd-9d15-9eb1775c7f52", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:41.691198+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform grey color indicating data loss or corruption.", "snapshot": {"id": "25ba0bd3-57ab-4a02-a3c1-ec5f15554ecf", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/25ba0bd3-57ab-4a02-a3c1-ec5f15554ecf.png", "timestamp": "2024-02-15T20:42:31.849527+00:00"}}, {"id": "c46bb05a-f984-436f-8efc-7f1f5a50d3b0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:42.013246+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "25ba0bd3-57ab-4a02-a3c1-ec5f15554ecf", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/25ba0bd3-57ab-4a02-a3c1-ec5f15554ecf.png", "timestamp": "2024-02-15T20:42:31.849527+00:00"}}, {"id": "d2ecd260-b281-40cb-b7d4-483f648877e6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:34.248810+00:00", "label": "null", "label_explanation": "The image captures a coastal avenue with a clear view of the beach on one side and a row of buildings on the other. The sky is partially cloudy, and the weather appears to be overcast.", "snapshot": {"id": "81506298-a3ab-479b-b6f3-428effca4be0", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/81506298-a3ab-479b-b6f3-428effca4be0.png", "timestamp": "2024-02-15T20:47:23.590304+00:00"}}, {"id": "aa775450-a9f2-4c83-8187-e96cf4ab51bc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:34.829856+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible signs of water accumulation.", "snapshot": {"id": "81506298-a3ab-479b-b6f3-428effca4be0", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/81506298-a3ab-479b-b6f3-428effca4be0.png", "timestamp": "2024-02-15T20:47:23.590304+00:00"}}, {"id": "c0907b13-c64f-4ecf-925b-c1c1dc1b94a8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.367740+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road.", "snapshot": {"id": "81506298-a3ab-479b-b6f3-428effca4be0", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/81506298-a3ab-479b-b6f3-428effca4be0.png", "timestamp": "2024-02-15T20:47:23.590304+00:00"}}, {"id": "64a66b8d-f8d3-4ad8-bf3d-dbe1a0e79149", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.007246+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "81506298-a3ab-479b-b6f3-428effca4be0", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/81506298-a3ab-479b-b6f3-428effca4be0.png", "timestamp": "2024-02-15T20:47:23.590304+00:00"}}, {"id": "18c08ccb-0e7f-4e64-8fbd-f8ee99b172b2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:34.582067+00:00", "label": "false", "label_explanation": "There are no visible signs of rain or water on the road surface.", "snapshot": {"id": "81506298-a3ab-479b-b6f3-428effca4be0", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/81506298-a3ab-479b-b6f3-428effca4be0.png", "timestamp": "2024-02-15T20:47:23.590304+00:00"}}, {"id": "4101f18d-950a-4d60-a350-2f788b03f4d3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:33.923622+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "81506298-a3ab-479b-b6f3-428effca4be0", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/81506298-a3ab-479b-b6f3-428effca4be0.png", "timestamp": "2024-02-15T20:47:23.590304+00:00"}}, {"id": "b044aa35-9188-4c0f-b10c-df4ee9c2e3c6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.207468+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a steady flow of vehicles.", "snapshot": {"id": "a4f2caed-6580-4e10-9c94-339f646f4f92", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/a4f2caed-6580-4e10-9c94-339f646f4f92.png", "timestamp": "2024-02-15T20:32:30.615993+00:00"}}, {"id": "ed265a0b-88d7-4301-a37c-f29cc3136306", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:46.145633+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "a4f2caed-6580-4e10-9c94-339f646f4f92", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/a4f2caed-6580-4e10-9c94-339f646f4f92.png", "timestamp": "2024-02-15T20:32:30.615993+00:00"}}, {"id": "4edc9c32-4361-41f1-8645-58b584c99e74", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:44.547594+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "a4f2caed-6580-4e10-9c94-339f646f4f92", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/a4f2caed-6580-4e10-9c94-339f646f4f92.png", "timestamp": "2024-02-15T20:32:30.615993+00:00"}}, {"id": "ea8b3ec6-9964-4daa-bd3b-7b951ffb6d59", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:43.768827+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "a4f2caed-6580-4e10-9c94-339f646f4f92", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/a4f2caed-6580-4e10-9c94-339f646f4f92.png", "timestamp": "2024-02-15T20:32:30.615993+00:00"}}, {"id": "01c97b90-8f3e-4caf-b5da-d7fbe12aff43", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:42.994629+00:00", "label": "null", "label_explanation": "The image captures a wide urban road with a clear view of the sky and surrounding buildings. The road is in good condition, with visible lanes and markings. There are trees on either side of the road, and the weather appears to be cloudy.", "snapshot": {"id": "a4f2caed-6580-4e10-9c94-339f646f4f92", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/a4f2caed-6580-4e10-9c94-339f646f4f92.png", "timestamp": "2024-02-15T20:32:30.615993+00:00"}}, {"id": "cd4fb63f-80d3-489f-9a8b-5e40ec9732c1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:41.985407+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a4f2caed-6580-4e10-9c94-339f646f4f92", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/a4f2caed-6580-4e10-9c94-339f646f4f92.png", "timestamp": "2024-02-15T20:32:30.615993+00:00"}}, {"id": "62a847aa-3c6a-42b8-8831-0e6c463ced0b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.070420+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is completely clear.", "snapshot": {"id": "2fb755b8-19d8-4cd3-a38b-575f3433becd", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/2fb755b8-19d8-4cd3-a38b-575f3433becd.png", "timestamp": "2024-02-15T20:52:11.215388+00:00"}}, {"id": "b3b8cc0a-296f-4732-a815-dfb26434cc55", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.366767+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "2fb755b8-19d8-4cd3-a38b-575f3433becd", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/2fb755b8-19d8-4cd3-a38b-575f3433becd.png", "timestamp": "2024-02-15T20:52:11.215388+00:00"}}, {"id": "a66d98fe-fc5a-4c49-ac65-1bce3b004301", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.853909+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving smoothly.", "snapshot": {"id": "2fb755b8-19d8-4cd3-a38b-575f3433becd", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/2fb755b8-19d8-4cd3-a38b-575f3433becd.png", "timestamp": "2024-02-15T20:52:11.215388+00:00"}}, {"id": "a762f827-f563-49dd-9fd1-8f937895307f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:21.971214+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2fb755b8-19d8-4cd3-a38b-575f3433becd", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/2fb755b8-19d8-4cd3-a38b-575f3433becd.png", "timestamp": "2024-02-15T20:52:11.215388+00:00"}}, {"id": "9b5c44fb-1b7e-4bd7-ab9b-3c92eeef1e69", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.660633+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "2fb755b8-19d8-4cd3-a38b-575f3433becd", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/2fb755b8-19d8-4cd3-a38b-575f3433becd.png", "timestamp": "2024-02-15T20:52:11.215388+00:00"}}, {"id": "211c54b9-82b3-4e31-8f90-5224397945a7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.158940+00:00", "label": "null", "label_explanation": "The image captures a wide urban road with a clear view of the sky and surrounding buildings. The road is in good condition, with visible lanes and markings. There are a few trees on either side of the road, and the weather appears to be clear.", "snapshot": {"id": "2fb755b8-19d8-4cd3-a38b-575f3433becd", "camera_id": "001231", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001231/2fb755b8-19d8-4cd3-a38b-575f3433becd.png", "timestamp": "2024-02-15T20:52:11.215388+00:00"}}]}, {"id": "001510", "name": "R. JOS\u00c9 EUG\u00caNIO, 18 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908592, "longitude": -43.220478, "objects": ["image_description", "image_corrupted", "traffic", "water_level", "rain", "road_blockade"], "identifications": [{"id": "fd313b6e-26ce-44b3-8aec-f8f8be7e9f5a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.841851+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several parked cars on the side of the road, and a few people are walking on the sidewalk.", "snapshot": {"id": "cfeb699b-ba13-4883-a1b4-d423147b505d", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/cfeb699b-ba13-4883-a1b4-d423147b505d.png", "timestamp": "2024-02-15T20:30:30.245012+00:00"}}, {"id": "8614dc3d-1a08-45b9-98fb-5657d6a5352e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.611543+00:00", "label": "easy", "label_explanation": "The road is open to traffic, with no visible obstructions or hazards. Traffic is flowing smoothly, with both cars and pedestrians using the road without any issues.", "snapshot": {"id": "cfeb699b-ba13-4883-a1b4-d423147b505d", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/cfeb699b-ba13-4883-a1b4-d423147b505d.png", "timestamp": "2024-02-15T20:30:30.245012+00:00"}}, {"id": "3b96fca8-b00b-459b-a4ec-3351c2d06ee7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.085559+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "cfeb699b-ba13-4883-a1b4-d423147b505d", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/cfeb699b-ba13-4883-a1b4-d423147b505d.png", "timestamp": "2024-02-15T20:30:30.245012+00:00"}}, {"id": "fe9a5693-e44b-4896-830b-6d8d278b6bcd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.559244+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cfeb699b-ba13-4883-a1b4-d423147b505d", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/cfeb699b-ba13-4883-a1b4-d423147b505d.png", "timestamp": "2024-02-15T20:30:30.245012+00:00"}}, {"id": "8da15230-58e5-4e31-9d5c-f755743a2f26", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.168680+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades. Traffic can flow freely without any hindrance.", "snapshot": {"id": "cfeb699b-ba13-4883-a1b4-d423147b505d", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/cfeb699b-ba13-4883-a1b4-d423147b505d.png", "timestamp": "2024-02-15T20:30:30.245012+00:00"}}, {"id": "10882040-2ed4-4721-b063-59219e8e23da", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.405667+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While the road is wet, the water has drained effectively, leaving the road safe for normal traffic.", "snapshot": {"id": "cfeb699b-ba13-4883-a1b4-d423147b505d", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/cfeb699b-ba13-4883-a1b4-d423147b505d.png", "timestamp": "2024-02-15T20:30:30.245012+00:00"}}, {"id": "3efafe1f-2372-40b4-881a-e4442487f2f6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.420466+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rain. There are several parked cars on the side of the road, and a few pedestrians are walking on the sidewalk.", "snapshot": {"id": "4a2f6693-7ecd-42f9-a757-1c6f13fbff55", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4a2f6693-7ecd-42f9-a757-1c6f13fbff55.png", "timestamp": "2024-02-15T20:42:59.235140+00:00"}}, {"id": "e793353a-e1dd-4c65-8783-64aae6dd50eb", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.465668+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "4a2f6693-7ecd-42f9-a757-1c6f13fbff55", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4a2f6693-7ecd-42f9-a757-1c6f13fbff55.png", "timestamp": "2024-02-15T20:42:59.235140+00:00"}}, {"id": "42ad47e7-4c2d-4d76-a16d-a6fd3db70bd0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.213830+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major disruptions. The wet road conditions may cause some minor delays, but overall traffic is moving at a normal pace.", "snapshot": {"id": "4a2f6693-7ecd-42f9-a757-1c6f13fbff55", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4a2f6693-7ecd-42f9-a757-1c6f13fbff55.png", "timestamp": "2024-02-15T20:42:59.235140+00:00"}}, {"id": "fae916cd-07af-4ce9-8d6e-263c3fc704b8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.012571+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The road surface is still visible, and traffic is able to flow smoothly.", "snapshot": {"id": "4a2f6693-7ecd-42f9-a757-1c6f13fbff55", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4a2f6693-7ecd-42f9-a757-1c6f13fbff55.png", "timestamp": "2024-02-15T20:42:59.235140+00:00"}}, {"id": "32fafea9-8e39-4019-ad49-6f84c45c83e8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.183424+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4a2f6693-7ecd-42f9-a757-1c6f13fbff55", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4a2f6693-7ecd-42f9-a757-1c6f13fbff55.png", "timestamp": "2024-02-15T20:42:59.235140+00:00"}}, {"id": "56f30edb-94b8-4133-80a6-e0a5bfbcd9e0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.775032+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the ground. However, the rain is not heavy enough to cause any significant traffic disruptions.", "snapshot": {"id": "4a2f6693-7ecd-42f9-a757-1c6f13fbff55", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4a2f6693-7ecd-42f9-a757-1c6f13fbff55.png", "timestamp": "2024-02-15T20:42:59.235140+00:00"}}, {"id": "f0783edd-e54b-445d-bed2-221842d5794e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.422556+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The wetness is likely due to recent rain that has since stopped.", "snapshot": {"id": "4f7ecadb-0af4-4cd1-93a0-71af2203167a", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4f7ecadb-0af4-4cd1-93a0-71af2203167a.png", "timestamp": "2024-02-15T20:47:46.344383+00:00"}}, {"id": "c089214b-14d2-4299-baba-e8250b8849a5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.879980+00:00", "label": "free", "label_explanation": "There are no obstructions on the road surface that would impede traffic.", "snapshot": {"id": "4f7ecadb-0af4-4cd1-93a0-71af2203167a", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4f7ecadb-0af4-4cd1-93a0-71af2203167a.png", "timestamp": "2024-02-15T20:47:46.344383+00:00"}}, {"id": "b7b98632-a534-4c56-9ec9-107ce3758266", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.716133+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4f7ecadb-0af4-4cd1-93a0-71af2203167a", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4f7ecadb-0af4-4cd1-93a0-71af2203167a.png", "timestamp": "2024-02-15T20:47:46.344383+00:00"}}, {"id": "c8b71d1d-8c42-4d51-91ed-c223faeb6da5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.652265+00:00", "label": "easy", "label_explanation": "The parked cars on the side of the road indicate that traffic is not heavy. The few people walking on the sidewalk are also not impeded by any traffic.", "snapshot": {"id": "4f7ecadb-0af4-4cd1-93a0-71af2203167a", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4f7ecadb-0af4-4cd1-93a0-71af2203167a.png", "timestamp": "2024-02-15T20:47:46.344383+00:00"}}, {"id": "83f43183-a1c2-426e-9257-1b2096276545", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.900791+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rain. There are several parked cars on the side of the road, and a few people are walking on the sidewalk.", "snapshot": {"id": "4f7ecadb-0af4-4cd1-93a0-71af2203167a", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4f7ecadb-0af4-4cd1-93a0-71af2203167a.png", "timestamp": "2024-02-15T20:47:46.344383+00:00"}}, {"id": "e3561ff8-9446-4652-8792-92c5f78b160d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.156221+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy, as the parked cars are not obscured by water.", "snapshot": {"id": "4f7ecadb-0af4-4cd1-93a0-71af2203167a", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/4f7ecadb-0af4-4cd1-93a0-71af2203167a.png", "timestamp": "2024-02-15T20:47:46.344383+00:00"}}, {"id": "46c4eb51-bbb2-4c59-b3d6-09a02e531e60", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.904969+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3.png", "timestamp": "2024-02-15T20:45:22.498466+00:00"}}, {"id": "ec6af577-05a0-49b2-921f-5c0128be2737", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.281922+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or obstacles.", "snapshot": {"id": "1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3.png", "timestamp": "2024-02-15T20:45:22.498466+00:00"}}, {"id": "d65dd49a-efa7-4866-9173-33144e032f66", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.556664+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3.png", "timestamp": "2024-02-15T20:45:22.498466+00:00"}}, {"id": "e9f133fe-0e3a-44b4-a36b-857652455561", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.048840+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3.png", "timestamp": "2024-02-15T20:45:22.498466+00:00"}}, {"id": "5ba3ada5-56e7-45f9-828b-4c393764f4b6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.668528+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few parked cars on the side and two people walking on the sidewalk.", "snapshot": {"id": "1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3.png", "timestamp": "2024-02-15T20:45:22.498466+00:00"}}, {"id": "048eddd8-7039-4ad0-8915-4cf478d57a70", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.490668+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/1f7c0b32-bdb2-4b23-b2c4-6f4fe449c5f3.png", "timestamp": "2024-02-15T20:45:22.498466+00:00"}}, {"id": "d9c167d6-cff1-4a58-963e-fd84bcbdae39", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.408548+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c9269fd1-0988-42a7-b91b-57898e898e17", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/c9269fd1-0988-42a7-b91b-57898e898e17.png", "timestamp": "2024-02-15T20:38:06.476318+00:00"}}, {"id": "f95845ac-35fb-4d30-94a9-dbf9bfdbc2f4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.967851+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "c9269fd1-0988-42a7-b91b-57898e898e17", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/c9269fd1-0988-42a7-b91b-57898e898e17.png", "timestamp": "2024-02-15T20:38:06.476318+00:00"}}, {"id": "91e9e4f0-6482-4e10-9816-501b06444ce9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.681919+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades. Traffic is able to flow freely in both directions.", "snapshot": {"id": "c9269fd1-0988-42a7-b91b-57898e898e17", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/c9269fd1-0988-42a7-b91b-57898e898e17.png", "timestamp": "2024-02-15T20:38:06.476318+00:00"}}, {"id": "56e71916-07e0-4e5c-9069-5aaa8040a2cb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.395987+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "c9269fd1-0988-42a7-b91b-57898e898e17", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/c9269fd1-0988-42a7-b91b-57898e898e17.png", "timestamp": "2024-02-15T20:38:06.476318+00:00"}}, {"id": "78205637-c422-4858-ba73-ca7129c40746", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.194990+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While it is wet from rain, the water has drained effectively, leaving the road navigable.", "snapshot": {"id": "c9269fd1-0988-42a7-b91b-57898e898e17", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/c9269fd1-0988-42a7-b91b-57898e898e17.png", "timestamp": "2024-02-15T20:38:06.476318+00:00"}}, {"id": "53c0fd5b-e442-435e-855a-cdc16321cc61", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.652808+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rainfall. There are several vehicles on the road, including a yellow taxi and a black sedan.", "snapshot": {"id": "c9269fd1-0988-42a7-b91b-57898e898e17", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/c9269fd1-0988-42a7-b91b-57898e898e17.png", "timestamp": "2024-02-15T20:38:06.476318+00:00"}}, {"id": "912e241f-fef8-47d6-8967-8f91f580cafa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.901177+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions on the road. The motorcycle is able to drive freely without any hindrance.", "snapshot": {"id": "f04bf6d0-9a6a-4528-ac45-b88aa62f3546", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/f04bf6d0-9a6a-4528-ac45-b88aa62f3546.png", "timestamp": "2024-02-15T20:35:33.698749+00:00"}}, {"id": "7ce321d0-5246-4646-a252-e3b02ec08a8c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.362061+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some puddles, but they are shallow and do not pose a significant hazard to drivers.", "snapshot": {"id": "f04bf6d0-9a6a-4528-ac45-b88aa62f3546", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/f04bf6d0-9a6a-4528-ac45-b88aa62f3546.png", "timestamp": "2024-02-15T20:35:33.698749+00:00"}}, {"id": "4cae3270-1a90-448c-b18a-626b3c306008", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.122681+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "f04bf6d0-9a6a-4528-ac45-b88aa62f3546", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/f04bf6d0-9a6a-4528-ac45-b88aa62f3546.png", "timestamp": "2024-02-15T20:35:33.698749+00:00"}}, {"id": "e62562bf-a257-4dea-8a94-2100a1bb57df", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:51.896789+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rain. There are several parked cars on the side of the road, and a motorcycle is driving in the middle of the street. The road is lined with buildings and trees.", "snapshot": {"id": "f04bf6d0-9a6a-4528-ac45-b88aa62f3546", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/f04bf6d0-9a6a-4528-ac45-b88aa62f3546.png", "timestamp": "2024-02-15T20:35:33.698749+00:00"}}, {"id": "6a33615b-1d16-420f-8d41-1d47687c7830", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:51.615162+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f04bf6d0-9a6a-4528-ac45-b88aa62f3546", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/f04bf6d0-9a6a-4528-ac45-b88aa62f3546.png", "timestamp": "2024-02-15T20:35:33.698749+00:00"}}, {"id": "bd76b36a-174e-40d0-8e69-2067da51748f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.659973+00:00", "label": "easy", "label_explanation": "The traffic is light, and there are no major obstructions on the road. The motorcycle is able to drive in the middle of the street without any difficulty.", "snapshot": {"id": "f04bf6d0-9a6a-4528-ac45-b88aa62f3546", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/f04bf6d0-9a6a-4528-ac45-b88aa62f3546.png", "timestamp": "2024-02-15T20:35:33.698749+00:00"}}, {"id": "790fd161-d610-4ee5-97db-c4c5a5c28964", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.712164+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles and pedestrians.", "snapshot": {"id": "35b4b324-05a5-44c8-8f38-e2d716e5b5d0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/35b4b324-05a5-44c8-8f38-e2d716e5b5d0.png", "timestamp": "2024-02-15T20:40:34.502934+00:00"}}, {"id": "bab73a3e-f46e-42c7-9341-cf3beaeb6a66", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.511832+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars on the road. The cars are able to move freely without any significant delays.", "snapshot": {"id": "35b4b324-05a5-44c8-8f38-e2d716e5b5d0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/35b4b324-05a5-44c8-8f38-e2d716e5b5d0.png", "timestamp": "2024-02-15T20:40:34.502934+00:00"}}, {"id": "f74e2782-922d-4597-93f1-985958391413", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:46.784941+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several parked cars on the side of the road, and a few people are walking on the sidewalk.", "snapshot": {"id": "35b4b324-05a5-44c8-8f38-e2d716e5b5d0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/35b4b324-05a5-44c8-8f38-e2d716e5b5d0.png", "timestamp": "2024-02-15T20:40:34.502934+00:00"}}, {"id": "05d60a90-db75-45f5-a73d-60d42d188538", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.233227+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no significant puddles or areas where the road is submerged in water.", "snapshot": {"id": "35b4b324-05a5-44c8-8f38-e2d716e5b5d0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/35b4b324-05a5-44c8-8f38-e2d716e5b5d0.png", "timestamp": "2024-02-15T20:40:34.502934+00:00"}}, {"id": "7ee77204-5aba-46ad-a1d5-52a2cf121825", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.021928+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "35b4b324-05a5-44c8-8f38-e2d716e5b5d0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/35b4b324-05a5-44c8-8f38-e2d716e5b5d0.png", "timestamp": "2024-02-15T20:40:34.502934+00:00"}}, {"id": "fc7904ba-d625-4564-b347-c5ae0f14bfb1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:46.432128+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "35b4b324-05a5-44c8-8f38-e2d716e5b5d0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/35b4b324-05a5-44c8-8f38-e2d716e5b5d0.png", "timestamp": "2024-02-15T20:40:34.502934+00:00"}}, {"id": "8eba3ec6-976c-4668-9a61-9901a1300e4e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.160150+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable.", "snapshot": {"id": "5f4ee85d-86ea-4039-b6f5-88ec637acca0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/5f4ee85d-86ea-4039-b6f5-88ec637acca0.png", "timestamp": "2024-02-15T20:52:32.786927+00:00"}}, {"id": "dd434c13-368e-4af9-ae31-2760b381ab4f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.049881+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "5f4ee85d-86ea-4039-b6f5-88ec637acca0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/5f4ee85d-86ea-4039-b6f5-88ec637acca0.png", "timestamp": "2024-02-15T20:52:32.786927+00:00"}}, {"id": "f40c51ec-2285-4048-85aa-91bcd8c008e4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.155630+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5f4ee85d-86ea-4039-b6f5-88ec637acca0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/5f4ee85d-86ea-4039-b6f5-88ec637acca0.png", "timestamp": "2024-02-15T20:52:32.786927+00:00"}}, {"id": "26efe58b-05cc-4ebb-a8a6-7a6152150acb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.569700+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the sidewalk.", "snapshot": {"id": "5f4ee85d-86ea-4039-b6f5-88ec637acca0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/5f4ee85d-86ea-4039-b6f5-88ec637acca0.png", "timestamp": "2024-02-15T20:52:32.786927+00:00"}}, {"id": "2e2b60c2-dc96-4e74-87d9-fb60121b7b14", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.371634+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are a few people walking on the sidewalk, and several vehicles, including a bus, are visible on the street.", "snapshot": {"id": "5f4ee85d-86ea-4039-b6f5-88ec637acca0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/5f4ee85d-86ea-4039-b6f5-88ec637acca0.png", "timestamp": "2024-02-15T20:52:32.786927+00:00"}}, {"id": "ab35458b-afd1-4f9f-a5ce-fc5dc7c21363", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.777789+00:00", "label": "low", "label_explanation": "The water level on the road is low. While there are puddles on the sidewalk, the road itself is mostly dry.", "snapshot": {"id": "5f4ee85d-86ea-4039-b6f5-88ec637acca0", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/5f4ee85d-86ea-4039-b6f5-88ec637acca0.png", "timestamp": "2024-02-15T20:52:32.786927+00:00"}}, {"id": "c614a3d1-5da0-4104-800e-e77a88c13835", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.008257+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "973c7380-4e0d-4c69-a81d-083ea46185ba", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/973c7380-4e0d-4c69-a81d-083ea46185ba.png", "timestamp": "2024-02-15T20:50:10.033552+00:00"}}, {"id": "7676809e-7317-4c6d-b27a-8c5e542fa351", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.261832+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free movement of traffic.", "snapshot": {"id": "973c7380-4e0d-4c69-a81d-083ea46185ba", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/973c7380-4e0d-4c69-a81d-083ea46185ba.png", "timestamp": "2024-02-15T20:50:10.033552+00:00"}}, {"id": "e1a57d6c-9bc9-41c6-95e4-33db8bed63fe", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.776683+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not causing any significant hindrance to traffic.", "snapshot": {"id": "973c7380-4e0d-4c69-a81d-083ea46185ba", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/973c7380-4e0d-4c69-a81d-083ea46185ba.png", "timestamp": "2024-02-15T20:50:10.033552+00:00"}}, {"id": "84f3fde1-8e81-4c87-b10f-cd9cf70e3064", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.567346+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "973c7380-4e0d-4c69-a81d-083ea46185ba", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/973c7380-4e0d-4c69-a81d-083ea46185ba.png", "timestamp": "2024-02-15T20:50:10.033552+00:00"}}, {"id": "7f7e0008-d40b-4494-b2fe-10d255fb0674", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.369135+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a white Hyundai i10 car in the foreground, a yellow bus in the background, and a person walking on the sidewalk to the right. There are buildings and foliage on either side of the road, and the sky appears overcast.", "snapshot": {"id": "973c7380-4e0d-4c69-a81d-083ea46185ba", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/973c7380-4e0d-4c69-a81d-083ea46185ba.png", "timestamp": "2024-02-15T20:50:10.033552+00:00"}}, {"id": "dd10bf7d-5852-450b-8549-1e50e28c7f9b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.149286+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "973c7380-4e0d-4c69-a81d-083ea46185ba", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/973c7380-4e0d-4c69-a81d-083ea46185ba.png", "timestamp": "2024-02-15T20:50:10.033552+00:00"}}, {"id": "704179a4-95d8-4540-a9f0-41c25ae1ef82", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.075969+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and the road surface is still visible. There is no significant risk of flooding.", "snapshot": {"id": "205e338c-032c-4ce6-b325-b7fd34236cd3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/205e338c-032c-4ce6-b325-b7fd34236cd3.png", "timestamp": "2024-02-15T20:55:02.163165+00:00"}}, {"id": "a28eecf8-0238-4dff-bf4d-3a42de3f9932", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.586932+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including a white van, a yellow taxi, and a few private cars. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "205e338c-032c-4ce6-b325-b7fd34236cd3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/205e338c-032c-4ce6-b325-b7fd34236cd3.png", "timestamp": "2024-02-15T20:55:02.163165+00:00"}}, {"id": "c7d75d09-69aa-4981-94b8-0ef0b7c2a83b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.385557+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of data loss or corruption.", "snapshot": {"id": "205e338c-032c-4ce6-b325-b7fd34236cd3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/205e338c-032c-4ce6-b325-b7fd34236cd3.png", "timestamp": "2024-02-15T20:55:02.163165+00:00"}}, {"id": "90201db6-61e0-49fc-96b2-68adb01ee6c0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.549471+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable in both directions.", "snapshot": {"id": "205e338c-032c-4ce6-b325-b7fd34236cd3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/205e338c-032c-4ce6-b325-b7fd34236cd3.png", "timestamp": "2024-02-15T20:55:02.163165+00:00"}}, {"id": "90c685bc-7ae8-4621-a985-132b263bfff8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.286653+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move freely. There are no major delays or obstructions.", "snapshot": {"id": "205e338c-032c-4ce6-b325-b7fd34236cd3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/205e338c-032c-4ce6-b325-b7fd34236cd3.png", "timestamp": "2024-02-15T20:55:02.163165+00:00"}}, {"id": "8419a79e-26c0-4372-8614-0e2f2a420ccf", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.814003+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "205e338c-032c-4ce6-b325-b7fd34236cd3", "camera_id": "001510", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001510/205e338c-032c-4ce6-b325-b7fd34236cd3.png", "timestamp": "2024-02-15T20:55:02.163165+00:00"}}]}, {"id": "001491", "name": "R. PEREIRA NUNES X R. BAR\u00c3O DE MESQUITA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92416064, "longitude": -43.23629799, "objects": ["image_corrupted", "traffic", "image_description", "water_level", "rain", "road_blockade"], "identifications": [{"id": "d2d7765a-926c-4a3a-aad5-80ab7dc27677", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:53.145853+00:00", "label": "free", "label_explanation": "There are no obstructions on the road and traffic is flowing smoothly.", "snapshot": {"id": "8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2.png", "timestamp": "2024-02-15T20:30:35.167938+00:00"}}, {"id": "c1fe7fe9-69eb-4c77-8347-768f48806c1c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:53.009974+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2.png", "timestamp": "2024-02-15T20:30:35.167938+00:00"}}, {"id": "e86f91f9-47c2-4334-86a9-1d59d4d38822", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:52.804398+00:00", "label": "low", "label_explanation": "The water level on the road is low, with small puddles scattered around.", "snapshot": {"id": "8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2.png", "timestamp": "2024-02-15T20:30:35.167938+00:00"}}, {"id": "edafadfa-5e53-4aaf-8b17-c4458bfc667a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:52.524755+00:00", "label": "true", "label_explanation": "The road surface is wet and there are small puddles of water on the road.", "snapshot": {"id": "8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2.png", "timestamp": "2024-02-15T20:30:35.167938+00:00"}}, {"id": "2893c3de-8cfa-4a34-98ef-5e766e238648", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:52.298803+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and vehicles on the street. It appears to be daytime and there are signs of rain.", "snapshot": {"id": "8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2.png", "timestamp": "2024-02-15T20:30:35.167938+00:00"}}, {"id": "138b6f60-6299-4298-81ac-c1d2b8ac8e37", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:52.046147+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/8ebdd16d-d0c0-4ecd-8064-0f060baf9fe2.png", "timestamp": "2024-02-15T20:30:35.167938+00:00"}}, {"id": "12d19cf2-6274-43e4-97a2-0d827ead7b80", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:03.248979+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "cb9ad7be-95f9-4ebf-8704-a6852309e2b6", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/cb9ad7be-95f9-4ebf-8704-a6852309e2b6.png", "timestamp": "2024-02-15T20:47:51.463808+00:00"}}, {"id": "c2416cfe-94cd-43ef-8ec7-f1714261d22c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:03.825149+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "cb9ad7be-95f9-4ebf-8704-a6852309e2b6", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/cb9ad7be-95f9-4ebf-8704-a6852309e2b6.png", "timestamp": "2024-02-15T20:47:51.463808+00:00"}}, {"id": "235ffa30-62fa-4390-88ba-a0a1b7ca013e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:03.530153+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "cb9ad7be-95f9-4ebf-8704-a6852309e2b6", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/cb9ad7be-95f9-4ebf-8704-a6852309e2b6.png", "timestamp": "2024-02-15T20:47:51.463808+00:00"}}, {"id": "caa6f61a-d2ac-45df-81ef-7be0c322f000", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:03.028711+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "cb9ad7be-95f9-4ebf-8704-a6852309e2b6", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/cb9ad7be-95f9-4ebf-8704-a6852309e2b6.png", "timestamp": "2024-02-15T20:47:51.463808+00:00"}}, {"id": "3d2ec097-1af9-449c-9b3d-7fb4d455e67e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.540311+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cb9ad7be-95f9-4ebf-8704-a6852309e2b6", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/cb9ad7be-95f9-4ebf-8704-a6852309e2b6.png", "timestamp": "2024-02-15T20:47:51.463808+00:00"}}, {"id": "1103d933-466e-491a-8823-12fe9ebc086b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.821845+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and a clear view of the street. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "cb9ad7be-95f9-4ebf-8704-a6852309e2b6", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/cb9ad7be-95f9-4ebf-8704-a6852309e2b6.png", "timestamp": "2024-02-15T20:47:51.463808+00:00"}}, {"id": "9aa35fb5-703e-44d6-b799-b36c70eb2f5f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:31.674421+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "3edf910e-4f9c-4c75-8b75-59a914d8ece4", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/3edf910e-4f9c-4c75-8b75-59a914d8ece4.png", "timestamp": "2024-02-15T20:33:15.121635+00:00"}}, {"id": "e8f72649-8cd5-4f75-b2e6-f01b34a3b705", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:30.660567+00:00", "label": "null", "label_explanation": "The image shows a busy urban road intersection with tall buildings on either side. There are cars, buses, and people crossing the intersection. The weather is cloudy and the road is wet from rain.", "snapshot": {"id": "3edf910e-4f9c-4c75-8b75-59a914d8ece4", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/3edf910e-4f9c-4c75-8b75-59a914d8ece4.png", "timestamp": "2024-02-15T20:33:15.121635+00:00"}}, {"id": "82479731-2709-4d03-a2ce-aca6e7693dae", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:31.407608+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars and buses moving slowly through the intersection.", "snapshot": {"id": "3edf910e-4f9c-4c75-8b75-59a914d8ece4", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/3edf910e-4f9c-4c75-8b75-59a914d8ece4.png", "timestamp": "2024-02-15T20:33:15.121635+00:00"}}, {"id": "63fc5eae-8309-4764-8c7b-005440d3e0a6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:31.149066+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "3edf910e-4f9c-4c75-8b75-59a914d8ece4", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/3edf910e-4f9c-4c75-8b75-59a914d8ece4.png", "timestamp": "2024-02-15T20:33:15.121635+00:00"}}, {"id": "c49a6540-c78d-49a0-aee7-3aa25383b7ae", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:30.886025+00:00", "label": "true", "label_explanation": "The road is wet from rain, but there is no standing water.", "snapshot": {"id": "3edf910e-4f9c-4c75-8b75-59a914d8ece4", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/3edf910e-4f9c-4c75-8b75-59a914d8ece4.png", "timestamp": "2024-02-15T20:33:15.121635+00:00"}}, {"id": "2377af25-c831-42f0-98c8-8116a7f709f9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:30.369739+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "3edf910e-4f9c-4c75-8b75-59a914d8ece4", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/3edf910e-4f9c-4c75-8b75-59a914d8ece4.png", "timestamp": "2024-02-15T20:33:15.121635+00:00"}}, {"id": "e4191fe4-c48a-4f73-bd11-8bf60a8cadd8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.540938+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with various vehicles, buildings, and\u690d\u88ab. The weather appears to be cloudy, and the road surface is wet from recent rain.", "snapshot": {"id": "0a9d801b-646a-41c6-85d8-013fed84d234", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/0a9d801b-646a-41c6-85d8-013fed84d234.png", "timestamp": "2024-02-15T20:43:02.995254+00:00"}}, {"id": "7b30286a-7ab4-4024-842c-81cae2176a77", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:15.350091+00:00", "label": "free", "label_explanation": "The road is clear, with no visible blockades or obstructions. Vehicles can\u901a\u884c\u8bc1freely through the intersection in all directions.", "snapshot": {"id": "0a9d801b-646a-41c6-85d8-013fed84d234", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/0a9d801b-646a-41c6-85d8-013fed84d234.png", "timestamp": "2024-02-15T20:43:02.995254+00:00"}}, {"id": "fe3a3101-8c64-4308-a7a8-48243143e6ce", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:15.142976+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "0a9d801b-646a-41c6-85d8-013fed84d234", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/0a9d801b-646a-41c6-85d8-013fed84d234.png", "timestamp": "2024-02-15T20:43:02.995254+00:00"}}, {"id": "498979b9-9507-422b-aa5d-16719435fdf5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.951836+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles visible. The majority of the road surface is dry, and vehicles can navigate through the area without difficulty.", "snapshot": {"id": "0a9d801b-646a-41c6-85d8-013fed84d234", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/0a9d801b-646a-41c6-85d8-013fed84d234.png", "timestamp": "2024-02-15T20:43:02.995254+00:00"}}, {"id": "51e0b695-b486-4933-ba8f-b05185bb01de", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.729385+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining recently. The water is shallow and does not appear to be causing any significant traffic disruptions.", "snapshot": {"id": "0a9d801b-646a-41c6-85d8-013fed84d234", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/0a9d801b-646a-41c6-85d8-013fed84d234.png", "timestamp": "2024-02-15T20:43:02.995254+00:00"}}, {"id": "40b97ebf-d340-41dd-8511-a517ea83523c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.292307+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0a9d801b-646a-41c6-85d8-013fed84d234", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/0a9d801b-646a-41c6-85d8-013fed84d234.png", "timestamp": "2024-02-15T20:43:02.995254+00:00"}}, {"id": "e7a66d1b-db21-4f4b-bef1-fd205438cd17", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:36:00.500711+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "c3f719ab-ab4e-4d86-b94a-9f511b71b81d", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c3f719ab-ab4e-4d86-b94a-9f511b71b81d.png", "timestamp": "2024-02-15T20:35:41.244535+00:00"}}, {"id": "ec7db406-7c32-4d5f-8f56-0e2660deb994", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:36:00.241550+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "c3f719ab-ab4e-4d86-b94a-9f511b71b81d", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c3f719ab-ab4e-4d86-b94a-9f511b71b81d.png", "timestamp": "2024-02-15T20:35:41.244535+00:00"}}, {"id": "cfced011-27e1-4f81-88fb-374b1da3cc68", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:36:00.011889+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "c3f719ab-ab4e-4d86-b94a-9f511b71b81d", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c3f719ab-ab4e-4d86-b94a-9f511b71b81d.png", "timestamp": "2024-02-15T20:35:41.244535+00:00"}}, {"id": "a943bb38-549e-4e15-889b-825674d8faf6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:59.731001+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "c3f719ab-ab4e-4d86-b94a-9f511b71b81d", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c3f719ab-ab4e-4d86-b94a-9f511b71b81d.png", "timestamp": "2024-02-15T20:35:41.244535+00:00"}}, {"id": "def107d0-0717-4be0-be30-bc363a5fb9d8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:59.516662+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, including buses and cars. The road is wet from recent rain, but there are no significant obstructions or hazards visible.", "snapshot": {"id": "c3f719ab-ab4e-4d86-b94a-9f511b71b81d", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c3f719ab-ab4e-4d86-b94a-9f511b71b81d.png", "timestamp": "2024-02-15T20:35:41.244535+00:00"}}, {"id": "91ef7553-8617-428d-8fab-e15fcbb014a3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:59.310258+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c3f719ab-ab4e-4d86-b94a-9f511b71b81d", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c3f719ab-ab4e-4d86-b94a-9f511b71b81d.png", "timestamp": "2024-02-15T20:35:41.244535+00:00"}}, {"id": "1a567317-6871-4363-acb4-6c8728e7fc35", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.973111+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "fc71bef9-0aff-47d4-a25d-81f82cfff6d2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/fc71bef9-0aff-47d4-a25d-81f82cfff6d2.png", "timestamp": "2024-02-15T20:38:14.238329+00:00"}}, {"id": "da10a172-3d88-4dc3-b261-dc50fdd5d553", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.775957+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "fc71bef9-0aff-47d4-a25d-81f82cfff6d2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/fc71bef9-0aff-47d4-a25d-81f82cfff6d2.png", "timestamp": "2024-02-15T20:38:14.238329+00:00"}}, {"id": "b9fb4881-db8a-4104-8029-aa1c79810f60", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.580702+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "fc71bef9-0aff-47d4-a25d-81f82cfff6d2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/fc71bef9-0aff-47d4-a25d-81f82cfff6d2.png", "timestamp": "2024-02-15T20:38:14.238329+00:00"}}, {"id": "5f2c3789-fc0e-43f8-9718-8ce6a024ee76", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.369296+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "fc71bef9-0aff-47d4-a25d-81f82cfff6d2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/fc71bef9-0aff-47d4-a25d-81f82cfff6d2.png", "timestamp": "2024-02-15T20:38:14.238329+00:00"}}, {"id": "4e060a27-2a02-46c2-ba97-adeacdba264b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.988085+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and vehicles on the street. It appears to be daytime and the weather is cloudy.", "snapshot": {"id": "fc71bef9-0aff-47d4-a25d-81f82cfff6d2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/fc71bef9-0aff-47d4-a25d-81f82cfff6d2.png", "timestamp": "2024-02-15T20:38:14.238329+00:00"}}, {"id": "d19bf35d-5f04-46bd-a3b6-1d15c91ca875", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.682470+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fc71bef9-0aff-47d4-a25d-81f82cfff6d2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/fc71bef9-0aff-47d4-a25d-81f82cfff6d2.png", "timestamp": "2024-02-15T20:38:14.238329+00:00"}}, {"id": "7626684e-af84-4f72-a422-45adf93d6036", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:52.558464+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road. Traffic is able to move freely in all directions.", "snapshot": {"id": "4adc7179-11e5-4a31-9fdd-a20f8e35b4f2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/4adc7179-11e5-4a31-9fdd-a20f8e35b4f2.png", "timestamp": "2024-02-15T20:40:39.707038+00:00"}}, {"id": "2b7ba7f0-02d9-4b18-a246-9ea36929b0fb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:52.354049+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars, buses, and bicycles moving through the intersection. Pedestrians are also crossing the street.", "snapshot": {"id": "4adc7179-11e5-4a31-9fdd-a20f8e35b4f2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/4adc7179-11e5-4a31-9fdd-a20f8e35b4f2.png", "timestamp": "2024-02-15T20:40:39.707038+00:00"}}, {"id": "8a5fa918-10fe-4c16-a64b-adef52598558", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:52.078456+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "4adc7179-11e5-4a31-9fdd-a20f8e35b4f2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/4adc7179-11e5-4a31-9fdd-a20f8e35b4f2.png", "timestamp": "2024-02-15T20:40:39.707038+00:00"}}, {"id": "6138ca24-5589-415d-8b6b-d06fdefe24de", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.652454+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy. There are several tall buildings in the background, and trees lining the streets. The road surface is wet from recent rain, but there are no large puddles or standing water.", "snapshot": {"id": "4adc7179-11e5-4a31-9fdd-a20f8e35b4f2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/4adc7179-11e5-4a31-9fdd-a20f8e35b4f2.png", "timestamp": "2024-02-15T20:40:39.707038+00:00"}}, {"id": "f8535263-15bc-4787-bf0e-4bf2bfd2e831", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.848875+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "4adc7179-11e5-4a31-9fdd-a20f8e35b4f2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/4adc7179-11e5-4a31-9fdd-a20f8e35b4f2.png", "timestamp": "2024-02-15T20:40:39.707038+00:00"}}, {"id": "8ae33a9c-d763-47e0-a0c7-8562eeb404af", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.440674+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4adc7179-11e5-4a31-9fdd-a20f8e35b4f2", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/4adc7179-11e5-4a31-9fdd-a20f8e35b4f2.png", "timestamp": "2024-02-15T20:40:39.707038+00:00"}}, {"id": "87673fef-8d47-42a4-a368-3a77190f3b8d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.090221+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3.png", "timestamp": "2024-02-15T20:45:27.636836+00:00"}}, {"id": "149482d7-a7e3-4e51-84c2-34835dc72a62", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.499399+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3.png", "timestamp": "2024-02-15T20:45:27.636836+00:00"}}, {"id": "d1c42e5a-4e68-43d8-9925-ed15cadfcc73", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.307928+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3.png", "timestamp": "2024-02-15T20:45:27.636836+00:00"}}, {"id": "62cfae75-6395-4b06-9a3e-93472754b74a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.808755+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3.png", "timestamp": "2024-02-15T20:45:27.636836+00:00"}}, {"id": "d7360c70-89f8-4683-94b8-5770421ff046", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.598504+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with various vehicles, buildings, and people.", "snapshot": {"id": "14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3.png", "timestamp": "2024-02-15T20:45:27.636836+00:00"}}, {"id": "b7600e5f-a6b4-43ac-93c5-2d716d5166ae", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.390318+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/14332c6a-7f7f-4fbf-bb0e-ff48e6903cf3.png", "timestamp": "2024-02-15T20:45:27.636836+00:00"}}, {"id": "0c382d21-1e49-4b6e-80ed-95d945953523", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.951316+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "c0fbf283-47c0-4ead-bb31-94e5143da92e", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c0fbf283-47c0-4ead-bb31-94e5143da92e.png", "timestamp": "2024-02-15T20:50:15.604595+00:00"}}, {"id": "9c92c197-1811-4b7e-9f55-cdcc06206452", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.538256+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few puddles on the surface.", "snapshot": {"id": "c0fbf283-47c0-4ead-bb31-94e5143da92e", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c0fbf283-47c0-4ead-bb31-94e5143da92e.png", "timestamp": "2024-02-15T20:50:15.604595+00:00"}}, {"id": "d6d9d1a5-b80a-41e6-ad2e-5af4b7cbb8d0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:26.862962+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c0fbf283-47c0-4ead-bb31-94e5143da92e", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c0fbf283-47c0-4ead-bb31-94e5143da92e.png", "timestamp": "2024-02-15T20:50:15.604595+00:00"}}, {"id": "6acb72f1-e40f-484f-8639-9c73762b3440", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.751399+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with several cars and a bus on the road.", "snapshot": {"id": "c0fbf283-47c0-4ead-bb31-94e5143da92e", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c0fbf283-47c0-4ead-bb31-94e5143da92e.png", "timestamp": "2024-02-15T20:50:15.604595+00:00"}}, {"id": "ead37250-feca-4d65-9b59-d3bfed7b9935", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.323212+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are a few puddles on the surface.", "snapshot": {"id": "c0fbf283-47c0-4ead-bb31-94e5143da92e", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c0fbf283-47c0-4ead-bb31-94e5143da92e.png", "timestamp": "2024-02-15T20:50:15.604595+00:00"}}, {"id": "dab7bbc0-8b58-400e-81d7-da5ef0c1ef1a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.038453+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and a bus\u505c\u9760\u5728\u8def\u8fb9. The road is wet from recent rain, and there are a few puddles on the surface. There are several cars and a bus on the road, and the traffic is moderate.", "snapshot": {"id": "c0fbf283-47c0-4ead-bb31-94e5143da92e", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/c0fbf283-47c0-4ead-bb31-94e5143da92e.png", "timestamp": "2024-02-15T20:50:15.604595+00:00"}}, {"id": "7a2362fb-002d-45dc-b5f5-69bd422e0720", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.915011+00:00", "label": "free", "label_explanation": "There are no road blockades, as the road is clear and passable.", "snapshot": {"id": "66f80511-a39a-41cf-99e5-23237f9093ba", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/66f80511-a39a-41cf-99e5-23237f9093ba.png", "timestamp": "2024-02-15T20:52:42.479688+00:00"}}, {"id": "3ba4cc4a-903e-4722-95a7-e7bf1c9f2a0e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.446224+00:00", "label": "low", "label_explanation": "The water level is low, as there is only a small amount of water on the road.", "snapshot": {"id": "66f80511-a39a-41cf-99e5-23237f9093ba", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/66f80511-a39a-41cf-99e5-23237f9093ba.png", "timestamp": "2024-02-15T20:52:42.479688+00:00"}}, {"id": "b1e10d8f-cde4-4041-9c18-8851de21d619", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:52.995707+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with tall buildings on the left and the right. There are cars on the street, a bus, and a motorcycle. There are also trees and other vegetation on the sides of the road.", "snapshot": {"id": "66f80511-a39a-41cf-99e5-23237f9093ba", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/66f80511-a39a-41cf-99e5-23237f9093ba.png", "timestamp": "2024-02-15T20:52:42.479688+00:00"}}, {"id": "af40c621-e9dc-4d48-843c-244715376232", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.203571+00:00", "label": "true", "label_explanation": "It is raining, as the road is wet and there are water droplets on the camera lens.", "snapshot": {"id": "66f80511-a39a-41cf-99e5-23237f9093ba", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/66f80511-a39a-41cf-99e5-23237f9093ba.png", "timestamp": "2024-02-15T20:52:42.479688+00:00"}}, {"id": "7bb241bf-4a66-4be2-8984-e74f1c7f09cc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:52.752799+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "66f80511-a39a-41cf-99e5-23237f9093ba", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/66f80511-a39a-41cf-99e5-23237f9093ba.png", "timestamp": "2024-02-15T20:52:42.479688+00:00"}}, {"id": "d8958c2b-b8a6-42c6-8e74-63d6dd23cb2e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.711847+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, as there are a number of cars and a bus on the road.", "snapshot": {"id": "66f80511-a39a-41cf-99e5-23237f9093ba", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/66f80511-a39a-41cf-99e5-23237f9093ba.png", "timestamp": "2024-02-15T20:52:42.479688+00:00"}}, {"id": "9e91fedd-b947-4ac8-be32-0b4acc73e4bc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.890644+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "28731e38-c74f-49dc-8ff9-a77c8e8281be", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/28731e38-c74f-49dc-8ff9-a77c8e8281be.png", "timestamp": "2024-02-15T20:55:05.793180+00:00"}}, {"id": "829110ba-dbb3-4724-8e2c-d75266f873e1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.689175+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and distorted shapes, making it impossible to analyze.", "snapshot": {"id": "28731e38-c74f-49dc-8ff9-a77c8e8281be", "camera_id": "001491", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001491/28731e38-c74f-49dc-8ff9-a77c8e8281be.png", "timestamp": "2024-02-15T20:55:05.793180+00:00"}}]}, {"id": "000260", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. NELSON MANDELA", "rtsp_url": "rtsp://admin:admin@10.52.13.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951251, "longitude": -43.184273, "objects": ["image_corrupted", "traffic", "rain", "image_description", "water_level", "road_blockade"], "identifications": []}, {"id": "001612", "name": "R. DR. LAGDEN, N.30 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914557, "longitude": -43.195153, "objects": ["rain", "traffic", "image_description", "water_level", "road_blockade", "image_corrupted"], "identifications": [{"id": "eb31164a-7bf2-400e-b43d-e8cb25fc6032", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:26.744927+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc.png", "timestamp": "2024-02-15T20:30:08.995892+00:00"}}, {"id": "595501ea-7401-4a08-9472-c3921582533e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:26.414980+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few vehicles visible on the road.", "snapshot": {"id": "bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc.png", "timestamp": "2024-02-15T20:30:08.995892+00:00"}}, {"id": "40ab5194-81bd-4253-a557-8884bc7af902", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.953320+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc.png", "timestamp": "2024-02-15T20:30:08.995892+00:00"}}, {"id": "8ca003a7-b9b6-4427-a47a-370c55828738", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.660394+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc.png", "timestamp": "2024-02-15T20:30:08.995892+00:00"}}, {"id": "c0017754-7ef8-4e50-a7f8-ae6988f2d297", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.313994+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a yellow taxi driving in the center. There are buildings and trees on either side of the road, and the sky is cloudy.", "snapshot": {"id": "bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc.png", "timestamp": "2024-02-15T20:30:08.995892+00:00"}}, {"id": "95b8cfc6-e145-42f5-a40d-b960cb7c0330", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.864300+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/bb4e7d5e-9f40-45f2-85a0-51ced4ac79bc.png", "timestamp": "2024-02-15T20:30:08.995892+00:00"}}, {"id": "876de6e1-708e-4dbe-b906-826a4cc9de17", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.054902+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no visible signs of water accumulation or flooding.", "snapshot": {"id": "ffb96a14-9871-456c-9415-5e6a49059d3d", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/ffb96a14-9871-456c-9415-5e6a49059d3d.png", "timestamp": "2024-02-15T20:32:33.696001+00:00"}}, {"id": "0708efa0-b634-4529-9d24-6e12c2bc8857", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:47.528034+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ffb96a14-9871-456c-9415-5e6a49059d3d", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/ffb96a14-9871-456c-9415-5e6a49059d3d.png", "timestamp": "2024-02-15T20:32:33.696001+00:00"}}, {"id": "dc72532e-bdae-4f56-99b9-e6b18d897708", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:51.454709+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions. The road is clear and passable in both directions.", "snapshot": {"id": "ffb96a14-9871-456c-9415-5e6a49059d3d", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/ffb96a14-9871-456c-9415-5e6a49059d3d.png", "timestamp": "2024-02-15T20:32:33.696001+00:00"}}, {"id": "559a493b-b104-4a32-9cff-52d65d42a738", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.685746+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving at a steady pace. There are no visible signs of congestion or delays.", "snapshot": {"id": "ffb96a14-9871-456c-9415-5e6a49059d3d", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/ffb96a14-9871-456c-9415-5e6a49059d3d.png", "timestamp": "2024-02-15T20:32:33.696001+00:00"}}, {"id": "f42dad75-721e-4892-9944-a5e8dd4a3b89", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:49.342117+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry and there are no signs of water accumulation.", "snapshot": {"id": "ffb96a14-9871-456c-9415-5e6a49059d3d", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/ffb96a14-9871-456c-9415-5e6a49059d3d.png", "timestamp": "2024-02-15T20:32:33.696001+00:00"}}, {"id": "024f5788-4fc2-42cb-8498-620af4e2842a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.229487+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several buildings and trees on either side of the road, and the road itself is relatively wide with multiple lanes.", "snapshot": {"id": "ffb96a14-9871-456c-9415-5e6a49059d3d", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/ffb96a14-9871-456c-9415-5e6a49059d3d.png", "timestamp": "2024-02-15T20:32:33.696001+00:00"}}, {"id": "d9d22b69-211d-4baa-9502-7af4888970d3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.306113+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with a green tint and distorted colors. It is not possible to discern any details about the road or traffic conditions.", "snapshot": {"id": "23e8c8dc-a6f2-4e7b-a6de-87c9905d812c", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/23e8c8dc-a6f2-4e7b-a6de-87c9905d812c.png", "timestamp": "2024-02-15T20:35:08.032771+00:00"}}, {"id": "a81e60ca-7192-491f-98b4-5d4408dee888", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.064812+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a detailed description.", "snapshot": {"id": "23e8c8dc-a6f2-4e7b-a6de-87c9905d812c", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/23e8c8dc-a6f2-4e7b-a6de-87c9905d812c.png", "timestamp": "2024-02-15T20:35:08.032771+00:00"}}, {"id": "3858f0a9-7cb7-40fd-adbb-dbf246362589", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.858514+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear. There are several vehicles on the road, including cars, buses, and motorcycles. The road is relatively wide, with two lanes in each direction. On the left side of the road, there is a sidewalk with several trees and a few parked cars. On the right side of the road, there are several buildings and storefronts.", "snapshot": {"id": "e66a5046-7bf8-45ee-ae73-929759fb8116", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/e66a5046-7bf8-45ee-ae73-929759fb8116.png", "timestamp": "2024-02-15T20:37:38.119460+00:00"}}, {"id": "933dfb7e-dd56-447a-9f20-18505f8b154f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.589523+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are all moving at a steady pace. There are no major delays or congestion.", "snapshot": {"id": "e66a5046-7bf8-45ee-ae73-929759fb8116", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/e66a5046-7bf8-45ee-ae73-929759fb8116.png", "timestamp": "2024-02-15T20:37:38.119460+00:00"}}, {"id": "dfc2a8fd-0886-4566-8b9e-cc19eed6f277", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.267030+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e66a5046-7bf8-45ee-ae73-929759fb8116", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/e66a5046-7bf8-45ee-ae73-929759fb8116.png", "timestamp": "2024-02-15T20:37:38.119460+00:00"}}, {"id": "0b671c7d-5a47-4b7a-b15c-57ffd220b2e0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:57.340330+00:00", "label": "free", "label_explanation": "There are no road blockades in the image. The road is clear and free of any obstructions.", "snapshot": {"id": "e66a5046-7bf8-45ee-ae73-929759fb8116", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/e66a5046-7bf8-45ee-ae73-929759fb8116.png", "timestamp": "2024-02-15T20:37:38.119460+00:00"}}, {"id": "5598194b-a47f-4cea-8e73-5678b6bf0f1f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.145530+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "e66a5046-7bf8-45ee-ae73-929759fb8116", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/e66a5046-7bf8-45ee-ae73-929759fb8116.png", "timestamp": "2024-02-15T20:37:38.119460+00:00"}}, {"id": "a313dbb3-af14-4fb0-8968-d914b0d5b19f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.266886+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry and there are no signs of water accumulation.", "snapshot": {"id": "e66a5046-7bf8-45ee-ae73-929759fb8116", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/e66a5046-7bf8-45ee-ae73-929759fb8116.png", "timestamp": "2024-02-15T20:37:38.119460+00:00"}}, {"id": "40161c2a-a478-4131-be4d-b4cf18132923", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.930256+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion or obstructions.", "snapshot": {"id": "982d34bf-2f5a-427b-8acf-c6fabbd6e391", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/982d34bf-2f5a-427b-8acf-c6fabbd6e391.png", "timestamp": "2024-02-15T20:40:11.025865+00:00"}}, {"id": "7c9171cf-fd31-4ca1-b030-6b0175195997", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.772088+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water.", "snapshot": {"id": "982d34bf-2f5a-427b-8acf-c6fabbd6e391", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/982d34bf-2f5a-427b-8acf-c6fabbd6e391.png", "timestamp": "2024-02-15T20:40:11.025865+00:00"}}, {"id": "df9edcf2-4abd-47ea-9a99-cf9db15b3059", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.328584+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "982d34bf-2f5a-427b-8acf-c6fabbd6e391", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/982d34bf-2f5a-427b-8acf-c6fabbd6e391.png", "timestamp": "2024-02-15T20:40:11.025865+00:00"}}, {"id": "8bf2484c-a1b4-47cb-9139-b22480f70caa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:25.343516+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "982d34bf-2f5a-427b-8acf-c6fabbd6e391", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/982d34bf-2f5a-427b-8acf-c6fabbd6e391.png", "timestamp": "2024-02-15T20:40:11.025865+00:00"}}, {"id": "b93638d5-d50c-4fb3-b207-041fc161f5fb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.845372+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear sky and dry road conditions. There are a few parked cars on the side of the road, and a person is walking on the sidewalk.", "snapshot": {"id": "982d34bf-2f5a-427b-8acf-c6fabbd6e391", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/982d34bf-2f5a-427b-8acf-c6fabbd6e391.png", "timestamp": "2024-02-15T20:40:11.025865+00:00"}}, {"id": "c0390e69-329c-4930-9dc5-0ef1811e81e6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.360185+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "982d34bf-2f5a-427b-8acf-c6fabbd6e391", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/982d34bf-2f5a-427b-8acf-c6fabbd6e391.png", "timestamp": "2024-02-15T20:40:11.025865+00:00"}}, {"id": "b3d63bfb-0ef1-44d6-adb1-348e4dcef3fe", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.138449+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the water level is low and does not pose a significant risk to traffic.", "snapshot": {"id": "86b973c0-ea3b-4826-bcac-211a4ee6da05", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/86b973c0-ea3b-4826-bcac-211a4ee6da05.png", "timestamp": "2024-02-15T20:47:26.394003+00:00"}}, {"id": "43b10ed0-2730-4852-9caa-cf626e51956e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.636454+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or disruptions visible.", "snapshot": {"id": "86b973c0-ea3b-4826-bcac-211a4ee6da05", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/86b973c0-ea3b-4826-bcac-211a4ee6da05.png", "timestamp": "2024-02-15T20:47:26.394003+00:00"}}, {"id": "989fd899-d719-44a6-b1b8-8c81ea7a57d1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.443004+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles visible. The majority of the road surface is dry and passable.", "snapshot": {"id": "86b973c0-ea3b-4826-bcac-211a4ee6da05", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/86b973c0-ea3b-4826-bcac-211a4ee6da05.png", "timestamp": "2024-02-15T20:47:26.394003+00:00"}}, {"id": "e651f749-53e9-4f0e-968c-5f1a03f6b2fa", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.484635+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "86b973c0-ea3b-4826-bcac-211a4ee6da05", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/86b973c0-ea3b-4826-bcac-211a4ee6da05.png", "timestamp": "2024-02-15T20:47:26.394003+00:00"}}, {"id": "d7fd566d-8896-4603-8e77-5466fb9b4013", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.843837+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible. Traffic is able to flow freely in both directions.", "snapshot": {"id": "86b973c0-ea3b-4826-bcac-211a4ee6da05", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/86b973c0-ea3b-4826-bcac-211a4ee6da05.png", "timestamp": "2024-02-15T20:47:26.394003+00:00"}}, {"id": "22503430-53cf-4b9e-a317-708a9ebb790f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.766211+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "86b973c0-ea3b-4826-bcac-211a4ee6da05", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/86b973c0-ea3b-4826-bcac-211a4ee6da05.png", "timestamp": "2024-02-15T20:47:26.394003+00:00"}}, {"id": "ff7a487a-c5de-4f9a-8518-15cb2b975491", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.638155+00:00", "label": "free", "label_explanation": "There are no road blockades present in the image. The road is clear and free of obstructions.", "snapshot": {"id": "9bafd042-155f-41e2-bdac-1c8fd3bba0a8", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/9bafd042-155f-41e2-bdac-1c8fd3bba0a8.png", "timestamp": "2024-02-15T20:44:58.093867+00:00"}}, {"id": "21094acf-b992-4321-b31d-360be8b5b1cd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.381125+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars parked on the side of the road and a cyclist riding in the middle of the road.", "snapshot": {"id": "9bafd042-155f-41e2-bdac-1c8fd3bba0a8", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/9bafd042-155f-41e2-bdac-1c8fd3bba0a8.png", "timestamp": "2024-02-15T20:44:58.093867+00:00"}}, {"id": "48dbd4ca-4964-4291-ac06-c4c3187c35f2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.137912+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "9bafd042-155f-41e2-bdac-1c8fd3bba0a8", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/9bafd042-155f-41e2-bdac-1c8fd3bba0a8.png", "timestamp": "2024-02-15T20:44:58.093867+00:00"}}, {"id": "de2e9f7b-a049-416c-80a1-50a6f633e168", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:08.370886+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9bafd042-155f-41e2-bdac-1c8fd3bba0a8", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/9bafd042-155f-41e2-bdac-1c8fd3bba0a8.png", "timestamp": "2024-02-15T20:44:58.093867+00:00"}}, {"id": "3bdbe0a5-25f4-4841-baf0-48bd9637be2c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:08.927171+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "9bafd042-155f-41e2-bdac-1c8fd3bba0a8", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/9bafd042-155f-41e2-bdac-1c8fd3bba0a8.png", "timestamp": "2024-02-15T20:44:58.093867+00:00"}}, {"id": "b3ef6443-9c54-4f56-a087-1882bdcdcbaf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:08.554050+00:00", "label": "null", "label_explanation": "The image captures a scene on an urban road. It is daytime, and the weather appears to be clear. There are a few parked cars on the side of the road, and a cyclist is riding in the middle of the road.", "snapshot": {"id": "9bafd042-155f-41e2-bdac-1c8fd3bba0a8", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/9bafd042-155f-41e2-bdac-1c8fd3bba0a8.png", "timestamp": "2024-02-15T20:44:58.093867+00:00"}}, {"id": "9f9ca719-fd2f-4bc6-9d45-03f9c8b7486e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:42.017462+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "37d990c8-adf9-48c7-bd43-648b5bdc46e4", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/37d990c8-adf9-48c7-bd43-648b5bdc46e4.png", "timestamp": "2024-02-15T20:42:32.498756+00:00"}}, {"id": "533e08ec-2bfa-4ae0-90e0-b2349a914553", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:42.252399+00:00", "label": "null", "label_explanation": "The image is corrupted and does not provide any useful information.", "snapshot": {"id": "37d990c8-adf9-48c7-bd43-648b5bdc46e4", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/37d990c8-adf9-48c7-bd43-648b5bdc46e4.png", "timestamp": "2024-02-15T20:42:32.498756+00:00"}}, {"id": "ba432f22-e830-4f9e-ab1e-7f2708efad19", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.679922+00:00", "label": "null", "label_explanation": "The image is of an urban road with a slight bend to the right. There are buildings and trees on either side of the road, and a few cars are visible. The road surface is not clearly visible due to the corruption.", "snapshot": {"id": "a63464c5-345b-48d3-a83b-eb0bc97aca7f", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/a63464c5-345b-48d3-a83b-eb0bc97aca7f.png", "timestamp": "2024-02-15T20:49:50.966805+00:00"}}, {"id": "28e94d63-142b-4681-a51e-9c6baa695b0c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.354150+00:00", "label": "true", "label_explanation": "The image is corrupted, with a significant portion of the lower half distorted by a rainbow of colors. This corruption makes it difficult to analyze the road conditions.", "snapshot": {"id": "a63464c5-345b-48d3-a83b-eb0bc97aca7f", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/a63464c5-345b-48d3-a83b-eb0bc97aca7f.png", "timestamp": "2024-02-15T20:49:50.966805+00:00"}}, {"id": "bfeb2a6b-d4d6-411d-a07a-34b50b295053", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.667498+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "f4c0fa26-fa36-4182-92e9-0db5ecb8e382", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/f4c0fa26-fa36-4182-92e9-0db5ecb8e382.png", "timestamp": "2024-02-15T20:54:41.686888+00:00"}}, {"id": "67e1bee4-5a6b-46ea-af04-96ab7604390c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.751351+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "f4c0fa26-fa36-4182-92e9-0db5ecb8e382", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/f4c0fa26-fa36-4182-92e9-0db5ecb8e382.png", "timestamp": "2024-02-15T20:54:41.686888+00:00"}}, {"id": "93757c61-4db2-4ca0-b6f9-f6d4c2d5e851", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.529277+00:00", "label": "null", "label_explanation": "The image captures an urban road scene. It is daytime, and the weather appears to be clear. There are several vehicles on the road, including a yellow taxi, and pedestrians are walking on the sidewalk.", "snapshot": {"id": "f4c0fa26-fa36-4182-92e9-0db5ecb8e382", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/f4c0fa26-fa36-4182-92e9-0db5ecb8e382.png", "timestamp": "2024-02-15T20:54:41.686888+00:00"}}, {"id": "e4dc6342-4b5f-48c6-b749-375488cf4fa1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.259764+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f4c0fa26-fa36-4182-92e9-0db5ecb8e382", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/f4c0fa26-fa36-4182-92e9-0db5ecb8e382.png", "timestamp": "2024-02-15T20:54:41.686888+00:00"}}, {"id": "f53e1366-df64-4823-9839-3e48642e0f77", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.285164+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "f4c0fa26-fa36-4182-92e9-0db5ecb8e382", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/f4c0fa26-fa36-4182-92e9-0db5ecb8e382.png", "timestamp": "2024-02-15T20:54:41.686888+00:00"}}, {"id": "f42109e7-a694-43aa-859e-5b05f1c1ef90", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.419430+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "f4c0fa26-fa36-4182-92e9-0db5ecb8e382", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/f4c0fa26-fa36-4182-92e9-0db5ecb8e382.png", "timestamp": "2024-02-15T20:54:41.686888+00:00"}}, {"id": "ac1a4632-58f3-4219-9062-570158301c05", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.763319+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "b754fc2a-7dd0-4595-9cc8-ce52c36bf863", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/b754fc2a-7dd0-4595-9cc8-ce52c36bf863.png", "timestamp": "2024-02-15T20:52:13.977512+00:00"}}, {"id": "a3ef8b1f-62c8-4fa5-ad9a-ebb5953a4286", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.350722+00:00", "label": "free", "label_explanation": "There are no road blockades in the image. The road is clear and passable in both directions.", "snapshot": {"id": "b754fc2a-7dd0-4595-9cc8-ce52c36bf863", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/b754fc2a-7dd0-4595-9cc8-ce52c36bf863.png", "timestamp": "2024-02-15T20:52:13.977512+00:00"}}, {"id": "1329e856-9afd-4260-8365-aa668cb2ecf3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.086266+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "b754fc2a-7dd0-4595-9cc8-ce52c36bf863", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/b754fc2a-7dd0-4595-9cc8-ce52c36bf863.png", "timestamp": "2024-02-15T20:52:13.977512+00:00"}}, {"id": "71d1e038-e8bf-4eda-8221-f0d829773551", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.011681+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear. There are several vehicles on the road, including cars, buses, and motorcycles. The road is relatively wide, with two lanes in each direction. On either side of the road, there are buildings and trees.", "snapshot": {"id": "b754fc2a-7dd0-4595-9cc8-ce52c36bf863", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/b754fc2a-7dd0-4595-9cc8-ce52c36bf863.png", "timestamp": "2024-02-15T20:52:13.977512+00:00"}}, {"id": "4fed7771-2ad0-4e62-a89c-9f4812489e19", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.528764+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry and there are no signs of water accumulation.", "snapshot": {"id": "b754fc2a-7dd0-4595-9cc8-ce52c36bf863", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/b754fc2a-7dd0-4595-9cc8-ce52c36bf863.png", "timestamp": "2024-02-15T20:52:13.977512+00:00"}}, {"id": "2e5540c6-034d-4b8f-8ab5-a4a843c8f72e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.767018+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b754fc2a-7dd0-4595-9cc8-ce52c36bf863", "camera_id": "001612", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001612/b754fc2a-7dd0-4595-9cc8-ce52c36bf863.png", "timestamp": "2024-02-15T20:52:13.977512+00:00"}}]}, {"id": "001394", "name": "R. CARVALHO AZEVEDO, 368 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964362, "longitude": -43.203722, "objects": ["water_level", "image_corrupted", "traffic", "image_description", "rain", "road_blockade"], "identifications": [{"id": "dd258297-fcba-429d-9abe-4e326ab8d304", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.111514+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1f018bab-054a-4c94-836a-7c09cbb1c821", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/1f018bab-054a-4c94-836a-7c09cbb1c821.png", "timestamp": "2024-02-15T20:30:33.055003+00:00"}}, {"id": "83a49a10-62cf-4354-9391-155b7f17e2f1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.646081+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. Traffic is flowing freely in both directions.", "snapshot": {"id": "1f018bab-054a-4c94-836a-7c09cbb1c821", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/1f018bab-054a-4c94-836a-7c09cbb1c821.png", "timestamp": "2024-02-15T20:30:33.055003+00:00"}}, {"id": "c8caf9d4-ac88-4f73-acc1-bd7671b55937", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.313880+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a steady flow of vehicles in both directions. Traffic is moving smoothly, with no congestion or delays.", "snapshot": {"id": "1f018bab-054a-4c94-836a-7c09cbb1c821", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/1f018bab-054a-4c94-836a-7c09cbb1c821.png", "timestamp": "2024-02-15T20:30:33.055003+00:00"}}, {"id": "492c980b-9ce6-4b82-a730-10581735657c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.982614+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "1f018bab-054a-4c94-836a-7c09cbb1c821", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/1f018bab-054a-4c94-836a-7c09cbb1c821.png", "timestamp": "2024-02-15T20:30:33.055003+00:00"}}, {"id": "3ce6e456-8f31-49ef-9bbb-6f8fea1fcbe4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.692413+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "1f018bab-054a-4c94-836a-7c09cbb1c821", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/1f018bab-054a-4c94-836a-7c09cbb1c821.png", "timestamp": "2024-02-15T20:30:33.055003+00:00"}}, {"id": "c966622f-d87c-4775-a6ed-6f7abff333e8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.410825+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for vehicle movement. The road surface is paved and in good condition, with visible lane markings. There are trees on either side of the road, and buildings and other structures can be seen in the background. The image is clear and provides a good view of the road and its surroundings.", "snapshot": {"id": "1f018bab-054a-4c94-836a-7c09cbb1c821", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/1f018bab-054a-4c94-836a-7c09cbb1c821.png", "timestamp": "2024-02-15T20:30:33.055003+00:00"}}, {"id": "01a625af-8828-457c-bcb5-1ede185f6546", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.514869+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades.", "snapshot": {"id": "6fd42ef2-7a05-44fb-be87-0d70e222656a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/6fd42ef2-7a05-44fb-be87-0d70e222656a.png", "timestamp": "2024-02-15T20:33:13.000332+00:00"}}, {"id": "e3a2956c-e694-4175-8994-ac35af1c0b9e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.058083+00:00", "label": "low", "label_explanation": "While the road is wet, there are no significant puddles or standing water. The water level is low.", "snapshot": {"id": "6fd42ef2-7a05-44fb-be87-0d70e222656a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/6fd42ef2-7a05-44fb-be87-0d70e222656a.png", "timestamp": "2024-02-15T20:33:13.000332+00:00"}}, {"id": "69758c56-720b-47cf-8d35-170b18fd81d7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.819930+00:00", "label": "true", "label_explanation": "The road is wet, and there are visible raindrops on the windshield of the vehicle capturing the scene.", "snapshot": {"id": "6fd42ef2-7a05-44fb-be87-0d70e222656a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/6fd42ef2-7a05-44fb-be87-0d70e222656a.png", "timestamp": "2024-02-15T20:33:13.000332+00:00"}}, {"id": "456c078d-c6f3-4a14-af45-e54afa865327", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.566198+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is raining, and the road is wet but not flooded. There are several vehicles on the road, including cars, a van, and a bicycle.", "snapshot": {"id": "6fd42ef2-7a05-44fb-be87-0d70e222656a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/6fd42ef2-7a05-44fb-be87-0d70e222656a.png", "timestamp": "2024-02-15T20:33:13.000332+00:00"}}, {"id": "84b2eb4b-aa49-4d4b-bb5c-05414c0029e6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.371737+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6fd42ef2-7a05-44fb-be87-0d70e222656a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/6fd42ef2-7a05-44fb-be87-0d70e222656a.png", "timestamp": "2024-02-15T20:33:13.000332+00:00"}}, {"id": "53093422-9755-4342-a395-797c384d3175", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.287221+00:00", "label": "easy", "label_explanation": "The vehicles on the road are moving at a moderate pace, with no apparent congestion or delays.", "snapshot": {"id": "6fd42ef2-7a05-44fb-be87-0d70e222656a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/6fd42ef2-7a05-44fb-be87-0d70e222656a.png", "timestamp": "2024-02-15T20:33:13.000332+00:00"}}, {"id": "80d85e8a-55ed-4e9f-9d2b-256fc68da32a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.023926+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "b12c645e-29d3-4b52-84a2-f767aa6adb9d", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/b12c645e-29d3-4b52-84a2-f767aa6adb9d.png", "timestamp": "2024-02-15T20:35:40.547962+00:00"}}, {"id": "bb60daaf-4d91-4281-b00f-fc102730c377", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.763742+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rainfall. There are several vehicles on the road, including cars and bicycles, and trees on either side of the road.", "snapshot": {"id": "b12c645e-29d3-4b52-84a2-f767aa6adb9d", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/b12c645e-29d3-4b52-84a2-f767aa6adb9d.png", "timestamp": "2024-02-15T20:35:40.547962+00:00"}}, {"id": "c9f9cb7d-bfe1-450a-b902-0d5cda2fb752", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.720970+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "b12c645e-29d3-4b52-84a2-f767aa6adb9d", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/b12c645e-29d3-4b52-84a2-f767aa6adb9d.png", "timestamp": "2024-02-15T20:35:40.547962+00:00"}}, {"id": "f178e597-fead-4fcb-aa84-17c3a9c2b7bd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.515065+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with several vehicles visible. Traffic is able to flow smoothly, with no major disruptions or congestion.", "snapshot": {"id": "b12c645e-29d3-4b52-84a2-f767aa6adb9d", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/b12c645e-29d3-4b52-84a2-f767aa6adb9d.png", "timestamp": "2024-02-15T20:35:40.547962+00:00"}}, {"id": "60c32174-da36-4844-a2d1-e8c73e838eac", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.531450+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b12c645e-29d3-4b52-84a2-f767aa6adb9d", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/b12c645e-29d3-4b52-84a2-f767aa6adb9d.png", "timestamp": "2024-02-15T20:35:40.547962+00:00"}}, {"id": "921101d2-a2ee-4b00-ab0c-63b68dc1cd1e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.233737+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While the road is wet, the water has drained effectively, leaving the road navigable with caution.", "snapshot": {"id": "b12c645e-29d3-4b52-84a2-f767aa6adb9d", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/b12c645e-29d3-4b52-84a2-f767aa6adb9d.png", "timestamp": "2024-02-15T20:35:40.547962+00:00"}}, {"id": "e691dfea-5619-4453-a59f-57372a0efc68", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.582303+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road.", "snapshot": {"id": "ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e.png", "timestamp": "2024-02-15T20:38:10.932359+00:00"}}, {"id": "3fc8dea7-9599-4bfb-924f-67670ef79f42", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.357653+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no congestion or delays.", "snapshot": {"id": "ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e.png", "timestamp": "2024-02-15T20:38:10.932359+00:00"}}, {"id": "efbd7180-9c32-485f-bbaa-8d72ada7f2a8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.074701+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water.", "snapshot": {"id": "ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e.png", "timestamp": "2024-02-15T20:38:10.932359+00:00"}}, {"id": "6e9ce11b-2612-43f7-bdbd-c5086d8e072b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.860867+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e.png", "timestamp": "2024-02-15T20:38:10.932359+00:00"}}, {"id": "e58dd1c9-794f-4268-823b-d33c34cf250d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.662716+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a tree-lined median strip. There are cars on the road, and the weather appears to be clear.", "snapshot": {"id": "ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e.png", "timestamp": "2024-02-15T20:38:10.932359+00:00"}}, {"id": "98916bbb-e55a-4dcf-b8e8-ebcb67f80e34", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.455122+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ba0d3cc7-4cfe-4dff-92d4-b7df1a005a1e.png", "timestamp": "2024-02-15T20:38:10.932359+00:00"}}, {"id": "3560eaa9-0508-4cac-855e-76a78f1a0422", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.193119+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are water droplets on the windshield of the car in the foreground. This indicates that it is raining.", "snapshot": {"id": "932bd658-d396-47bd-a856-36c43232aa1c", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/932bd658-d396-47bd-a856-36c43232aa1c.png", "timestamp": "2024-02-15T20:47:49.453376+00:00"}}, {"id": "a2769b05-8978-497b-8a94-0f022dee98cb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.784061+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "932bd658-d396-47bd-a856-36c43232aa1c", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/932bd658-d396-47bd-a856-36c43232aa1c.png", "timestamp": "2024-02-15T20:47:49.453376+00:00"}}, {"id": "74f4fd06-5e48-4df4-87e2-3d88094011e6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.775558+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "932bd658-d396-47bd-a856-36c43232aa1c", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/932bd658-d396-47bd-a856-36c43232aa1c.png", "timestamp": "2024-02-15T20:47:49.453376+00:00"}}, {"id": "fbd20645-dfb0-4483-b149-42035d8a766b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.006240+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a tree-lined median strip. There are cars on the road, and the weather appears to be overcast.", "snapshot": {"id": "932bd658-d396-47bd-a856-36c43232aa1c", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/932bd658-d396-47bd-a856-36c43232aa1c.png", "timestamp": "2024-02-15T20:47:49.453376+00:00"}}, {"id": "ff51a81c-d62c-4dd0-84b9-01e674c23d09", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.978269+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "932bd658-d396-47bd-a856-36c43232aa1c", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/932bd658-d396-47bd-a856-36c43232aa1c.png", "timestamp": "2024-02-15T20:47:49.453376+00:00"}}, {"id": "421873cb-816c-4ac8-af37-7d4f2fccde3b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.531347+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water droplets on the windshield of the car in the foreground are from the rain.", "snapshot": {"id": "932bd658-d396-47bd-a856-36c43232aa1c", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/932bd658-d396-47bd-a856-36c43232aa1c.png", "timestamp": "2024-02-15T20:47:49.453376+00:00"}}, {"id": "bd43bacd-1746-4c12-8f05-13f6e0c5f49c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.829431+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "7c4d4d95-56cf-4bed-9f3f-9806100d95d6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/7c4d4d95-56cf-4bed-9f3f-9806100d95d6.png", "timestamp": "2024-02-15T20:45:24.916541+00:00"}}, {"id": "0c648733-15d8-4c61-8042-601817d27c2d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.613938+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "7c4d4d95-56cf-4bed-9f3f-9806100d95d6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/7c4d4d95-56cf-4bed-9f3f-9806100d95d6.png", "timestamp": "2024-02-15T20:45:24.916541+00:00"}}, {"id": "023735d5-603b-44f1-9d69-f002fb638d6a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.205285+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road.", "snapshot": {"id": "7c4d4d95-56cf-4bed-9f3f-9806100d95d6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/7c4d4d95-56cf-4bed-9f3f-9806100d95d6.png", "timestamp": "2024-02-15T20:45:24.916541+00:00"}}, {"id": "bd4da341-0359-492d-99aa-028b76f2c9f6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.959633+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a tree-lined median strip. There are cars on the road, a few pedestrians on the sidewalk, and a cyclist on the bike lane.", "snapshot": {"id": "7c4d4d95-56cf-4bed-9f3f-9806100d95d6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/7c4d4d95-56cf-4bed-9f3f-9806100d95d6.png", "timestamp": "2024-02-15T20:45:24.916541+00:00"}}, {"id": "c5010f4d-18dd-41f7-a629-c2a559e754d6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.416271+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles on the road surface.", "snapshot": {"id": "7c4d4d95-56cf-4bed-9f3f-9806100d95d6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/7c4d4d95-56cf-4bed-9f3f-9806100d95d6.png", "timestamp": "2024-02-15T20:45:24.916541+00:00"}}, {"id": "b3491db7-c296-4f6d-9bbb-fb18ccd4b1f0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.726041+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7c4d4d95-56cf-4bed-9f3f-9806100d95d6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/7c4d4d95-56cf-4bed-9f3f-9806100d95d6.png", "timestamp": "2024-02-15T20:45:24.916541+00:00"}}, {"id": "bec2bb10-7413-4040-8b91-b2c703489ed8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:53.703420+00:00", "label": "free", "label_explanation": "There are no road blockades present, and the road is clear for traffic.", "snapshot": {"id": "9b12473a-42ec-43d1-a9bc-21a996a73126", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9b12473a-42ec-43d1-a9bc-21a996a73126.png", "timestamp": "2024-02-15T20:40:38.315772+00:00"}}, {"id": "31314c0a-8a71-48d3-9872-6af661fe98f3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:53.491427+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "9b12473a-42ec-43d1-a9bc-21a996a73126", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9b12473a-42ec-43d1-a9bc-21a996a73126.png", "timestamp": "2024-02-15T20:40:38.315772+00:00"}}, {"id": "e6a6be1a-57f7-4f8c-a399-340cc5d21bdd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:53.276918+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only some puddles present.", "snapshot": {"id": "9b12473a-42ec-43d1-a9bc-21a996a73126", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9b12473a-42ec-43d1-a9bc-21a996a73126.png", "timestamp": "2024-02-15T20:40:38.315772+00:00"}}, {"id": "7b9eca6e-eafb-45e7-a82b-9df5da3b0f3f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:53.000668+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are some puddles on the surface.", "snapshot": {"id": "9b12473a-42ec-43d1-a9bc-21a996a73126", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9b12473a-42ec-43d1-a9bc-21a996a73126.png", "timestamp": "2024-02-15T20:40:38.315772+00:00"}}, {"id": "35f0e8e2-2d43-460d-8618-9106ba22d88f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:52.814306+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a yellow taxi driving in the rightmost lane. There are several other vehicles on the road, including a white van and a grey car. The road is wet from recent rain, and there are some puddles on the surface. The sidewalk on the right side of the road is lined with trees, and there is a body of water in the background.", "snapshot": {"id": "9b12473a-42ec-43d1-a9bc-21a996a73126", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9b12473a-42ec-43d1-a9bc-21a996a73126.png", "timestamp": "2024-02-15T20:40:38.315772+00:00"}}, {"id": "731cee68-a214-4749-8492-d09fe1c0c480", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:52.585718+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9b12473a-42ec-43d1-a9bc-21a996a73126", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9b12473a-42ec-43d1-a9bc-21a996a73126.png", "timestamp": "2024-02-15T20:40:38.315772+00:00"}}, {"id": "3766f90b-19f3-4e94-a07e-9582ff79b0ea", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.330821+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "9cbdc299-30b1-4923-a863-87ca4f63ccc9", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9cbdc299-30b1-4923-a863-87ca4f63ccc9.png", "timestamp": "2024-02-15T20:43:02.110492+00:00"}}, {"id": "eef6e381-3981-4a38-8738-e303298afb37", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.439036+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9cbdc299-30b1-4923-a863-87ca4f63ccc9", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9cbdc299-30b1-4923-a863-87ca4f63ccc9.png", "timestamp": "2024-02-15T20:43:02.110492+00:00"}}, {"id": "f663dd89-2941-48f7-ab88-cda65470899c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.610134+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "9cbdc299-30b1-4923-a863-87ca4f63ccc9", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9cbdc299-30b1-4923-a863-87ca4f63ccc9.png", "timestamp": "2024-02-15T20:43:02.110492+00:00"}}, {"id": "889698fd-cb46-4b6a-a596-8a3abaff0078", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.909862+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "9cbdc299-30b1-4923-a863-87ca4f63ccc9", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9cbdc299-30b1-4923-a863-87ca4f63ccc9.png", "timestamp": "2024-02-15T20:43:02.110492+00:00"}}, {"id": "bcb87853-dba1-4961-859f-68ec74e41f91", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.679564+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a yellow taxi driving in the center, and other vehicles on the left and right lanes. The road is lined with trees, and there is a body of water in the background.", "snapshot": {"id": "9cbdc299-30b1-4923-a863-87ca4f63ccc9", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9cbdc299-30b1-4923-a863-87ca4f63ccc9.png", "timestamp": "2024-02-15T20:43:02.110492+00:00"}}, {"id": "929d7c47-32f8-4bf8-8d00-48cfa7167ad7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.147244+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "9cbdc299-30b1-4923-a863-87ca4f63ccc9", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/9cbdc299-30b1-4923-a863-87ca4f63ccc9.png", "timestamp": "2024-02-15T20:43:02.110492+00:00"}}, {"id": "e70bdf8c-1873-4e6d-8c2e-91f419d24ac1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.686472+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "49fdacd6-9c7e-4a5e-b80c-779af254053a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/49fdacd6-9c7e-4a5e-b80c-779af254053a.png", "timestamp": "2024-02-15T20:52:37.239816+00:00"}}, {"id": "3f0b30bc-3055-4c01-a0f8-ed616b2b6be0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.379219+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "49fdacd6-9c7e-4a5e-b80c-779af254053a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/49fdacd6-9c7e-4a5e-b80c-779af254053a.png", "timestamp": "2024-02-15T20:52:37.239816+00:00"}}, {"id": "ffc60c02-2bc1-4a72-a425-f0def773e16a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.003957+00:00", "label": "true", "label_explanation": "The road surface is wet, but there is no standing water.", "snapshot": {"id": "49fdacd6-9c7e-4a5e-b80c-779af254053a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/49fdacd6-9c7e-4a5e-b80c-779af254053a.png", "timestamp": "2024-02-15T20:52:37.239816+00:00"}}, {"id": "3c3a8c06-beb5-41f7-9965-d6093d1d9f7a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.202494+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "49fdacd6-9c7e-4a5e-b80c-779af254053a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/49fdacd6-9c7e-4a5e-b80c-779af254053a.png", "timestamp": "2024-02-15T20:52:37.239816+00:00"}}, {"id": "7b1ff796-4c14-4168-805d-0a323192d7fa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.798212+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a four-lane road with a tree-lined median strip. There are cars parked on either side of the road, and the road surface appears wet from recent rain.", "snapshot": {"id": "49fdacd6-9c7e-4a5e-b80c-779af254053a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/49fdacd6-9c7e-4a5e-b80c-779af254053a.png", "timestamp": "2024-02-15T20:52:37.239816+00:00"}}, {"id": "d6619e75-5799-4d9d-a4a0-8c6244253368", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.614776+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "49fdacd6-9c7e-4a5e-b80c-779af254053a", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/49fdacd6-9c7e-4a5e-b80c-779af254053a.png", "timestamp": "2024-02-15T20:52:37.239816+00:00"}}, {"id": "f76cb163-8966-449b-8244-bbc1596054d4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.402646+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several cars on the road, but they are all moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "ca970a12-f2bf-4025-9c86-d027ef2ac4c6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ca970a12-f2bf-4025-9c86-d027ef2ac4c6.png", "timestamp": "2024-02-15T20:50:12.595622+00:00"}}, {"id": "703f136f-0337-4d1b-871a-4c21e3bcbbc1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.622911+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and free of any obstructions.", "snapshot": {"id": "ca970a12-f2bf-4025-9c86-d027ef2ac4c6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ca970a12-f2bf-4025-9c86-d027ef2ac4c6.png", "timestamp": "2024-02-15T20:50:12.595622+00:00"}}, {"id": "55291548-137f-44e3-8769-0dcd52494bec", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.183987+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "ca970a12-f2bf-4025-9c86-d027ef2ac4c6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ca970a12-f2bf-4025-9c86-d027ef2ac4c6.png", "timestamp": "2024-02-15T20:50:12.595622+00:00"}}, {"id": "ce6380ca-ce08-4811-b8da-f8c5b7767eab", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.286227+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ca970a12-f2bf-4025-9c86-d027ef2ac4c6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ca970a12-f2bf-4025-9c86-d027ef2ac4c6.png", "timestamp": "2024-02-15T20:50:12.595622+00:00"}}, {"id": "ededd42a-aebc-4c1c-8276-0f3ba21dd954", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.943186+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "ca970a12-f2bf-4025-9c86-d027ef2ac4c6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ca970a12-f2bf-4025-9c86-d027ef2ac4c6.png", "timestamp": "2024-02-15T20:50:12.595622+00:00"}}, {"id": "f2a52cd7-80f9-4f3a-b21d-988deac7b64d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.629501+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a four-lane road with a wide sidewalk on one side and a narrow one on the other. There are several cars on the road, and the weather appears to be clear.", "snapshot": {"id": "ca970a12-f2bf-4025-9c86-d027ef2ac4c6", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/ca970a12-f2bf-4025-9c86-d027ef2ac4c6.png", "timestamp": "2024-02-15T20:50:12.595622+00:00"}}, {"id": "521ef4a2-5157-4fee-bff0-4bdd18129b59", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.376678+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road. Traffic is flowing smoothly in both directions.", "snapshot": {"id": "70013ac3-d84c-48d1-908d-5dfe87e13e4e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/70013ac3-d84c-48d1-908d-5dfe87e13e4e.png", "timestamp": "2024-02-15T20:55:04.911089+00:00"}}, {"id": "54cbe673-0f32-4b22-927f-952325652151", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.949098+00:00", "label": "low", "label_explanation": "The water on the road surface is shallow, with no significant accumulation. The road is still passable for vehicles and pedestrians.", "snapshot": {"id": "70013ac3-d84c-48d1-908d-5dfe87e13e4e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/70013ac3-d84c-48d1-908d-5dfe87e13e4e.png", "timestamp": "2024-02-15T20:55:04.911089+00:00"}}, {"id": "b6aa3134-3491-4f98-ba69-ee71a33c09eb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.466483+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with multiple lanes, surrounded by trees and buildings. The weather appears to be overcast, with dark clouds covering the sky. There is a yellow taxi driving on the road, and a person is running on the sidewalk next to it. The road surface is wet, with some puddles visible.", "snapshot": {"id": "70013ac3-d84c-48d1-908d-5dfe87e13e4e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/70013ac3-d84c-48d1-908d-5dfe87e13e4e.png", "timestamp": "2024-02-15T20:55:04.911089+00:00"}}, {"id": "24bb0ed9-96d5-4983-8153-b2f69e4d8f9f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.270518+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "70013ac3-d84c-48d1-908d-5dfe87e13e4e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/70013ac3-d84c-48d1-908d-5dfe87e13e4e.png", "timestamp": "2024-02-15T20:55:04.911089+00:00"}}, {"id": "af5a7fb9-bbe6-4e04-bcbf-308cc61400fd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:17.167802+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a few vehicles visible. The wet road conditions may slow down traffic slightly, but it is still moving at a reasonable pace.", "snapshot": {"id": "70013ac3-d84c-48d1-908d-5dfe87e13e4e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/70013ac3-d84c-48d1-908d-5dfe87e13e4e.png", "timestamp": "2024-02-15T20:55:04.911089+00:00"}}, {"id": "01c7a6c2-82a3-4e26-bdaa-ce570df4c6a5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.685688+00:00", "label": "true", "label_explanation": "The presence of water on the road surface and the dark clouds in the sky indicate that it is raining.", "snapshot": {"id": "70013ac3-d84c-48d1-908d-5dfe87e13e4e", "camera_id": "001394", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001394/70013ac3-d84c-48d1-908d-5dfe87e13e4e.png", "timestamp": "2024-02-15T20:55:04.911089+00:00"}}]}, {"id": "000102", "name": "FRANCISCO EUGENIO X FIGUEIREDO DE MELO X ESTA\u00c7\u00c3O LEOPOLDINA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906448, "longitude": -43.213027, "objects": ["image_corrupted", "water_level", "image_description", "rain", "road_blockade", "traffic"], "identifications": [{"id": "9e11635d-543f-482c-ba80-3313ce8e5aa3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.971929+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible in the image.", "snapshot": {"id": "1e13eaa9-a3d0-46a8-bd48-c4addaf4e165", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1e13eaa9-a3d0-46a8-bd48-c4addaf4e165.png", "timestamp": "2024-02-15T20:33:07.046499+00:00"}}, {"id": "0871bbbe-a1ed-4d40-a5b2-c62355eeba4c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.447301+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy and overcast. There are several cars on the road, and the surrounding area is densely populated with residential buildings.", "snapshot": {"id": "1e13eaa9-a3d0-46a8-bd48-c4addaf4e165", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1e13eaa9-a3d0-46a8-bd48-c4addaf4e165.png", "timestamp": "2024-02-15T20:33:07.046499+00:00"}}, {"id": "0b436c53-8f49-4c25-901d-847e51fd5371", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.154004+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "1e13eaa9-a3d0-46a8-bd48-c4addaf4e165", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1e13eaa9-a3d0-46a8-bd48-c4addaf4e165.png", "timestamp": "2024-02-15T20:33:07.046499+00:00"}}, {"id": "24cc41e0-d5f7-4221-b478-878b975c2e86", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.511468+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "1e13eaa9-a3d0-46a8-bd48-c4addaf4e165", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1e13eaa9-a3d0-46a8-bd48-c4addaf4e165.png", "timestamp": "2024-02-15T20:33:07.046499+00:00"}}, {"id": "08c7244c-a9af-4931-8ef3-dfc136ee777d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.888301+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1e13eaa9-a3d0-46a8-bd48-c4addaf4e165", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1e13eaa9-a3d0-46a8-bd48-c4addaf4e165.png", "timestamp": "2024-02-15T20:33:07.046499+00:00"}}, {"id": "2d49f1da-6940-4313-a5ca-1c6425ebf702", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.919423+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. The rain is not heavy enough to cause any significant traffic disruptions.", "snapshot": {"id": "1e13eaa9-a3d0-46a8-bd48-c4addaf4e165", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1e13eaa9-a3d0-46a8-bd48-c4addaf4e165.png", "timestamp": "2024-02-15T20:33:07.046499+00:00"}}, {"id": "3017c247-fd5e-4ebf-be15-0bd8b5d96137", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.597329+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly without any significant congestion or hazards.", "snapshot": {"id": "dfced3d3-9cc3-4266-9467-df9c7b8fba7f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/dfced3d3-9cc3-4266-9467-df9c7b8fba7f.png", "timestamp": "2024-02-15T20:42:57.992370+00:00"}}, {"id": "e1b6a3ad-2215-45c6-aec3-ed5ed5ab3545", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.528731+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "dfced3d3-9cc3-4266-9467-df9c7b8fba7f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/dfced3d3-9cc3-4266-9467-df9c7b8fba7f.png", "timestamp": "2024-02-15T20:42:57.992370+00:00"}}, {"id": "87492acd-2f85-4285-b664-89912ab334fe", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.823193+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "dfced3d3-9cc3-4266-9467-df9c7b8fba7f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/dfced3d3-9cc3-4266-9467-df9c7b8fba7f.png", "timestamp": "2024-02-15T20:42:57.992370+00:00"}}, {"id": "e4f323c2-4726-47cb-8f8f-b336962ea95b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.245800+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "dfced3d3-9cc3-4266-9467-df9c7b8fba7f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/dfced3d3-9cc3-4266-9467-df9c7b8fba7f.png", "timestamp": "2024-02-15T20:42:57.992370+00:00"}}, {"id": "4b7cc2aa-96b1-441a-b7b4-06376ff372c2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.025804+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "dfced3d3-9cc3-4266-9467-df9c7b8fba7f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/dfced3d3-9cc3-4266-9467-df9c7b8fba7f.png", "timestamp": "2024-02-15T20:42:57.992370+00:00"}}, {"id": "feb10223-fd1c-40bf-a26f-be164ebd7f82", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.793075+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the road, vehicles, and surrounding buildings.", "snapshot": {"id": "dfced3d3-9cc3-4266-9467-df9c7b8fba7f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/dfced3d3-9cc3-4266-9467-df9c7b8fba7f.png", "timestamp": "2024-02-15T20:42:57.992370+00:00"}}, {"id": "2b157da6-548d-4f17-bca6-042bbf523521", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.552958+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is clear and free of any obstacles.", "snapshot": {"id": "647c8ffd-942f-4b8b-8348-51742cb7529f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/647c8ffd-942f-4b8b-8348-51742cb7529f.png", "timestamp": "2024-02-15T20:45:21.146300+00:00"}}, {"id": "482cbe5a-f206-4ae5-92ea-a6dd23f07ffe", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.337972+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars and a motorcycle visible on the road, but the road is not congested.", "snapshot": {"id": "647c8ffd-942f-4b8b-8348-51742cb7529f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/647c8ffd-942f-4b8b-8348-51742cb7529f.png", "timestamp": "2024-02-15T20:45:21.146300+00:00"}}, {"id": "94d015b6-ffbf-4ae0-890e-0899a350c501", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.472480+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "647c8ffd-942f-4b8b-8348-51742cb7529f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/647c8ffd-942f-4b8b-8348-51742cb7529f.png", "timestamp": "2024-02-15T20:45:21.146300+00:00"}}, {"id": "c0e7025a-6e7c-4e84-8f16-dfc0df10ed44", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.153902+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "647c8ffd-942f-4b8b-8348-51742cb7529f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/647c8ffd-942f-4b8b-8348-51742cb7529f.png", "timestamp": "2024-02-15T20:45:21.146300+00:00"}}, {"id": "6a647341-ce2c-4071-9300-5f2c646e4d12", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.884547+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry and there are no signs of water accumulation.", "snapshot": {"id": "647c8ffd-942f-4b8b-8348-51742cb7529f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/647c8ffd-942f-4b8b-8348-51742cb7529f.png", "timestamp": "2024-02-15T20:45:21.146300+00:00"}}, {"id": "ea406775-ffc6-48fd-b8de-3cadf90df565", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.669541+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are residential buildings and trees on either side of the road, and a few cars and a motorcycle are visible on the road.", "snapshot": {"id": "647c8ffd-942f-4b8b-8348-51742cb7529f", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/647c8ffd-942f-4b8b-8348-51742cb7529f.png", "timestamp": "2024-02-15T20:45:21.146300+00:00"}}, {"id": "5ec4b37c-c415-47c7-bb5a-2017caa12b68", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.154587+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "1c310edc-e31e-4586-b742-fd3223918909", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1c310edc-e31e-4586-b742-fd3223918909.png", "timestamp": "2024-02-15T20:35:33.172109+00:00"}}, {"id": "58084633-7de6-49b1-83e4-aeba213d4abd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.941620+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "1c310edc-e31e-4586-b742-fd3223918909", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1c310edc-e31e-4586-b742-fd3223918909.png", "timestamp": "2024-02-15T20:35:33.172109+00:00"}}, {"id": "b40b47d2-e746-4430-a87c-5475f971c1d7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.700988+00:00", "label": "null", "label_explanation": "The image shows a six-lane urban road with a concrete barrier in the center. On the left side of the road, there are several cars, and on the right side, there is a yellow taxi. There are also trees and buildings in the background.", "snapshot": {"id": "1c310edc-e31e-4586-b742-fd3223918909", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1c310edc-e31e-4586-b742-fd3223918909.png", "timestamp": "2024-02-15T20:35:33.172109+00:00"}}, {"id": "7cbe72e3-9962-451b-8ad9-b23b76407455", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.459154+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1c310edc-e31e-4586-b742-fd3223918909", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1c310edc-e31e-4586-b742-fd3223918909.png", "timestamp": "2024-02-15T20:35:33.172109+00:00"}}, {"id": "ebdbc2d9-acfe-48f8-b520-9835176081bf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.648732+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "1c310edc-e31e-4586-b742-fd3223918909", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1c310edc-e31e-4586-b742-fd3223918909.png", "timestamp": "2024-02-15T20:35:33.172109+00:00"}}, {"id": "cc4a8a68-30ba-483a-a534-639f6b0d09df", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.379316+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "1c310edc-e31e-4586-b742-fd3223918909", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1c310edc-e31e-4586-b742-fd3223918909.png", "timestamp": "2024-02-15T20:35:33.172109+00:00"}}, {"id": "87754c3a-a9bc-414e-ad59-eba2c42e7f0a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.425212+00:00", "label": "easy", "label_explanation": "The road is moderately busy with a steady flow of vehicles, primarily cars and buses, moving in both directions. Traffic appears to be moving smoothly with no major congestion or disruptions.", "snapshot": {"id": "1eff3765-1e61-4c53-89d0-7ebf683eea76", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1eff3765-1e61-4c53-89d0-7ebf683eea76.png", "timestamp": "2024-02-15T20:38:05.075071+00:00"}}, {"id": "88390c2a-f0a3-4280-85a2-ac6a8eb9436b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.612132+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1eff3765-1e61-4c53-89d0-7ebf683eea76", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1eff3765-1e61-4c53-89d0-7ebf683eea76.png", "timestamp": "2024-02-15T20:38:05.075071+00:00"}}, {"id": "6c2f52a1-ef97-4797-8a08-b6c3c1bb26b2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.009967+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "1eff3765-1e61-4c53-89d0-7ebf683eea76", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1eff3765-1e61-4c53-89d0-7ebf683eea76.png", "timestamp": "2024-02-15T20:38:05.075071+00:00"}}, {"id": "7f2904ea-4b74-4ced-bdcc-4a05153ed58d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.812368+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the road surface, surrounding buildings, and distant landscape. The road is elevated and appears to be a major thoroughfare with multiple lanes. It is daytime and the weather conditions appear to be overcast but dry.", "snapshot": {"id": "1eff3765-1e61-4c53-89d0-7ebf683eea76", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1eff3765-1e61-4c53-89d0-7ebf683eea76.png", "timestamp": "2024-02-15T20:38:05.075071+00:00"}}, {"id": "3a57cb03-3dc8-4c52-9efb-8e4b69e90f61", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.689192+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely without any impediments.", "snapshot": {"id": "1eff3765-1e61-4c53-89d0-7ebf683eea76", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1eff3765-1e61-4c53-89d0-7ebf683eea76.png", "timestamp": "2024-02-15T20:38:05.075071+00:00"}}, {"id": "4309b90c-44ad-4020-a6c0-3fcbb4915341", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.225441+00:00", "label": "low", "label_explanation": "The road surface is dry with no signs of water accumulation or flooding.", "snapshot": {"id": "1eff3765-1e61-4c53-89d0-7ebf683eea76", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/1eff3765-1e61-4c53-89d0-7ebf683eea76.png", "timestamp": "2024-02-15T20:38:05.075071+00:00"}}, {"id": "f2dcf0b2-d49f-40c8-916a-ba7f2129f288", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.608077+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are several cars on the road, but they are able to move at a steady pace.", "snapshot": {"id": "5ccc5096-d650-469d-9b32-4d6286a6f5d5", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/5ccc5096-d650-469d-9b32-4d6286a6f5d5.png", "timestamp": "2024-02-15T20:40:34.178749+00:00"}}, {"id": "5de6daae-dc9e-49ba-a356-0747bd7d1de9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.217203+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "5ccc5096-d650-469d-9b32-4d6286a6f5d5", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/5ccc5096-d650-469d-9b32-4d6286a6f5d5.png", "timestamp": "2024-02-15T20:40:34.178749+00:00"}}, {"id": "1a2b2206-c0b0-4c60-a9a2-1e5c8e18faab", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.912661+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. There are several cars on the road, and the surrounding area is densely populated with buildings and trees.", "snapshot": {"id": "5ccc5096-d650-469d-9b32-4d6286a6f5d5", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/5ccc5096-d650-469d-9b32-4d6286a6f5d5.png", "timestamp": "2024-02-15T20:40:34.178749+00:00"}}, {"id": "eccdbcec-b8fc-4042-ba78-87d2ea4574bb", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.880188+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and free of any obstructions.", "snapshot": {"id": "5ccc5096-d650-469d-9b32-4d6286a6f5d5", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/5ccc5096-d650-469d-9b32-4d6286a6f5d5.png", "timestamp": "2024-02-15T20:40:34.178749+00:00"}}, {"id": "5d6d0e54-d018-4e0d-a5c0-a76e3bc7bef7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.410392+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of flooding or water accumulation on the road surface.", "snapshot": {"id": "5ccc5096-d650-469d-9b32-4d6286a6f5d5", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/5ccc5096-d650-469d-9b32-4d6286a6f5d5.png", "timestamp": "2024-02-15T20:40:34.178749+00:00"}}, {"id": "bfc97d7d-5e36-4ace-b1ce-16a0b389495e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.710389+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5ccc5096-d650-469d-9b32-4d6286a6f5d5", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/5ccc5096-d650-469d-9b32-4d6286a6f5d5.png", "timestamp": "2024-02-15T20:40:34.178749+00:00"}}, {"id": "3f7ed588-bb46-4647-aafc-84b59859c79f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.001562+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "39b14404-1c7d-4458-9d78-74dc1978389d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/39b14404-1c7d-4458-9d78-74dc1978389d.png", "timestamp": "2024-02-15T20:47:47.220020+00:00"}}, {"id": "f5434d13-f739-4db3-8af5-680f9b07e94a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.650645+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "39b14404-1c7d-4458-9d78-74dc1978389d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/39b14404-1c7d-4458-9d78-74dc1978389d.png", "timestamp": "2024-02-15T20:47:47.220020+00:00"}}, {"id": "5d3882c5-1022-4d7b-9648-cfd9d36e901e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.414789+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "39b14404-1c7d-4458-9d78-74dc1978389d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/39b14404-1c7d-4458-9d78-74dc1978389d.png", "timestamp": "2024-02-15T20:47:47.220020+00:00"}}, {"id": "77f62960-0fe2-4471-b430-80a369d5df34", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.227984+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "39b14404-1c7d-4458-9d78-74dc1978389d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/39b14404-1c7d-4458-9d78-74dc1978389d.png", "timestamp": "2024-02-15T20:47:47.220020+00:00"}}, {"id": "f61b853a-df06-4e86-abfe-7525884db49a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.235377+00:00", "label": "null", "label_explanation": "The image shows a six-lane urban road with a concrete barrier separating the directions. On the left side of the road, there is a sidewalk lined with trees. On the right side, there is a sidewalk, a bike lane, and then a row of parked cars. There are buildings and trees in the background.", "snapshot": {"id": "39b14404-1c7d-4458-9d78-74dc1978389d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/39b14404-1c7d-4458-9d78-74dc1978389d.png", "timestamp": "2024-02-15T20:47:47.220020+00:00"}}, {"id": "5f4a3d47-e0b9-40c0-bbc5-9a8f932de9b0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.015836+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "39b14404-1c7d-4458-9d78-74dc1978389d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/39b14404-1c7d-4458-9d78-74dc1978389d.png", "timestamp": "2024-02-15T20:47:47.220020+00:00"}}, {"id": "35fea5a5-6f57-4356-a37b-aa95b330de7e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.975928+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving smoothly without any significant congestion or hazards.", "snapshot": {"id": "3f590d0d-214e-4797-8969-014eb3d73a39", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/3f590d0d-214e-4797-8969-014eb3d73a39.png", "timestamp": "2024-02-15T20:30:29.403840+00:00"}}, {"id": "621536c7-453b-45b8-90e1-8e4a7e8dff3a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.267247+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears cloudy.", "snapshot": {"id": "3f590d0d-214e-4797-8969-014eb3d73a39", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/3f590d0d-214e-4797-8969-014eb3d73a39.png", "timestamp": "2024-02-15T20:30:29.403840+00:00"}}, {"id": "e3ad669c-4b49-4f32-a58b-89d3631a06ff", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.181237+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions or blockades.", "snapshot": {"id": "3f590d0d-214e-4797-8969-014eb3d73a39", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/3f590d0d-214e-4797-8969-014eb3d73a39.png", "timestamp": "2024-02-15T20:30:29.403840+00:00"}}, {"id": "bb95a2b3-bdd4-4301-9aa4-2f9dd85a38b4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.735912+00:00", "label": "low", "label_explanation": "The road surface is dry with no visible water accumulation.", "snapshot": {"id": "3f590d0d-214e-4797-8969-014eb3d73a39", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/3f590d0d-214e-4797-8969-014eb3d73a39.png", "timestamp": "2024-02-15T20:30:29.403840+00:00"}}, {"id": "c32a5ddf-7a40-4e59-85f5-0e36cb76c148", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.573949+00:00", "label": "false", "label_explanation": "There are no visible signs of rain or wetness on the road surface.", "snapshot": {"id": "3f590d0d-214e-4797-8969-014eb3d73a39", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/3f590d0d-214e-4797-8969-014eb3d73a39.png", "timestamp": "2024-02-15T20:30:29.403840+00:00"}}, {"id": "9a29022e-abcf-46d0-bc1d-afa2274d543e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.957071+00:00", "label": "false", "label_explanation": "The image is clear with no visible signs of corruption or data loss.", "snapshot": {"id": "3f590d0d-214e-4797-8969-014eb3d73a39", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/3f590d0d-214e-4797-8969-014eb3d73a39.png", "timestamp": "2024-02-15T20:30:29.403840+00:00"}}, {"id": "e9c01d0f-fa93-4585-93e7-0ce9278ed6e3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.113358+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ccebc77a-57b8-49d1-90d1-cfb60a22a2a6", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/ccebc77a-57b8-49d1-90d1-cfb60a22a2a6.png", "timestamp": "2024-02-15T20:52:32.582401+00:00"}}, {"id": "3d6bb667-0b58-4188-ade4-9f8582e25fd0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.116803+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "ccebc77a-57b8-49d1-90d1-cfb60a22a2a6", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/ccebc77a-57b8-49d1-90d1-cfb60a22a2a6.png", "timestamp": "2024-02-15T20:52:32.582401+00:00"}}, {"id": "7270b641-f41c-4b9a-b71c-f30fc6dd92d5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.003200+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no visible congestion.", "snapshot": {"id": "ccebc77a-57b8-49d1-90d1-cfb60a22a2a6", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/ccebc77a-57b8-49d1-90d1-cfb60a22a2a6.png", "timestamp": "2024-02-15T20:52:32.582401+00:00"}}, {"id": "d2fd6846-0602-4ef7-bdbe-43dd3bb3ae8f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.798537+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "ccebc77a-57b8-49d1-90d1-cfb60a22a2a6", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/ccebc77a-57b8-49d1-90d1-cfb60a22a2a6.png", "timestamp": "2024-02-15T20:52:32.582401+00:00"}}, {"id": "842692c6-e849-4ef6-8731-67e6ceac3e4e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.520952+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "ccebc77a-57b8-49d1-90d1-cfb60a22a2a6", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/ccebc77a-57b8-49d1-90d1-cfb60a22a2a6.png", "timestamp": "2024-02-15T20:52:32.582401+00:00"}}, {"id": "2f59b602-c9cc-4244-bf08-2bb13846fd6c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.333282+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a concrete barrier separating the directions. On the left side of the road, there is a sidewalk lined with trees. On the right side, there is a concrete barrier. There are cars on the road, but traffic appears to be light. The weather is cloudy, and the sky is overcast.", "snapshot": {"id": "ccebc77a-57b8-49d1-90d1-cfb60a22a2a6", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/ccebc77a-57b8-49d1-90d1-cfb60a22a2a6.png", "timestamp": "2024-02-15T20:52:32.582401+00:00"}}, {"id": "84f8dc5c-0d98-4bdd-8227-f6b430f54375", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.822754+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d.png", "timestamp": "2024-02-15T20:50:09.431049+00:00"}}, {"id": "8d23ed0e-be09-4dbe-9d11-d82f0122cd6c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.603387+00:00", "label": "null", "label_explanation": "The image shows a six-lane urban road with a bus and a motorcycle in the foreground. There are cars on the opposite side of the road, and buildings and trees on either side of the road.", "snapshot": {"id": "cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d.png", "timestamp": "2024-02-15T20:50:09.431049+00:00"}}, {"id": "38757728-d974-46e2-a01f-9519f4a9c219", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.422508+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d.png", "timestamp": "2024-02-15T20:50:09.431049+00:00"}}, {"id": "946007a5-3c81-448f-a86b-51962038710e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.510010+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d.png", "timestamp": "2024-02-15T20:50:09.431049+00:00"}}, {"id": "4bcce5a7-835b-4646-be07-609a1ff152d8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.317387+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with some cars on the road.", "snapshot": {"id": "cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d.png", "timestamp": "2024-02-15T20:50:09.431049+00:00"}}, {"id": "e67bfdee-6595-43bd-aaf4-d3f0ad3040f8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.111488+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/cf24ecb4-54cc-46a0-a83b-d0a9714c1e6d.png", "timestamp": "2024-02-15T20:50:09.431049+00:00"}}, {"id": "e9d9194c-1791-4a72-8d33-ee84a0f50ec3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.736547+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "441e7b9d-45c8-4c43-b1f3-2b43693f1a6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/441e7b9d-45c8-4c43-b1f3-2b43693f1a6d.png", "timestamp": "2024-02-15T20:55:02.529328+00:00"}}, {"id": "fa3e87e0-4433-498d-ae3a-061e96f987ec", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.517067+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with cars, a bus, and a motorcycle moving at a steady pace.", "snapshot": {"id": "441e7b9d-45c8-4c43-b1f3-2b43693f1a6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/441e7b9d-45c8-4c43-b1f3-2b43693f1a6d.png", "timestamp": "2024-02-15T20:55:02.529328+00:00"}}, {"id": "35890f00-df40-47c7-9d9d-a23fac4db5e0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:12.998539+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "441e7b9d-45c8-4c43-b1f3-2b43693f1a6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/441e7b9d-45c8-4c43-b1f3-2b43693f1a6d.png", "timestamp": "2024-02-15T20:55:02.529328+00:00"}}, {"id": "44a2839e-97fd-4b19-a083-9e99b601952e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:12.633195+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. There are several cars on the road, a bus, and a motorcycle. The road is surrounded by buildings and trees.", "snapshot": {"id": "441e7b9d-45c8-4c43-b1f3-2b43693f1a6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/441e7b9d-45c8-4c43-b1f3-2b43693f1a6d.png", "timestamp": "2024-02-15T20:55:02.529328+00:00"}}, {"id": "62325091-3c91-44c7-a910-93be81814da2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.201897+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet but not flooded.", "snapshot": {"id": "441e7b9d-45c8-4c43-b1f3-2b43693f1a6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/441e7b9d-45c8-4c43-b1f3-2b43693f1a6d.png", "timestamp": "2024-02-15T20:55:02.529328+00:00"}}, {"id": "5f00216e-69fc-4de7-91dc-1e71ee65423c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:12.426714+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "441e7b9d-45c8-4c43-b1f3-2b43693f1a6d", "camera_id": "000102", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000102/441e7b9d-45c8-4c43-b1f3-2b43693f1a6d.png", "timestamp": "2024-02-15T20:55:02.529328+00:00"}}]}, {"id": "001489", "name": "AV. BRAZ DE PINA, 404 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838076, "longitude": -43.284813, "objects": ["image_corrupted", "image_description", "rain", "water_level", "traffic", "road_blockade"], "identifications": []}, {"id": "001162", "name": "RUA TEIXEIRA DE FREITAS 59 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91426505, "longitude": -43.1777686, "objects": ["rain", "image_description", "image_corrupted", "water_level", "traffic", "road_blockade"], "identifications": [{"id": "d92c967e-fab1-4392-988f-00e9c5cf56ca", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:22.501623+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely without any impediments.", "snapshot": {"id": "5ed2383a-06ea-476d-af2c-63e447a15cad", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/5ed2383a-06ea-476d-af2c-63e447a15cad.png", "timestamp": "2024-02-15T20:30:05.679116+00:00"}}, {"id": "c7419735-5963-4824-a443-d4d5a3e15c7e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.051793+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. On the left side of the image, there is a person walking on the sidewalk, and several parked cars are on the side of the road. On the right side, there is a bus driving on the street with some motion blur. Trees can be seen lining the street, and the weather appears to be clear.", "snapshot": {"id": "5ed2383a-06ea-476d-af2c-63e447a15cad", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/5ed2383a-06ea-476d-af2c-63e447a15cad.png", "timestamp": "2024-02-15T20:30:05.679116+00:00"}}, {"id": "c75bb9a7-59a4-4858-a7a2-50a538f3e667", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:22.139825+00:00", "label": "easy", "label_explanation": "The traffic appears to be flowing smoothly, with no major congestion or disruptions. Vehicles are able to move without significant hindrance.", "snapshot": {"id": "5ed2383a-06ea-476d-af2c-63e447a15cad", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/5ed2383a-06ea-476d-af2c-63e447a15cad.png", "timestamp": "2024-02-15T20:30:05.679116+00:00"}}, {"id": "3d77bb1d-cf2a-45c6-ab3d-ce44ad405310", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:20.775573+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5ed2383a-06ea-476d-af2c-63e447a15cad", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/5ed2383a-06ea-476d-af2c-63e447a15cad.png", "timestamp": "2024-02-15T20:30:05.679116+00:00"}}, {"id": "6799b4ae-458d-4ad2-9659-17a672192330", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.419803+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "5ed2383a-06ea-476d-af2c-63e447a15cad", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/5ed2383a-06ea-476d-af2c-63e447a15cad.png", "timestamp": "2024-02-15T20:30:05.679116+00:00"}}, {"id": "6293fff0-cdfa-49f6-af3a-fa84eb0d61d4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.828246+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation. Therefore, the water level is low.", "snapshot": {"id": "5ed2383a-06ea-476d-af2c-63e447a15cad", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/5ed2383a-06ea-476d-af2c-63e447a15cad.png", "timestamp": "2024-02-15T20:30:05.679116+00:00"}}, {"id": "6b46bf13-686e-472a-a00c-3a37b8031590", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.238872+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "0c5510e3-0e01-4180-93b3-785011312e19", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/0c5510e3-0e01-4180-93b3-785011312e19.png", "timestamp": "2024-02-15T20:32:34.770352+00:00"}}, {"id": "6d61ccbf-e93e-4e86-850a-940f0b2299cb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:49.602616+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0c5510e3-0e01-4180-93b3-785011312e19", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/0c5510e3-0e01-4180-93b3-785011312e19.png", "timestamp": "2024-02-15T20:32:34.770352+00:00"}}, {"id": "f836e7b0-b6c5-4634-ad6f-0b8148abaed8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.360935+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "0c5510e3-0e01-4180-93b3-785011312e19", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/0c5510e3-0e01-4180-93b3-785011312e19.png", "timestamp": "2024-02-15T20:32:34.770352+00:00"}}, {"id": "5038ec64-a072-4b39-b625-668ff4bbe824", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.605034+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "0c5510e3-0e01-4180-93b3-785011312e19", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/0c5510e3-0e01-4180-93b3-785011312e19.png", "timestamp": "2024-02-15T20:32:34.770352+00:00"}}, {"id": "7ab9c563-2fb4-405e-a00f-1b02dd433364", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:51.943584+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "0c5510e3-0e01-4180-93b3-785011312e19", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/0c5510e3-0e01-4180-93b3-785011312e19.png", "timestamp": "2024-02-15T20:32:34.770352+00:00"}}, {"id": "b93ec096-21c1-42d5-a77c-34e7fc013d42", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.946621+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "0c5510e3-0e01-4180-93b3-785011312e19", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/0c5510e3-0e01-4180-93b3-785011312e19.png", "timestamp": "2024-02-15T20:32:34.770352+00:00"}}, {"id": "6d348720-c5d7-4aab-af3b-4c274fbd01f9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:17.688843+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is completely clear.", "snapshot": {"id": "1fe7fd38-1fa1-4491-b712-1043234ab7fc", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/1fe7fd38-1fa1-4491-b712-1043234ab7fc.png", "timestamp": "2024-02-15T20:45:02.648174+00:00"}}, {"id": "c889dbd2-f1e6-4853-a645-e5d595c8c24c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.872742+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1fe7fd38-1fa1-4491-b712-1043234ab7fc", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/1fe7fd38-1fa1-4491-b712-1043234ab7fc.png", "timestamp": "2024-02-15T20:45:02.648174+00:00"}}, {"id": "de987663-a23e-4c0a-be9f-ef26f2e5dde5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.196723+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a four-lane road with a traffic light at the intersection. There are a few trees on either side of the road, and buildings and cars in the background.", "snapshot": {"id": "1fe7fd38-1fa1-4491-b712-1043234ab7fc", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/1fe7fd38-1fa1-4491-b712-1043234ab7fc.png", "timestamp": "2024-02-15T20:45:02.648174+00:00"}}, {"id": "654e3bef-f18f-4905-8d81-08d88dfe534f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.008665+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving smoothly.", "snapshot": {"id": "1fe7fd38-1fa1-4491-b712-1043234ab7fc", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/1fe7fd38-1fa1-4491-b712-1043234ab7fc.png", "timestamp": "2024-02-15T20:45:02.648174+00:00"}}, {"id": "ac1091ab-ed5a-4e5f-b7c9-75d16f99c49f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.769986+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "1fe7fd38-1fa1-4491-b712-1043234ab7fc", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/1fe7fd38-1fa1-4491-b712-1043234ab7fc.png", "timestamp": "2024-02-15T20:45:02.648174+00:00"}}, {"id": "29607242-24e3-4fc0-b28e-0ee73c532d57", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.512181+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "1fe7fd38-1fa1-4491-b712-1043234ab7fc", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/1fe7fd38-1fa1-4491-b712-1043234ab7fc.png", "timestamp": "2024-02-15T20:45:02.648174+00:00"}}, {"id": "8ae6bd37-be69-4b2b-b765-43477ba52afc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.318663+00:00", "label": "easy", "label_explanation": "It is not possible to tell the traffic conditions from the image.", "snapshot": {"id": "504364d9-2a99-4bf1-aa62-9089fc09eb55", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/504364d9-2a99-4bf1-aa62-9089fc09eb55.png", "timestamp": "2024-02-15T20:35:03.666417+00:00"}}, {"id": "85854533-deb9-4e97-b2d9-93e15957b8dd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.674862+00:00", "label": "low", "label_explanation": "It is not possible to tell the water level from the image.", "snapshot": {"id": "504364d9-2a99-4bf1-aa62-9089fc09eb55", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/504364d9-2a99-4bf1-aa62-9089fc09eb55.png", "timestamp": "2024-02-15T20:35:03.666417+00:00"}}, {"id": "e135e288-8768-4f2d-9767-2f9966ddd36e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.763757+00:00", "label": "free", "label_explanation": "It is not possible to tell if there are any road blockades from the image.", "snapshot": {"id": "504364d9-2a99-4bf1-aa62-9089fc09eb55", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/504364d9-2a99-4bf1-aa62-9089fc09eb55.png", "timestamp": "2024-02-15T20:35:03.666417+00:00"}}, {"id": "6efce665-66e3-416b-ab1f-99e60524982f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.132902+00:00", "label": "false", "label_explanation": "It is not possible to tell if it is raining from the image.", "snapshot": {"id": "504364d9-2a99-4bf1-aa62-9089fc09eb55", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/504364d9-2a99-4bf1-aa62-9089fc09eb55.png", "timestamp": "2024-02-15T20:35:03.666417+00:00"}}, {"id": "abdb07da-3ce1-4ef8-b632-5a0c9cd268c9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:15.842516+00:00", "label": "null", "label_explanation": "The image is of a road with no visible markings or features.", "snapshot": {"id": "504364d9-2a99-4bf1-aa62-9089fc09eb55", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/504364d9-2a99-4bf1-aa62-9089fc09eb55.png", "timestamp": "2024-02-15T20:35:03.666417+00:00"}}, {"id": "a57c94c9-4adf-429d-b471-ac0075ae0c8b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:15.149096+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "504364d9-2a99-4bf1-aa62-9089fc09eb55", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/504364d9-2a99-4bf1-aa62-9089fc09eb55.png", "timestamp": "2024-02-15T20:35:03.666417+00:00"}}, {"id": "af094251-8794-41b9-9e4b-41a3b9ca216f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.145777+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, allowing for free traffic flow.", "snapshot": {"id": "852049ba-0db2-45fa-bb5e-eda92aeefb84", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/852049ba-0db2-45fa-bb5e-eda92aeefb84.png", "timestamp": "2024-02-15T20:37:37.947336+00:00"}}, {"id": "c48ec7cb-642d-4259-9195-a6c134e72867", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.351335+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "852049ba-0db2-45fa-bb5e-eda92aeefb84", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/852049ba-0db2-45fa-bb5e-eda92aeefb84.png", "timestamp": "2024-02-15T20:37:37.947336+00:00"}}, {"id": "5c1099af-cdae-4813-9d17-07dc8db17544", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.129609+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining recently.", "snapshot": {"id": "852049ba-0db2-45fa-bb5e-eda92aeefb84", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/852049ba-0db2-45fa-bb5e-eda92aeefb84.png", "timestamp": "2024-02-15T20:37:37.947336+00:00"}}, {"id": "3fc2b53b-6962-43da-a4c8-fddc648dee1c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:52.868260+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "852049ba-0db2-45fa-bb5e-eda92aeefb84", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/852049ba-0db2-45fa-bb5e-eda92aeefb84.png", "timestamp": "2024-02-15T20:37:37.947336+00:00"}}, {"id": "4743d50f-2a29-4781-8f55-f26520a17da3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.506703+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a yellow taxi driving on the rightmost lane. The road is wet from recent rain, with small puddles scattered across the surface. On the left side of the road, there is a sidewalk with several pedestrians walking, and a few trees.", "snapshot": {"id": "852049ba-0db2-45fa-bb5e-eda92aeefb84", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/852049ba-0db2-45fa-bb5e-eda92aeefb84.png", "timestamp": "2024-02-15T20:37:37.947336+00:00"}}, {"id": "df793e01-64fa-49d0-a203-13578a7f4d17", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.866317+00:00", "label": "low", "label_explanation": "The water level on the road is low, as it only forms small and shallow puddles.", "snapshot": {"id": "852049ba-0db2-45fa-bb5e-eda92aeefb84", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/852049ba-0db2-45fa-bb5e-eda92aeefb84.png", "timestamp": "2024-02-15T20:37:37.947336+00:00"}}, {"id": "65ffabe5-ef22-4294-ad7d-9cee3a60e41d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.166169+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a steady pace. There are no major delays or disruptions.", "snapshot": {"id": "23422483-b662-4344-bdf6-d42c8e2d1a5b", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/23422483-b662-4344-bdf6-d42c8e2d1a5b.png", "timestamp": "2024-02-15T20:40:10.838521+00:00"}}, {"id": "5098402a-3e24-4131-bde3-0e6d33e6cfd2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:25.273480+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "23422483-b662-4344-bdf6-d42c8e2d1a5b", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/23422483-b662-4344-bdf6-d42c8e2d1a5b.png", "timestamp": "2024-02-15T20:40:10.838521+00:00"}}, {"id": "afec1c97-837c-4121-b9ec-90e0ce184768", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.313214+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "23422483-b662-4344-bdf6-d42c8e2d1a5b", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/23422483-b662-4344-bdf6-d42c8e2d1a5b.png", "timestamp": "2024-02-15T20:40:10.838521+00:00"}}, {"id": "cb36e545-64aa-4387-b3d5-341ff77d62a5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.662263+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also small puddles of water on the road.", "snapshot": {"id": "23422483-b662-4344-bdf6-d42c8e2d1a5b", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/23422483-b662-4344-bdf6-d42c8e2d1a5b.png", "timestamp": "2024-02-15T20:40:10.838521+00:00"}}, {"id": "cc36ad38-ac4d-4c65-bb83-873e0aac665a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.708416+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. There are several vehicles on the road, including a bus, cars, and a motorcycle. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "23422483-b662-4344-bdf6-d42c8e2d1a5b", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/23422483-b662-4344-bdf6-d42c8e2d1a5b.png", "timestamp": "2024-02-15T20:40:10.838521+00:00"}}, {"id": "ca5ac285-2a47-4410-96f0-729ac6b97503", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.788326+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "23422483-b662-4344-bdf6-d42c8e2d1a5b", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/23422483-b662-4344-bdf6-d42c8e2d1a5b.png", "timestamp": "2024-02-15T20:40:10.838521+00:00"}}, {"id": "bf74fb44-5493-4e60-b6c1-058e4c6023dc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.493071+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving at a steady pace and pedestrians crossing the road safely.", "snapshot": {"id": "8babf26c-4529-4c16-ad9a-deb8a9549644", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/8babf26c-4529-4c16-ad9a-deb8a9549644.png", "timestamp": "2024-02-15T20:47:25.606759+00:00"}}, {"id": "6c587235-44ea-4a73-bcb2-63b0e025cd7d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.777576+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "8babf26c-4529-4c16-ad9a-deb8a9549644", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/8babf26c-4529-4c16-ad9a-deb8a9549644.png", "timestamp": "2024-02-15T20:47:25.606759+00:00"}}, {"id": "96a5c5f3-b8bc-4d50-9015-5bcb4619a201", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.320607+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8babf26c-4529-4c16-ad9a-deb8a9549644", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/8babf26c-4529-4c16-ad9a-deb8a9549644.png", "timestamp": "2024-02-15T20:47:25.606759+00:00"}}, {"id": "da3e66ac-3d19-4725-a32e-dc3817b0ab7b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.558806+00:00", "label": "null", "label_explanation": "The image captures a bustling urban street scene with a red traffic light, people crossing the road, and vehicles on the street.", "snapshot": {"id": "8babf26c-4529-4c16-ad9a-deb8a9549644", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/8babf26c-4529-4c16-ad9a-deb8a9549644.png", "timestamp": "2024-02-15T20:47:25.606759+00:00"}}, {"id": "9cea24d7-d1e4-4e4b-b102-3a15f3e2aef4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.267778+00:00", "label": "low", "label_explanation": "The water level is low, as the puddles are shallow and do not cover a significant portion of the road surface.", "snapshot": {"id": "8babf26c-4529-4c16-ad9a-deb8a9549644", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/8babf26c-4529-4c16-ad9a-deb8a9549644.png", "timestamp": "2024-02-15T20:47:25.606759+00:00"}}, {"id": "b4f46adf-451a-4b99-8b84-ffa814771cba", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.770050+00:00", "label": "true", "label_explanation": "The presence of small puddles on the road surface indicates that it has been raining.", "snapshot": {"id": "8babf26c-4529-4c16-ad9a-deb8a9549644", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/8babf26c-4529-4c16-ad9a-deb8a9549644.png", "timestamp": "2024-02-15T20:47:25.606759+00:00"}}, {"id": "a9d9f233-09f2-42a6-84c6-be82b2d659a0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.334879+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are not causing any significant traffic disruptions.", "snapshot": {"id": "9f69f98e-f5f1-4a3f-806b-cf7786dc91ac", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/9f69f98e-f5f1-4a3f-806b-cf7786dc91ac.png", "timestamp": "2024-02-15T20:42:38.985764+00:00"}}, {"id": "fb93c3a9-5ac4-4ad0-b8f2-44e99e9c833c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.667496+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9f69f98e-f5f1-4a3f-806b-cf7786dc91ac", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/9f69f98e-f5f1-4a3f-806b-cf7786dc91ac.png", "timestamp": "2024-02-15T20:42:38.985764+00:00"}}, {"id": "2f632f65-7652-4a56-abfe-ffead11f0a96", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.837123+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, and traffic is able to flow freely.", "snapshot": {"id": "9f69f98e-f5f1-4a3f-806b-cf7786dc91ac", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/9f69f98e-f5f1-4a3f-806b-cf7786dc91ac.png", "timestamp": "2024-02-15T20:42:38.985764+00:00"}}, {"id": "41417479-b243-4c9d-b137-ecb262ae4d21", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.544771+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "9f69f98e-f5f1-4a3f-806b-cf7786dc91ac", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/9f69f98e-f5f1-4a3f-806b-cf7786dc91ac.png", "timestamp": "2024-02-15T20:42:38.985764+00:00"}}, {"id": "a6d9d98b-0161-49e7-a79b-4e46c3a2b481", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.138837+00:00", "label": "true", "label_explanation": "The image shows a wet road surface, indicating that it has been raining.", "snapshot": {"id": "9f69f98e-f5f1-4a3f-806b-cf7786dc91ac", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/9f69f98e-f5f1-4a3f-806b-cf7786dc91ac.png", "timestamp": "2024-02-15T20:42:38.985764+00:00"}}, {"id": "0532f429-5e7a-4ba9-9c33-fbbfdc200b7c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.915931+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a yellow taxi driving on the right side of the road. There is a bus on the left side of the road, and a red traffic light can be seen in the background. There are also trees and buildings in the background.", "snapshot": {"id": "9f69f98e-f5f1-4a3f-806b-cf7786dc91ac", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/9f69f98e-f5f1-4a3f-806b-cf7786dc91ac.png", "timestamp": "2024-02-15T20:42:38.985764+00:00"}}, {"id": "f5f34eda-1b86-48bf-bbe0-d3dfad51dcb8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:15.813865+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "74c9bed1-5f35-4860-aac1-8ff9be822c34", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/74c9bed1-5f35-4860-aac1-8ff9be822c34.png", "timestamp": "2024-02-15T20:52:06.830726+00:00"}}, {"id": "ca5a02c8-e02d-4f9d-91c7-b43d6a1d8e0e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:15.612809+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "74c9bed1-5f35-4860-aac1-8ff9be822c34", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/74c9bed1-5f35-4860-aac1-8ff9be822c34.png", "timestamp": "2024-02-15T20:52:06.830726+00:00"}}, {"id": "1a48424a-1103-4645-bdf7-6cebbf6db980", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.730517+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars visible on the road. The wet road conditions may cause some minor traffic disruptions, but overall the flow of traffic is smooth.", "snapshot": {"id": "b3a901d7-40ae-406f-af82-167a96aab599", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/b3a901d7-40ae-406f-af82-167a96aab599.png", "timestamp": "2024-02-15T20:49:51.302105+00:00"}}, {"id": "89ae77b2-6c23-41ed-9ecf-f826f0ee9d67", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.525298+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles scattered across the surface. The majority of the road is dry and easily navigable.", "snapshot": {"id": "b3a901d7-40ae-406f-af82-167a96aab599", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/b3a901d7-40ae-406f-af82-167a96aab599.png", "timestamp": "2024-02-15T20:49:51.302105+00:00"}}, {"id": "0a202ec2-c6c5-4baf-b2e2-34f01f022e05", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.947682+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate lighting conditions. It features a two-lane road with a traffic light at the intersection. The road surface is wet from recent rain, with small puddles scattered across the lanes. There are trees on either side of the road, and buildings and cars in the background.", "snapshot": {"id": "b3a901d7-40ae-406f-af82-167a96aab599", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/b3a901d7-40ae-406f-af82-167a96aab599.png", "timestamp": "2024-02-15T20:49:51.302105+00:00"}}, {"id": "dded018d-a2a6-46fe-b611-bd4c08977c80", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.006270+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely in both directions.", "snapshot": {"id": "b3a901d7-40ae-406f-af82-167a96aab599", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/b3a901d7-40ae-406f-af82-167a96aab599.png", "timestamp": "2024-02-15T20:49:51.302105+00:00"}}, {"id": "3d410633-67e0-4edc-99b5-919534d5874e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.186602+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining recently. The water is not deep and does not pose a significant hazard to drivers.", "snapshot": {"id": "b3a901d7-40ae-406f-af82-167a96aab599", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/b3a901d7-40ae-406f-af82-167a96aab599.png", "timestamp": "2024-02-15T20:49:51.302105+00:00"}}, {"id": "ebb3ccbb-9c1d-494f-a9bf-8486e18d528d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.653063+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b3a901d7-40ae-406f-af82-167a96aab599", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/b3a901d7-40ae-406f-af82-167a96aab599.png", "timestamp": "2024-02-15T20:49:51.302105+00:00"}}, {"id": "e577857c-9e74-4d14-8cdb-9ef592e7e3aa", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:50.269977+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "9b1bb854-da83-4849-bcc5-d47d7d872de6", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/9b1bb854-da83-4849-bcc5-d47d7d872de6.png", "timestamp": "2024-02-15T20:54:40.087506+00:00"}}, {"id": "bb292c88-51c2-41bc-bfcb-8e234d03aef9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:50.487149+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "9b1bb854-da83-4849-bcc5-d47d7d872de6", "camera_id": "001162", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001162/9b1bb854-da83-4849-bcc5-d47d7d872de6.png", "timestamp": "2024-02-15T20:54:40.087506+00:00"}}]}, {"id": "001624", "name": "AV. PRES. VARGAS X RIO BRANCO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90143, "longitude": -43.179173, "objects": ["image_corrupted", "rain", "water_level", "image_description", "traffic", "road_blockade"], "identifications": [{"id": "244a04db-01b3-4702-bfe4-48077822e5a0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.053107+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "8503237e-2c5a-48e2-8a57-01e4757cc01b", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/8503237e-2c5a-48e2-8a57-01e4757cc01b.png", "timestamp": "2024-02-15T20:30:08.026859+00:00"}}, {"id": "b2b094e4-64f5-4a79-937b-b9fdc7480801", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:22.079688+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "8503237e-2c5a-48e2-8a57-01e4757cc01b", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/8503237e-2c5a-48e2-8a57-01e4757cc01b.png", "timestamp": "2024-02-15T20:30:08.026859+00:00"}}, {"id": "1611c131-1683-414e-9f0a-33d644833639", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.821330+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, including buses and cars. The road surface is wet from recent rain, but there are no significant obstructions or hazards visible.", "snapshot": {"id": "8503237e-2c5a-48e2-8a57-01e4757cc01b", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/8503237e-2c5a-48e2-8a57-01e4757cc01b.png", "timestamp": "2024-02-15T20:30:08.026859+00:00"}}, {"id": "3bcb5eee-ab21-43aa-b1bc-e32ac98dca6e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.630412+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8503237e-2c5a-48e2-8a57-01e4757cc01b", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/8503237e-2c5a-48e2-8a57-01e4757cc01b.png", "timestamp": "2024-02-15T20:30:08.026859+00:00"}}, {"id": "0e451439-42c7-4287-93c2-6e6c6b4358a8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:22.576109+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "8503237e-2c5a-48e2-8a57-01e4757cc01b", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/8503237e-2c5a-48e2-8a57-01e4757cc01b.png", "timestamp": "2024-02-15T20:30:08.026859+00:00"}}, {"id": "1d76d312-9588-4eca-aa1c-b60e32c510da", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.511216+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free movement of traffic.", "snapshot": {"id": "8503237e-2c5a-48e2-8a57-01e4757cc01b", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/8503237e-2c5a-48e2-8a57-01e4757cc01b.png", "timestamp": "2024-02-15T20:30:08.026859+00:00"}}, {"id": "1a93b620-842a-4244-b8af-fea978fd03cf", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.937358+00:00", "label": "low", "label_explanation": "The water level on the road is low, as there are no significant puddles or\u79ef\u6c34. The water is mostly confined to the areas immediately adjacent to the curbs and gutters.", "snapshot": {"id": "d9c9b232-7738-4365-824d-f5407ad566d2", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/d9c9b232-7738-4365-824d-f5407ad566d2.png", "timestamp": "2024-02-15T20:32:33.860484+00:00"}}, {"id": "67bc7d82-7e40-4533-aa1e-6f4da3e57cd0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:51.558968+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d9c9b232-7738-4365-824d-f5407ad566d2", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/d9c9b232-7738-4365-824d-f5407ad566d2.png", "timestamp": "2024-02-15T20:32:33.860484+00:00"}}, {"id": "c3ad02e7-75df-4843-9167-31bd9c27a2fd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.353466+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and a clear view of the street. It is daytime and the weather appears to be cloudy or overcast. There are several vehicles on the street, including buses, cars, and taxis, as well as numerous pedestrians on the sidewalks and crossing the street. The road surface is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "d9c9b232-7738-4365-824d-f5407ad566d2", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/d9c9b232-7738-4365-824d-f5407ad566d2.png", "timestamp": "2024-02-15T20:32:33.860484+00:00"}}, {"id": "424ccdfb-a994-4dd1-aa9b-cb35712dd3e8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:55.321666+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "d9c9b232-7738-4365-824d-f5407ad566d2", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/d9c9b232-7738-4365-824d-f5407ad566d2.png", "timestamp": "2024-02-15T20:32:33.860484+00:00"}}, {"id": "e9789d6d-d825-4e05-b7db-336f80dea8c4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:54.482000+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a steady flow of vehicles and pedestrians. There are no major delays or disruptions visible in the image.", "snapshot": {"id": "d9c9b232-7738-4365-824d-f5407ad566d2", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/d9c9b232-7738-4365-824d-f5407ad566d2.png", "timestamp": "2024-02-15T20:32:33.860484+00:00"}}, {"id": "52f8eff9-aeed-412f-8913-79f34740f641", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.194867+00:00", "label": "true", "label_explanation": "The presence of rain is indicated by the wet road surface and the reflections of light on the water. The rain appears to be light to moderate, as the road is still visible and there is no significant accumulation of water.", "snapshot": {"id": "d9c9b232-7738-4365-824d-f5407ad566d2", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/d9c9b232-7738-4365-824d-f5407ad566d2.png", "timestamp": "2024-02-15T20:32:33.860484+00:00"}}, {"id": "7f8484f3-fe1f-4e33-9146-20d25e31025b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.350141+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy with some light reflecting on the road surface. There are several vehicles visible, including a bus and a tram, as well as a cyclist and pedestrians crossing the intersection. The road surface is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "9d788ddf-927a-4fe8-bc96-35d9b386b747", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9d788ddf-927a-4fe8-bc96-35d9b386b747.png", "timestamp": "2024-02-15T20:45:00.792017+00:00"}}, {"id": "3a4826c6-2abd-4b8e-8f4f-4d2c994e2e75", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.298610+00:00", "label": "moderate", "label_explanation": "The traffic in the image is moderate, with a mix of vehicles and pedestrians using the intersection. The presence of a bus and a tram suggests that public transportation is also a factor in the traffic flow.", "snapshot": {"id": "9d788ddf-927a-4fe8-bc96-35d9b386b747", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9d788ddf-927a-4fe8-bc96-35d9b386b747.png", "timestamp": "2024-02-15T20:45:00.792017+00:00"}}, {"id": "1a5f027f-1bda-4558-90af-e6413a92f3b8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.025307+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry and visible.", "snapshot": {"id": "9d788ddf-927a-4fe8-bc96-35d9b386b747", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9d788ddf-927a-4fe8-bc96-35d9b386b747.png", "timestamp": "2024-02-15T20:45:00.792017+00:00"}}, {"id": "5655d07c-8b2e-4620-9770-7dbb2f59ed7f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.031215+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9d788ddf-927a-4fe8-bc96-35d9b386b747", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9d788ddf-927a-4fe8-bc96-35d9b386b747.png", "timestamp": "2024-02-15T20:45:00.792017+00:00"}}, {"id": "81f632c8-235f-4025-bdec-d6a0dba42c57", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.522793+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. All lanes are open and accessible to traffic.", "snapshot": {"id": "9d788ddf-927a-4fe8-bc96-35d9b386b747", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9d788ddf-927a-4fe8-bc96-35d9b386b747.png", "timestamp": "2024-02-15T20:45:00.792017+00:00"}}, {"id": "e5b8a481-9908-4460-99fd-4b61579d5e8a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.659907+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also some small puddles of water visible on the road.", "snapshot": {"id": "9d788ddf-927a-4fe8-bc96-35d9b386b747", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9d788ddf-927a-4fe8-bc96-35d9b386b747.png", "timestamp": "2024-02-15T20:45:00.792017+00:00"}}, {"id": "3f934740-cfdc-4197-bdae-bdf2d95b019d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.806172+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions. The water appears to be confined to the right side of the road, near the curb.", "snapshot": {"id": "70efaa71-9902-4fd8-ad22-48136301d5fc", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/70efaa71-9902-4fd8-ad22-48136301d5fc.png", "timestamp": "2024-02-15T20:47:25.267404+00:00"}}, {"id": "16321b93-5231-4d7a-bb51-34eaa0e341ae", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.429970+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road from other sources such as a water leak or a burst pipe.", "snapshot": {"id": "70efaa71-9902-4fd8-ad22-48136301d5fc", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/70efaa71-9902-4fd8-ad22-48136301d5fc.png", "timestamp": "2024-02-15T20:47:25.267404+00:00"}}, {"id": "95c97892-347e-4ffa-b9b1-0367489436e8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.189435+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and a bus driving in the foreground. It is daytime and the weather appears to be cloudy or overcast.", "snapshot": {"id": "70efaa71-9902-4fd8-ad22-48136301d5fc", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/70efaa71-9902-4fd8-ad22-48136301d5fc.png", "timestamp": "2024-02-15T20:47:25.267404+00:00"}}, {"id": "10aabcdc-872c-4a21-91d0-999c5e41f7f2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.619174+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "70efaa71-9902-4fd8-ad22-48136301d5fc", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/70efaa71-9902-4fd8-ad22-48136301d5fc.png", "timestamp": "2024-02-15T20:47:25.267404+00:00"}}, {"id": "a237214f-2454-4564-9f91-28a4dcec5717", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.374727+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays. Vehicles are able to navigate the wet road conditions without any difficulty.", "snapshot": {"id": "70efaa71-9902-4fd8-ad22-48136301d5fc", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/70efaa71-9902-4fd8-ad22-48136301d5fc.png", "timestamp": "2024-02-15T20:47:25.267404+00:00"}}, {"id": "1aab43db-1f5a-49c9-9a10-c0624d59bcb0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.917928+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "70efaa71-9902-4fd8-ad22-48136301d5fc", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/70efaa71-9902-4fd8-ad22-48136301d5fc.png", "timestamp": "2024-02-15T20:47:25.267404+00:00"}}, {"id": "6b3eebef-4c06-46d0-b1fd-7c084734bbff", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:51.736182+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "0c531181-61ec-4ccd-90e0-1f818000dc43", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/0c531181-61ec-4ccd-90e0-1f818000dc43.png", "timestamp": "2024-02-15T20:37:37.875466+00:00"}}, {"id": "5fbdee94-45cb-49fb-b671-cd42482f2bd1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:52.908477+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "0c531181-61ec-4ccd-90e0-1f818000dc43", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/0c531181-61ec-4ccd-90e0-1f818000dc43.png", "timestamp": "2024-02-15T20:37:37.875466+00:00"}}, {"id": "f4ed201c-069c-4032-8fae-254fcae351d5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:52.442778+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "0c531181-61ec-4ccd-90e0-1f818000dc43", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/0c531181-61ec-4ccd-90e0-1f818000dc43.png", "timestamp": "2024-02-15T20:37:37.875466+00:00"}}, {"id": "39d6161a-b418-4fa4-8b72-d4a722df212f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:51.350520+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with various vehicles, including buses and cars. The road surface is wet from recent rain, but there are no significant obstructions or hazards visible.", "snapshot": {"id": "0c531181-61ec-4ccd-90e0-1f818000dc43", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/0c531181-61ec-4ccd-90e0-1f818000dc43.png", "timestamp": "2024-02-15T20:37:37.875466+00:00"}}, {"id": "00a2a873-f7c5-48bd-bad3-8742271caf47", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:50.730312+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0c531181-61ec-4ccd-90e0-1f818000dc43", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/0c531181-61ec-4ccd-90e0-1f818000dc43.png", "timestamp": "2024-02-15T20:37:37.875466+00:00"}}, {"id": "6dde7c09-489a-45da-bdd2-e1ba1f9a24ae", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.635759+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free and uninterrupted traffic flow.", "snapshot": {"id": "0c531181-61ec-4ccd-90e0-1f818000dc43", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/0c531181-61ec-4ccd-90e0-1f818000dc43.png", "timestamp": "2024-02-15T20:37:37.875466+00:00"}}, {"id": "0f18ac38-c6c9-4eb7-a83f-14a5d87a77dc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.572033+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, including buses and cars. The road is wet from recent rain, but there are no significant obstructions or hazards visible.", "snapshot": {"id": "31fea556-38cc-4903-831c-7414fc4043c1", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/31fea556-38cc-4903-831c-7414fc4043c1.png", "timestamp": "2024-02-15T20:35:07.949223+00:00"}}, {"id": "bf3a7a97-391e-4a9b-8970-65e38b86b68c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.851418+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "31fea556-38cc-4903-831c-7414fc4043c1", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/31fea556-38cc-4903-831c-7414fc4043c1.png", "timestamp": "2024-02-15T20:35:07.949223+00:00"}}, {"id": "0e02f057-6d37-488c-b9fd-604af835f082", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.627773+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "31fea556-38cc-4903-831c-7414fc4043c1", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/31fea556-38cc-4903-831c-7414fc4043c1.png", "timestamp": "2024-02-15T20:35:07.949223+00:00"}}, {"id": "108f4da4-d429-47ad-bb25-75a00ef0224e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.384439+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving slowly due to the wet conditions.", "snapshot": {"id": "31fea556-38cc-4903-831c-7414fc4043c1", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/31fea556-38cc-4903-831c-7414fc4043c1.png", "timestamp": "2024-02-15T20:35:07.949223+00:00"}}, {"id": "02e6689d-b79f-49c6-97e0-16bd2f88868c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.319324+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "31fea556-38cc-4903-831c-7414fc4043c1", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/31fea556-38cc-4903-831c-7414fc4043c1.png", "timestamp": "2024-02-15T20:35:07.949223+00:00"}}, {"id": "c6a966ce-f85f-402e-ae07-32b2f7f76a50", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.851210+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, and traffic is able to flow freely.", "snapshot": {"id": "31fea556-38cc-4903-831c-7414fc4043c1", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/31fea556-38cc-4903-831c-7414fc4043c1.png", "timestamp": "2024-02-15T20:35:07.949223+00:00"}}, {"id": "b49dc1f0-b973-4c98-acd6-35170fd84a7f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.531556+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with various vehicles, buildings, and people.", "snapshot": {"id": "9be530d2-ccd5-4063-980a-6dcc31fb3aa9", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9be530d2-ccd5-4063-980a-6dcc31fb3aa9.png", "timestamp": "2024-02-15T20:40:11.017118+00:00"}}, {"id": "c8514e60-71be-4ffe-ad86-9d2887510b8e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.531857+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9be530d2-ccd5-4063-980a-6dcc31fb3aa9", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9be530d2-ccd5-4063-980a-6dcc31fb3aa9.png", "timestamp": "2024-02-15T20:40:11.017118+00:00"}}, {"id": "1d12907b-94db-4629-86f5-b54941621f83", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.503584+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "9be530d2-ccd5-4063-980a-6dcc31fb3aa9", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9be530d2-ccd5-4063-980a-6dcc31fb3aa9.png", "timestamp": "2024-02-15T20:40:11.017118+00:00"}}, {"id": "2b177a90-1ae6-429b-a31e-a8f687f5e1c4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:25.954545+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "9be530d2-ccd5-4063-980a-6dcc31fb3aa9", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9be530d2-ccd5-4063-980a-6dcc31fb3aa9.png", "timestamp": "2024-02-15T20:40:11.017118+00:00"}}, {"id": "c5f5c167-4144-4ba9-b365-eaae8e323b41", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:25.089624+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "9be530d2-ccd5-4063-980a-6dcc31fb3aa9", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9be530d2-ccd5-4063-980a-6dcc31fb3aa9.png", "timestamp": "2024-02-15T20:40:11.017118+00:00"}}, {"id": "386e7de2-d9a1-4c93-bb4f-5eebc09455df", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.940383+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road, allowing for the free flow of traffic.", "snapshot": {"id": "9be530d2-ccd5-4063-980a-6dcc31fb3aa9", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/9be530d2-ccd5-4063-980a-6dcc31fb3aa9.png", "timestamp": "2024-02-15T20:40:11.017118+00:00"}}, {"id": "0321ebfb-f8e7-4b8c-a62c-66c0c7f93db2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.462862+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away.", "snapshot": {"id": "eb33c4a1-8a34-45b4-a645-7e964c901864", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/eb33c4a1-8a34-45b4-a645-7e964c901864.png", "timestamp": "2024-02-15T20:42:34.813841+00:00"}}, {"id": "33d5481e-bfd0-4678-8250-ca15707e3916", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.985265+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "eb33c4a1-8a34-45b4-a645-7e964c901864", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/eb33c4a1-8a34-45b4-a645-7e964c901864.png", "timestamp": "2024-02-15T20:42:34.813841+00:00"}}, {"id": "2f25016e-fdd0-40a3-9229-ed187977fa69", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:46.981239+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It features a wide, multi-lane road with traffic moving in both directions. There are several cars, buses, and pedestrians on the road. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "eb33c4a1-8a34-45b4-a645-7e964c901864", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/eb33c4a1-8a34-45b4-a645-7e964c901864.png", "timestamp": "2024-02-15T20:42:34.813841+00:00"}}, {"id": "2462580f-75f9-40e6-a426-836a28f343d7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.242483+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "eb33c4a1-8a34-45b4-a645-7e964c901864", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/eb33c4a1-8a34-45b4-a645-7e964c901864.png", "timestamp": "2024-02-15T20:42:34.813841+00:00"}}, {"id": "4cc9cf46-f356-48ea-84dc-01ced0f8f995", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:46.675859+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "eb33c4a1-8a34-45b4-a645-7e964c901864", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/eb33c4a1-8a34-45b4-a645-7e964c901864.png", "timestamp": "2024-02-15T20:42:34.813841+00:00"}}, {"id": "3eaa9d8d-3ea0-4bf0-93bf-fa525e02f87d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.652593+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars and buses moving slowly due to the wet road conditions.", "snapshot": {"id": "eb33c4a1-8a34-45b4-a645-7e964c901864", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/eb33c4a1-8a34-45b4-a645-7e964c901864.png", "timestamp": "2024-02-15T20:42:34.813841+00:00"}}, {"id": "c3fc8925-7c1e-4d76-beb9-457f61985c4c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.623331+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing traffic to flow freely. The road is clear and open for use by all types of vehicles and pedestrians.", "snapshot": {"id": "ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6.png", "timestamp": "2024-02-15T20:49:49.590241+00:00"}}, {"id": "c601bbf3-ac5c-4767-9a65-45c9e578b5c2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.984784+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a thin layer of water covering the surface. The water is not deep enough to cause any significant hindrance to traffic or pose a risk of flooding.", "snapshot": {"id": "ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6.png", "timestamp": "2024-02-15T20:49:49.590241+00:00"}}, {"id": "59a709ee-875a-4146-9943-fc5edd37ef11", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.272902+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate, with a steady flow of vehicles moving in both directions. The vehicles are able to move without any major disruptions or delays, indicating that the wet road conditions are not causing any significant traffic issues.", "snapshot": {"id": "ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6.png", "timestamp": "2024-02-15T20:49:49.590241+00:00"}}, {"id": "a556c275-6f8a-4554-ac02-44dc0cceb9aa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.241995+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and a clear view of the street. It is daytime and the weather appears to be cloudy or overcast, as direct sunlight is not visible. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are several vehicles on the street, including cars, buses, and motorcycles, as well as pedestrians on the sidewalks and crossing the street. The traffic signals are not visible, but the vehicles appear to be moving smoothly.", "snapshot": {"id": "ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6.png", "timestamp": "2024-02-15T20:49:49.590241+00:00"}}, {"id": "276e565d-061e-488e-b6ac-b28ba560a2c2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.559903+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy or persistent, as there are no large puddles or significant water accumulation on the road.", "snapshot": {"id": "ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6.png", "timestamp": "2024-02-15T20:49:49.590241+00:00"}}, {"id": "814f817d-a645-45bf-ab73-1e4afca3f9a0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:01.911006+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/ce6f954c-1c84-4ac1-bb10-4d5df9c2e0e6.png", "timestamp": "2024-02-15T20:49:49.590241+00:00"}}, {"id": "1f5ea78f-ed99-4caa-8ded-a207fae164cd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.247951+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "82bcdacf-152b-4f0f-b872-e63fd7cbab78", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/82bcdacf-152b-4f0f-b872-e63fd7cbab78.png", "timestamp": "2024-02-15T20:52:13.758749+00:00"}}, {"id": "b7a4971f-7918-474c-8f88-3a7be9cc7ba1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.097092+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and the right. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and trucks. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "82bcdacf-152b-4f0f-b872-e63fd7cbab78", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/82bcdacf-152b-4f0f-b872-e63fd7cbab78.png", "timestamp": "2024-02-15T20:52:13.758749+00:00"}}, {"id": "d8d82c27-d11d-4332-aed4-b0194623e2db", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.963122+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "82bcdacf-152b-4f0f-b872-e63fd7cbab78", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/82bcdacf-152b-4f0f-b872-e63fd7cbab78.png", "timestamp": "2024-02-15T20:52:13.758749+00:00"}}, {"id": "75d8b9a6-4dda-4535-8e71-06f48e04aa89", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.569037+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "82bcdacf-152b-4f0f-b872-e63fd7cbab78", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/82bcdacf-152b-4f0f-b872-e63fd7cbab78.png", "timestamp": "2024-02-15T20:52:13.758749+00:00"}}, {"id": "85b3b864-2be9-43eb-ba46-b7ef83f1cf51", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.763711+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "82bcdacf-152b-4f0f-b872-e63fd7cbab78", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/82bcdacf-152b-4f0f-b872-e63fd7cbab78.png", "timestamp": "2024-02-15T20:52:13.758749+00:00"}}, {"id": "d4b5657a-b954-471e-a193-580f7d4b5e3a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.343713+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "82bcdacf-152b-4f0f-b872-e63fd7cbab78", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/82bcdacf-152b-4f0f-b872-e63fd7cbab78.png", "timestamp": "2024-02-15T20:52:13.758749+00:00"}}, {"id": "094db43e-6ee6-406d-9ee1-fd3267fc946c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.787663+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "11af4b8e-b363-4e8f-9723-1caef0c0765e", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/11af4b8e-b363-4e8f-9723-1caef0c0765e.png", "timestamp": "2024-02-15T20:54:42.261718+00:00"}}, {"id": "27006552-17bf-408d-8073-283817780ad6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.164503+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "11af4b8e-b363-4e8f-9723-1caef0c0765e", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/11af4b8e-b363-4e8f-9723-1caef0c0765e.png", "timestamp": "2024-02-15T20:54:42.261718+00:00"}}, {"id": "2b30de6e-15f7-4fc1-a06a-2d4857350e1b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.864082+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "11af4b8e-b363-4e8f-9723-1caef0c0765e", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/11af4b8e-b363-4e8f-9723-1caef0c0765e.png", "timestamp": "2024-02-15T20:54:42.261718+00:00"}}, {"id": "329d1b8a-d341-4bc2-9485-899abe4e38c3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.498698+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "11af4b8e-b363-4e8f-9723-1caef0c0765e", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/11af4b8e-b363-4e8f-9723-1caef0c0765e.png", "timestamp": "2024-02-15T20:54:42.261718+00:00"}}, {"id": "c5fb52ec-a142-4f6e-83fc-3d75e57fa4e5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.494362+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "11af4b8e-b363-4e8f-9723-1caef0c0765e", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/11af4b8e-b363-4e8f-9723-1caef0c0765e.png", "timestamp": "2024-02-15T20:54:42.261718+00:00"}}, {"id": "44099b33-7859-4fce-aa9c-5be1bae471f8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.286579+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and people.", "snapshot": {"id": "11af4b8e-b363-4e8f-9723-1caef0c0765e", "camera_id": "001624", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001624/11af4b8e-b363-4e8f-9723-1caef0c0765e.png", "timestamp": "2024-02-15T20:54:42.261718+00:00"}}]}, {"id": "000033", "name": "AV. DELFIM MOREIRA X RUA BARTOLOMEU MITRE", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98707169, "longitude": -43.22232705, "objects": ["image_corrupted", "rain", "image_description", "traffic", "road_blockade", "water_level"], "identifications": [{"id": "11b5647e-b31a-4473-8cda-a28026707ebe", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.494522+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions visible.", "snapshot": {"id": "1111aeb5-a112-4df8-88c5-6f321d934bf2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/1111aeb5-a112-4df8-88c5-6f321d934bf2.png", "timestamp": "2024-02-15T20:30:07.307673+00:00"}}, {"id": "9abe4b19-8dd6-413a-b993-795525a91ebc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.204852+00:00", "label": "easy", "label_explanation": "The road is dry and there is no visible traffic congestion.", "snapshot": {"id": "1111aeb5-a112-4df8-88c5-6f321d934bf2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/1111aeb5-a112-4df8-88c5-6f321d934bf2.png", "timestamp": "2024-02-15T20:30:07.307673+00:00"}}, {"id": "b472ab70-a1b0-459c-919d-d1d63e3cdea8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:22.993955+00:00", "label": "null", "label_explanation": "The image captures a coastal road with a beach on one side and buildings on the other. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "1111aeb5-a112-4df8-88c5-6f321d934bf2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/1111aeb5-a112-4df8-88c5-6f321d934bf2.png", "timestamp": "2024-02-15T20:30:07.307673+00:00"}}, {"id": "1c3b90f1-e9d5-4f17-b783-7b6197d04436", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.949079+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "1111aeb5-a112-4df8-88c5-6f321d934bf2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/1111aeb5-a112-4df8-88c5-6f321d934bf2.png", "timestamp": "2024-02-15T20:30:07.307673+00:00"}}, {"id": "1e767320-5843-4012-9e3f-1168effd43c9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.429027+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "1111aeb5-a112-4df8-88c5-6f321d934bf2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/1111aeb5-a112-4df8-88c5-6f321d934bf2.png", "timestamp": "2024-02-15T20:30:07.307673+00:00"}}, {"id": "170fdc4a-24c1-406b-84d8-b0720e525357", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:22.540556+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1111aeb5-a112-4df8-88c5-6f321d934bf2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/1111aeb5-a112-4df8-88c5-6f321d934bf2.png", "timestamp": "2024-02-15T20:30:07.307673+00:00"}}, {"id": "ef15deb7-d0b2-4554-a0c4-40bec12ecf2d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:49.301336+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a steady flow of vehicles, but no significant congestion or traffic disruptions.", "snapshot": {"id": "779cfcdb-33b4-4f4d-841f-b72cd26697d6", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/779cfcdb-33b4-4f4d-841f-b72cd26697d6.png", "timestamp": "2024-02-15T20:32:32.956617+00:00"}}, {"id": "e8eca36b-3ee6-48dc-8d02-d5e4f33d74e9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:47.185019+00:00", "label": "false", "label_explanation": "While there are dark clouds in the background, there is no visible rain or water on the road surface.", "snapshot": {"id": "779cfcdb-33b4-4f4d-841f-b72cd26697d6", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/779cfcdb-33b4-4f4d-841f-b72cd26697d6.png", "timestamp": "2024-02-15T20:32:32.956617+00:00"}}, {"id": "0f4b8dea-9736-4f36-be7d-76de1bd34d84", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:46.550416+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road scene with various elements, including buildings, vehicles, and people.", "snapshot": {"id": "779cfcdb-33b4-4f4d-841f-b72cd26697d6", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/779cfcdb-33b4-4f4d-841f-b72cd26697d6.png", "timestamp": "2024-02-15T20:32:32.956617+00:00"}}, {"id": "c2644721-354b-447d-a1d7-be8d9b03927d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.313882+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation or flooding.", "snapshot": {"id": "779cfcdb-33b4-4f4d-841f-b72cd26697d6", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/779cfcdb-33b4-4f4d-841f-b72cd26697d6.png", "timestamp": "2024-02-15T20:32:32.956617+00:00"}}, {"id": "c5055955-12f1-4e32-a108-5c0b961df696", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.147491+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "779cfcdb-33b4-4f4d-841f-b72cd26697d6", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/779cfcdb-33b4-4f4d-841f-b72cd26697d6.png", "timestamp": "2024-02-15T20:32:32.956617+00:00"}}, {"id": "c4c4496a-143c-44b9-b50e-223d36341fbc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.623352+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "779cfcdb-33b4-4f4d-841f-b72cd26697d6", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/779cfcdb-33b4-4f4d-841f-b72cd26697d6.png", "timestamp": "2024-02-15T20:32:32.956617+00:00"}}, {"id": "8c25616f-5ed2-4af1-8e8a-a79db54d1a04", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.762345+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f9ecd927-372e-4599-a6b6-2657b7faea0f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f9ecd927-372e-4599-a6b6-2657b7faea0f.png", "timestamp": "2024-02-15T20:35:03.632173+00:00"}}, {"id": "91528939-4ce3-4aeb-9848-19e9abe44478", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.447565+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars moving in both directions.", "snapshot": {"id": "f9ecd927-372e-4599-a6b6-2657b7faea0f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f9ecd927-372e-4599-a6b6-2657b7faea0f.png", "timestamp": "2024-02-15T20:35:03.632173+00:00"}}, {"id": "044daa7d-f7e6-41e4-a703-9dff8055336d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:19.099799+00:00", "label": "false", "label_explanation": "There is no rain visible in the image.", "snapshot": {"id": "f9ecd927-372e-4599-a6b6-2657b7faea0f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f9ecd927-372e-4599-a6b6-2657b7faea0f.png", "timestamp": "2024-02-15T20:35:03.632173+00:00"}}, {"id": "409a1272-7e93-4ecd-ad24-bdda63513ce9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:19.706108+00:00", "label": "low", "label_explanation": "There is no water visible on the road surface.", "snapshot": {"id": "f9ecd927-372e-4599-a6b6-2657b7faea0f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f9ecd927-372e-4599-a6b6-2657b7faea0f.png", "timestamp": "2024-02-15T20:35:03.632173+00:00"}}, {"id": "4c630521-832e-40a5-96da-5e919a903ae3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.170138+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a central reservation and street lights. There are tall buildings on either side of the road, and the sky is hazy.", "snapshot": {"id": "f9ecd927-372e-4599-a6b6-2657b7faea0f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f9ecd927-372e-4599-a6b6-2657b7faea0f.png", "timestamp": "2024-02-15T20:35:03.632173+00:00"}}, {"id": "0a0967c5-b19f-4cb7-9142-190251b16da0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.054703+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "f9ecd927-372e-4599-a6b6-2657b7faea0f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f9ecd927-372e-4599-a6b6-2657b7faea0f.png", "timestamp": "2024-02-15T20:35:03.632173+00:00"}}, {"id": "2e740290-038f-43f5-aedf-663c0f947455", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.525775+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "2a315868-07a6-462a-8b9a-be0e5775f3cf", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/2a315868-07a6-462a-8b9a-be0e5775f3cf.png", "timestamp": "2024-02-15T20:37:36.530567+00:00"}}, {"id": "af9f1f56-1aea-43fa-9a65-d13d276f5d49", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.198825+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars moving in both directions.", "snapshot": {"id": "2a315868-07a6-462a-8b9a-be0e5775f3cf", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/2a315868-07a6-462a-8b9a-be0e5775f3cf.png", "timestamp": "2024-02-15T20:37:36.530567+00:00"}}, {"id": "921cf427-c17f-412d-8290-32117d3583cd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:52.808725+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "2a315868-07a6-462a-8b9a-be0e5775f3cf", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/2a315868-07a6-462a-8b9a-be0e5775f3cf.png", "timestamp": "2024-02-15T20:37:36.530567+00:00"}}, {"id": "25b7c1cd-622d-4450-b5e3-333b89ed5173", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:51.922466+00:00", "label": "null", "label_explanation": "The image captures a coastal road with a beach on one side and buildings on the other. The road has two lanes, one for each direction, and there are trees on either side of the road. The weather appears to be cloudy and there are no visible signs of rain.", "snapshot": {"id": "2a315868-07a6-462a-8b9a-be0e5775f3cf", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/2a315868-07a6-462a-8b9a-be0e5775f3cf.png", "timestamp": "2024-02-15T20:37:36.530567+00:00"}}, {"id": "442bee67-4959-4362-ad5a-19b50d375be6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:51.441793+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2a315868-07a6-462a-8b9a-be0e5775f3cf", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/2a315868-07a6-462a-8b9a-be0e5775f3cf.png", "timestamp": "2024-02-15T20:37:36.530567+00:00"}}, {"id": "fdbb2387-da1f-4454-b896-aa640301aea0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.814757+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "2a315868-07a6-462a-8b9a-be0e5775f3cf", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/2a315868-07a6-462a-8b9a-be0e5775f3cf.png", "timestamp": "2024-02-15T20:37:36.530567+00:00"}}, {"id": "28899cad-f81c-4f5b-83e7-d098165ca3ad", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.958341+00:00", "label": "low", "label_explanation": "There is no water on the road surface, but the beach to the left side of the road is covered in water, which is likely the ocean.", "snapshot": {"id": "53677bbd-8628-48d7-81cb-9f59e7120f31", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53677bbd-8628-48d7-81cb-9f59e7120f31.png", "timestamp": "2024-02-15T20:40:09.994993+00:00"}}, {"id": "d91942fe-e35a-4eda-8d24-ce5a6772773d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.357805+00:00", "label": "true", "label_explanation": "While there is no visible rain in the image, the presence of fog or mist indicates moisture in the air.", "snapshot": {"id": "53677bbd-8628-48d7-81cb-9f59e7120f31", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53677bbd-8628-48d7-81cb-9f59e7120f31.png", "timestamp": "2024-02-15T20:40:09.994993+00:00"}}, {"id": "5ffd1365-518b-4960-9ff0-d7360dac6ee2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.675463+00:00", "label": "null", "label_explanation": "The image captures a coastal road with a beach on one side and buildings on the other. It is daytime and the weather appears to be foggy or misty, reducing visibility.", "snapshot": {"id": "53677bbd-8628-48d7-81cb-9f59e7120f31", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53677bbd-8628-48d7-81cb-9f59e7120f31.png", "timestamp": "2024-02-15T20:40:09.994993+00:00"}}, {"id": "d05319b1-0fd5-492e-ab7f-4b8a553c05dc", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.289448+00:00", "label": "partially", "label_explanation": "The road is not completely blocked, but the bus is partially obstructing traffic.", "snapshot": {"id": "53677bbd-8628-48d7-81cb-9f59e7120f31", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53677bbd-8628-48d7-81cb-9f59e7120f31.png", "timestamp": "2024-02-15T20:40:09.994993+00:00"}}, {"id": "c4857b48-f26f-419c-8bd1-de5755c1e597", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.512088+00:00", "label": "moderate", "label_explanation": "The road is partially obstructed by a bus, but traffic is still able to flow.", "snapshot": {"id": "53677bbd-8628-48d7-81cb-9f59e7120f31", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53677bbd-8628-48d7-81cb-9f59e7120f31.png", "timestamp": "2024-02-15T20:40:09.994993+00:00"}}, {"id": "3ed21874-7f22-44a1-8a52-be91d9462ee1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.384524+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "53677bbd-8628-48d7-81cb-9f59e7120f31", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53677bbd-8628-48d7-81cb-9f59e7120f31.png", "timestamp": "2024-02-15T20:40:09.994993+00:00"}}, {"id": "adf82a8a-82fd-4c5f-b7c4-871559ec7982", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.366117+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "e4dcf658-499f-4761-91b4-6283c199aca8", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/e4dcf658-499f-4761-91b4-6283c199aca8.png", "timestamp": "2024-02-15T20:42:38.172722+00:00"}}, {"id": "1cd934f0-d144-432b-82e8-6b8e277a9032", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.815246+00:00", "label": "null", "label_explanation": "The image captures a coastal road scene. To the left, there is a sandy beach with a few people walking. The beach is separated from the road by a low concrete wall. On the right side of the road, there are tall buildings and hotels. The weather appears to be overcast, with dark clouds covering the sky.", "snapshot": {"id": "e4dcf658-499f-4761-91b4-6283c199aca8", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/e4dcf658-499f-4761-91b4-6283c199aca8.png", "timestamp": "2024-02-15T20:42:38.172722+00:00"}}, {"id": "a82c7b4a-25e7-4754-9899-a114d4592e77", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.093418+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "e4dcf658-499f-4761-91b4-6283c199aca8", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/e4dcf658-499f-4761-91b4-6283c199aca8.png", "timestamp": "2024-02-15T20:42:38.172722+00:00"}}, {"id": "751f7d77-855c-4555-a32a-432127e27f8f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.845765+00:00", "label": "easy", "label_explanation": "The road is dry, and traffic is flowing smoothly with no visible congestion or obstacles.", "snapshot": {"id": "e4dcf658-499f-4761-91b4-6283c199aca8", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/e4dcf658-499f-4761-91b4-6283c199aca8.png", "timestamp": "2024-02-15T20:42:38.172722+00:00"}}, {"id": "d4106c95-5c76-472e-b7a8-625c83cce194", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.502644+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e4dcf658-499f-4761-91b4-6283c199aca8", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/e4dcf658-499f-4761-91b4-6283c199aca8.png", "timestamp": "2024-02-15T20:42:38.172722+00:00"}}, {"id": "b34f7751-345a-447b-855e-c503f6592d40", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.058723+00:00", "label": "false", "label_explanation": "While the image shows a wet road surface, there is no active rain visible in the image.", "snapshot": {"id": "e4dcf658-499f-4761-91b4-6283c199aca8", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/e4dcf658-499f-4761-91b4-6283c199aca8.png", "timestamp": "2024-02-15T20:42:38.172722+00:00"}}, {"id": "a794fc45-9a45-4344-a546-8efb2b5918ad", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.803005+00:00", "label": "free", "label_explanation": "There are no obstructions on the road.", "snapshot": {"id": "0e76e760-9019-4c12-b965-02e484405e1f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/0e76e760-9019-4c12-b965-02e484405e1f.png", "timestamp": "2024-02-15T20:45:00.354135+00:00"}}, {"id": "36778ecf-4dd3-4a83-a9c3-599e70323ebf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.655782+00:00", "label": "null", "label_explanation": "The image shows a coastal road with a beach on one side and a city on the other. The road is wide and has multiple lanes, with trees on either side. There are several cars on the road, but traffic appears to be light. The weather is clear, but there is a slight haze in the distance.", "snapshot": {"id": "0e76e760-9019-4c12-b965-02e484405e1f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/0e76e760-9019-4c12-b965-02e484405e1f.png", "timestamp": "2024-02-15T20:45:00.354135+00:00"}}, {"id": "c2f1ad7c-0d25-4855-ab0d-dbc969b2d2c0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.369908+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0e76e760-9019-4c12-b965-02e484405e1f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/0e76e760-9019-4c12-b965-02e484405e1f.png", "timestamp": "2024-02-15T20:45:00.354135+00:00"}}, {"id": "efa7e78b-81f3-440f-952e-0ef9af016cc2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.514631+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no visible congestion.", "snapshot": {"id": "0e76e760-9019-4c12-b965-02e484405e1f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/0e76e760-9019-4c12-b965-02e484405e1f.png", "timestamp": "2024-02-15T20:45:00.354135+00:00"}}, {"id": "c939a6ff-95cb-4027-aa12-26cdaee1bc7e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.216720+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "0e76e760-9019-4c12-b965-02e484405e1f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/0e76e760-9019-4c12-b965-02e484405e1f.png", "timestamp": "2024-02-15T20:45:00.354135+00:00"}}, {"id": "92eca605-507c-4a77-9ea2-124b1e8b62b4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.001814+00:00", "label": "false", "label_explanation": "There is no rain visible in the image.", "snapshot": {"id": "0e76e760-9019-4c12-b965-02e484405e1f", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/0e76e760-9019-4c12-b965-02e484405e1f.png", "timestamp": "2024-02-15T20:45:00.354135+00:00"}}, {"id": "b80f17d9-528e-4263-a52b-58b29d5adeb2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.594021+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely without any hindrances.", "snapshot": {"id": "4506b006-f6f9-4925-a5fa-867726d98db9", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4506b006-f6f9-4925-a5fa-867726d98db9.png", "timestamp": "2024-02-15T20:47:24.916830+00:00"}}, {"id": "33465775-1ef1-4170-8efc-32fb67bfcc22", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.684114+00:00", "label": "true", "label_explanation": "While there is no active rain visible in the image, the road surface appears slightly wet, suggesting recent rainfall.", "snapshot": {"id": "4506b006-f6f9-4925-a5fa-867726d98db9", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4506b006-f6f9-4925-a5fa-867726d98db9.png", "timestamp": "2024-02-15T20:47:24.916830+00:00"}}, {"id": "5b68752d-f648-4968-92f8-82a01cd8495c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.412085+00:00", "label": "null", "label_explanation": "The image captures a coastal road with a beach on one side and a promenade on the other. It is daytime and the weather appears to be hazy or foggy, as visibility is reduced.", "snapshot": {"id": "4506b006-f6f9-4925-a5fa-867726d98db9", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4506b006-f6f9-4925-a5fa-867726d98db9.png", "timestamp": "2024-02-15T20:47:24.916830+00:00"}}, {"id": "9d20bf2f-c805-4a73-ab9a-42d1110044fa", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.213071+00:00", "label": "easy", "label_explanation": "The road is open to traffic, with several vehicles visible, but the traffic flow appears to be moderate, with no major congestion or disruptions observed.", "snapshot": {"id": "4506b006-f6f9-4925-a5fa-867726d98db9", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4506b006-f6f9-4925-a5fa-867726d98db9.png", "timestamp": "2024-02-15T20:47:24.916830+00:00"}}, {"id": "b4b7e89b-8177-4813-a9e9-bb3709e4e80f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.996564+00:00", "label": "low", "label_explanation": "There is no standing water observed on the road surface. The road is dry with isolated, small or shallow water level.", "snapshot": {"id": "4506b006-f6f9-4925-a5fa-867726d98db9", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4506b006-f6f9-4925-a5fa-867726d98db9.png", "timestamp": "2024-02-15T20:47:24.916830+00:00"}}, {"id": "6aac258b-e762-41b0-bed9-f803fdbde06b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.186822+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4506b006-f6f9-4925-a5fa-867726d98db9", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4506b006-f6f9-4925-a5fa-867726d98db9.png", "timestamp": "2024-02-15T20:47:24.916830+00:00"}}, {"id": "bbba2fdf-19ea-4b00-b108-2a99e945ee1e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.419058+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4d26e6b3-d42d-4501-8a34-8607d1d9b6d2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4d26e6b3-d42d-4501-8a34-8607d1d9b6d2.png", "timestamp": "2024-02-15T20:54:42.215014+00:00"}}, {"id": "e8fd3a5e-afa0-481f-9bc0-559811d2cb94", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.017031+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions or traffic disruptions.", "snapshot": {"id": "4d26e6b3-d42d-4501-8a34-8607d1d9b6d2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4d26e6b3-d42d-4501-8a34-8607d1d9b6d2.png", "timestamp": "2024-02-15T20:54:42.215014+00:00"}}, {"id": "26915474-cf57-4d18-8ada-867144986536", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.617058+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, but the wetness suggests a low level of water that has since receded.", "snapshot": {"id": "4d26e6b3-d42d-4501-8a34-8607d1d9b6d2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4d26e6b3-d42d-4501-8a34-8607d1d9b6d2.png", "timestamp": "2024-02-15T20:54:42.215014+00:00"}}, {"id": "a034abea-e07b-406a-8819-68980b3d8b20", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.206496+00:00", "label": "free", "label_explanation": "The road is completely free of any obstructions, allowing for smooth traffic flow.", "snapshot": {"id": "4d26e6b3-d42d-4501-8a34-8607d1d9b6d2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4d26e6b3-d42d-4501-8a34-8607d1d9b6d2.png", "timestamp": "2024-02-15T20:54:42.215014+00:00"}}, {"id": "9421c8a3-4e4d-4848-a8f1-75583773a091", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.605513+00:00", "label": "null", "label_explanation": "The image captures a coastal road with a beach on one side and buildings on the other. It is daytime and the weather appears to be cloudy and misty.", "snapshot": {"id": "4d26e6b3-d42d-4501-8a34-8607d1d9b6d2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4d26e6b3-d42d-4501-8a34-8607d1d9b6d2.png", "timestamp": "2024-02-15T20:54:42.215014+00:00"}}, {"id": "2978bcac-01c9-4e79-b44e-b504873ced22", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.347768+00:00", "label": "true", "label_explanation": "While it is not actively raining in the image, the road surface is wet, indicating recent rainfall.", "snapshot": {"id": "4d26e6b3-d42d-4501-8a34-8607d1d9b6d2", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/4d26e6b3-d42d-4501-8a34-8607d1d9b6d2.png", "timestamp": "2024-02-15T20:54:42.215014+00:00"}}, {"id": "48b2a6a4-5fa1-4628-a2b3-f2ea277d8b05", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:57.122945+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "f2424f21-d097-4d3b-995d-83c3bd1815de", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f2424f21-d097-4d3b-995d-83c3bd1815de.png", "timestamp": "2024-02-15T20:49:45.639067+00:00"}}, {"id": "7ad431be-7d02-4c73-ad06-a7f4710976ce", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:56.864245+00:00", "label": "easy", "label_explanation": "The road is dry and there is moderate traffic, with cars moving smoothly.", "snapshot": {"id": "f2424f21-d097-4d3b-995d-83c3bd1815de", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f2424f21-d097-4d3b-995d-83c3bd1815de.png", "timestamp": "2024-02-15T20:49:45.639067+00:00"}}, {"id": "f50c59c1-2d35-4d16-8ae9-c833708c51e8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:56.055334+00:00", "label": "null", "label_explanation": "The image captures a coastal road with a beach on one side and buildings on the other. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "f2424f21-d097-4d3b-995d-83c3bd1815de", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f2424f21-d097-4d3b-995d-83c3bd1815de.png", "timestamp": "2024-02-15T20:49:45.639067+00:00"}}, {"id": "a91a9538-0363-4957-862b-af97d572d3d6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:56.644630+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "f2424f21-d097-4d3b-995d-83c3bd1815de", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f2424f21-d097-4d3b-995d-83c3bd1815de.png", "timestamp": "2024-02-15T20:49:45.639067+00:00"}}, {"id": "ff3b0f02-bdcc-4a32-9f0c-57d42a5fe3ea", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:56.297298+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "f2424f21-d097-4d3b-995d-83c3bd1815de", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f2424f21-d097-4d3b-995d-83c3bd1815de.png", "timestamp": "2024-02-15T20:49:45.639067+00:00"}}, {"id": "bf6eba94-436e-4772-b6c0-6399bc63c067", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:55.866608+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f2424f21-d097-4d3b-995d-83c3bd1815de", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/f2424f21-d097-4d3b-995d-83c3bd1815de.png", "timestamp": "2024-02-15T20:49:45.639067+00:00"}}, {"id": "d8da63a7-b9a5-4440-af6f-d12d87ebbd6d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:21.320500+00:00", "label": "easy", "label_explanation": "The road is dry and there is moderate traffic, with cars and buses visible.", "snapshot": {"id": "53b5e5cc-6cac-40d8-aea2-76b192d4fd87", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53b5e5cc-6cac-40d8-aea2-76b192d4fd87.png", "timestamp": "2024-02-15T20:52:10.186651+00:00"}}, {"id": "1f4ce320-9d6d-4dda-92f2-bc531182ebe6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:21.130532+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "53b5e5cc-6cac-40d8-aea2-76b192d4fd87", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53b5e5cc-6cac-40d8-aea2-76b192d4fd87.png", "timestamp": "2024-02-15T20:52:10.186651+00:00"}}, {"id": "48dc2e86-6cc7-446b-a116-66853831b268", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:21.573702+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible.", "snapshot": {"id": "53b5e5cc-6cac-40d8-aea2-76b192d4fd87", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53b5e5cc-6cac-40d8-aea2-76b192d4fd87.png", "timestamp": "2024-02-15T20:52:10.186651+00:00"}}, {"id": "f9ca05aa-884f-4b89-9354-dd2aff9a056e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:20.848354+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "53b5e5cc-6cac-40d8-aea2-76b192d4fd87", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53b5e5cc-6cac-40d8-aea2-76b192d4fd87.png", "timestamp": "2024-02-15T20:52:10.186651+00:00"}}, {"id": "8b141ab4-0bc3-4fa9-9ff3-9e4d3022bb24", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:20.332630+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "53b5e5cc-6cac-40d8-aea2-76b192d4fd87", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53b5e5cc-6cac-40d8-aea2-76b192d4fd87.png", "timestamp": "2024-02-15T20:52:10.186651+00:00"}}, {"id": "6a242bb6-8d24-48e9-af4c-66fd2ae58a4d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:20.568953+00:00", "label": "null", "label_explanation": "The image captures a coastal road with a beach on one side and buildings on the other. It is daytime and the weather appears to be cloudy or foggy.", "snapshot": {"id": "53b5e5cc-6cac-40d8-aea2-76b192d4fd87", "camera_id": "000033", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000033/53b5e5cc-6cac-40d8-aea2-76b192d4fd87.png", "timestamp": "2024-02-15T20:52:10.186651+00:00"}}]}, {"id": "001160", "name": "R. DOMINGOS LOPES X R. MARIA LOPES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.124/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87984191, "longitude": -43.3417642, "objects": ["image_corrupted", "image_description", "traffic", "water_level", "rain", "road_blockade"], "identifications": [{"id": "9a3508ea-203e-4c99-a3b9-f91201cf6066", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:18.790412+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present.", "snapshot": {"id": "6e85b684-404c-40e4-9942-c7adce8954e2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6e85b684-404c-40e4-9942-c7adce8954e2.png", "timestamp": "2024-02-15T20:30:04.101313+00:00"}}, {"id": "5432604b-7dd7-43ff-b0b0-baf3946c9cec", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:18.483643+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, with some small puddles visible.", "snapshot": {"id": "6e85b684-404c-40e4-9942-c7adce8954e2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6e85b684-404c-40e4-9942-c7adce8954e2.png", "timestamp": "2024-02-15T20:30:04.101313+00:00"}}, {"id": "f4e6d61c-13ad-4e22-ac63-7a5efcad7f08", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:18.234773+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy and overcast. The road surface is wet from recent rain, with some small puddles visible. There are a few parked cars on the side of the road and trees lining the street.", "snapshot": {"id": "6e85b684-404c-40e4-9942-c7adce8954e2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6e85b684-404c-40e4-9942-c7adce8954e2.png", "timestamp": "2024-02-15T20:30:04.101313+00:00"}}, {"id": "cef64ea6-f999-4bf5-96d6-453023111573", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:19.569402+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "6e85b684-404c-40e4-9942-c7adce8954e2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6e85b684-404c-40e4-9942-c7adce8954e2.png", "timestamp": "2024-02-15T20:30:04.101313+00:00"}}, {"id": "c626d5f8-175f-4610-a4b2-ef9596747d00", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:19.243467+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving slowly due to the wet road conditions.", "snapshot": {"id": "6e85b684-404c-40e4-9942-c7adce8954e2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6e85b684-404c-40e4-9942-c7adce8954e2.png", "timestamp": "2024-02-15T20:30:04.101313+00:00"}}, {"id": "1098a6b6-eb46-4a30-8c55-f62a11086972", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:17.903810+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6e85b684-404c-40e4-9942-c7adce8954e2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6e85b684-404c-40e4-9942-c7adce8954e2.png", "timestamp": "2024-02-15T20:30:04.101313+00:00"}}, {"id": "13afc7c2-f699-41dc-9aab-912e74d47780", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:43.893076+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "a8f09dd9-b6b6-4bb8-ab95-2067939fd690", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a8f09dd9-b6b6-4bb8-ab95-2067939fd690.png", "timestamp": "2024-02-15T20:32:31.330409+00:00"}}, {"id": "6b2c1a34-db81-4836-888e-554b49ebaa04", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:44.631556+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "a8f09dd9-b6b6-4bb8-ab95-2067939fd690", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a8f09dd9-b6b6-4bb8-ab95-2067939fd690.png", "timestamp": "2024-02-15T20:32:31.330409+00:00"}}, {"id": "e9bfd6b8-877a-4d36-aa5f-5ce6999fda96", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:43.048105+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "a8f09dd9-b6b6-4bb8-ab95-2067939fd690", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a8f09dd9-b6b6-4bb8-ab95-2067939fd690.png", "timestamp": "2024-02-15T20:32:31.330409+00:00"}}, {"id": "202aa70a-80be-4f6c-a57f-d4c300fba848", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:42.183549+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "a8f09dd9-b6b6-4bb8-ab95-2067939fd690", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a8f09dd9-b6b6-4bb8-ab95-2067939fd690.png", "timestamp": "2024-02-15T20:32:31.330409+00:00"}}, {"id": "f623bf3a-bbf6-442d-ac26-b85a6e833380", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:41.902895+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with various vehicles, including buses and cars. The weather appears overcast, and there are trees on either side of the road.", "snapshot": {"id": "a8f09dd9-b6b6-4bb8-ab95-2067939fd690", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a8f09dd9-b6b6-4bb8-ab95-2067939fd690.png", "timestamp": "2024-02-15T20:32:31.330409+00:00"}}, {"id": "0a4e584c-5a1c-49b7-a7a7-bf72d7ca6891", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:41.423722+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a8f09dd9-b6b6-4bb8-ab95-2067939fd690", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a8f09dd9-b6b6-4bb8-ab95-2067939fd690.png", "timestamp": "2024-02-15T20:32:31.330409+00:00"}}, {"id": "35ac1ca2-6e59-480a-8523-d6e39acda63f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.671470+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "b0f62c11-fcf0-4b2d-b647-1c2adce71a4f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/b0f62c11-fcf0-4b2d-b647-1c2adce71a4f.png", "timestamp": "2024-02-15T20:49:49.600373+00:00"}}, {"id": "5dd5c581-7aaa-4724-952a-e3eb99b1449b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:01.666042+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b0f62c11-fcf0-4b2d-b647-1c2adce71a4f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/b0f62c11-fcf0-4b2d-b647-1c2adce71a4f.png", "timestamp": "2024-02-15T20:49:49.600373+00:00"}}, {"id": "c4201668-df9e-4c82-9bd0-6c1b98de0b3f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.986690+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "b0f62c11-fcf0-4b2d-b647-1c2adce71a4f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/b0f62c11-fcf0-4b2d-b647-1c2adce71a4f.png", "timestamp": "2024-02-15T20:49:49.600373+00:00"}}, {"id": "c0f20c50-8801-4f95-9e9e-8b7c88f4c5d0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:01.898345+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy and rainy. There are several vehicles on the road, including cars, motorcycles, and a bus. The road is wet and there are some puddles visible.", "snapshot": {"id": "b0f62c11-fcf0-4b2d-b647-1c2adce71a4f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/b0f62c11-fcf0-4b2d-b647-1c2adce71a4f.png", "timestamp": "2024-02-15T20:49:49.600373+00:00"}}, {"id": "785a90b6-9f16-49d4-bc5b-1575b7134c63", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.365762+00:00", "label": "low", "label_explanation": "The water level on the road is low, with some puddles but no significant accumulation of water.", "snapshot": {"id": "b0f62c11-fcf0-4b2d-b647-1c2adce71a4f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/b0f62c11-fcf0-4b2d-b647-1c2adce71a4f.png", "timestamp": "2024-02-15T20:49:49.600373+00:00"}}, {"id": "84f93166-c68e-4cf1-9fea-7da39c458bf2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.100348+00:00", "label": "true", "label_explanation": "The road surface is wet and there are some puddles visible, indicating that it has been raining.", "snapshot": {"id": "b0f62c11-fcf0-4b2d-b647-1c2adce71a4f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/b0f62c11-fcf0-4b2d-b647-1c2adce71a4f.png", "timestamp": "2024-02-15T20:49:49.600373+00:00"}}, {"id": "aac0fff0-cd01-4c76-9de6-39ca9e9264c7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.274775+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9.png", "timestamp": "2024-02-15T20:37:37.946686+00:00"}}, {"id": "0b7c8a03-4c62-4553-8513-abea58f7e8c2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.210209+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9.png", "timestamp": "2024-02-15T20:37:37.946686+00:00"}}, {"id": "cc0e4a0d-76ae-4afa-8263-d963b928f342", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.598977+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9.png", "timestamp": "2024-02-15T20:37:37.946686+00:00"}}, {"id": "9fc94a56-c2e3-479f-b6b6-ddb6d908048d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:52.895631+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears cloudy. There are several parked cars on the side of the road and a few trees.", "snapshot": {"id": "d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9.png", "timestamp": "2024-02-15T20:37:37.946686+00:00"}}, {"id": "59e4bed5-b7e4-43e1-b43e-a38016e33374", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:52.440172+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9.png", "timestamp": "2024-02-15T20:37:37.946686+00:00"}}, {"id": "f177836c-4c66-417b-9b38-611374eac8de", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.859770+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/d56f74bf-e4bf-48fc-a2f6-6b5d5f001cb9.png", "timestamp": "2024-02-15T20:37:37.946686+00:00"}}, {"id": "7fbf61b5-a0fd-4559-baf5-869a3ee006f0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.725273+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars, buses, and motorbikes all moving at a steady pace.", "snapshot": {"id": "395f5c5d-1234-423b-a997-0764c78bb27b", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/395f5c5d-1234-423b-a997-0764c78bb27b.png", "timestamp": "2024-02-15T20:35:05.598571+00:00"}}, {"id": "a59bb823-0e18-4730-9942-cea65ca2133f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.232211+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "395f5c5d-1234-423b-a997-0764c78bb27b", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/395f5c5d-1234-423b-a997-0764c78bb27b.png", "timestamp": "2024-02-15T20:35:05.598571+00:00"}}, {"id": "5808eced-7fa5-42b0-876e-27de940022dd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:19.670378+00:00", "label": "true", "label_explanation": "The road is wet and there is some rain falling.", "snapshot": {"id": "395f5c5d-1234-423b-a997-0764c78bb27b", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/395f5c5d-1234-423b-a997-0764c78bb27b.png", "timestamp": "2024-02-15T20:35:05.598571+00:00"}}, {"id": "cfadc160-56b7-4899-a0ab-32919ba1767e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:19.023523+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a slight bend to the right. There are cars, buses, and motorbikes on the road, and buildings and trees on either side. The weather is cloudy and there is some rain.", "snapshot": {"id": "395f5c5d-1234-423b-a997-0764c78bb27b", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/395f5c5d-1234-423b-a997-0764c78bb27b.png", "timestamp": "2024-02-15T20:35:05.598571+00:00"}}, {"id": "a853e041-8576-4a7f-9d53-64938f130960", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.492553+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "395f5c5d-1234-423b-a997-0764c78bb27b", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/395f5c5d-1234-423b-a997-0764c78bb27b.png", "timestamp": "2024-02-15T20:35:05.598571+00:00"}}, {"id": "5e0c9088-d790-44ec-a1d7-ce6760bc333e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.096238+00:00", "label": "low", "label_explanation": "There is some water on the road, but it is not enough to cause any significant problems for traffic.", "snapshot": {"id": "395f5c5d-1234-423b-a997-0764c78bb27b", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/395f5c5d-1234-423b-a997-0764c78bb27b.png", "timestamp": "2024-02-15T20:35:05.598571+00:00"}}, {"id": "c4c9668a-7dec-4967-afab-63ca02c609a0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.988174+00:00", "label": "low", "label_explanation": "There is no significant water on the road surface. The road is wet from recent rain, but there are no puddles or standing water.", "snapshot": {"id": "a87a4aa1-c275-41c4-951c-76b7c26b13a2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a87a4aa1-c275-41c4-951c-76b7c26b13a2.png", "timestamp": "2024-02-15T20:42:36.536310+00:00"}}, {"id": "6aa6a37b-0bf8-4809-8f2e-20e1d038687c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.447054+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy and overcast. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are various vehicles on the road, including cars, buses, and trucks. The road is lined with buildings and trees, and there are a few pedestrians walking on the sidewalks.", "snapshot": {"id": "a87a4aa1-c275-41c4-951c-76b7c26b13a2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a87a4aa1-c275-41c4-951c-76b7c26b13a2.png", "timestamp": "2024-02-15T20:42:36.536310+00:00"}}, {"id": "4c358758-c276-42e0-983f-62b1219e6d1f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.534504+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "a87a4aa1-c275-41c4-951c-76b7c26b13a2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a87a4aa1-c275-41c4-951c-76b7c26b13a2.png", "timestamp": "2024-02-15T20:42:36.536310+00:00"}}, {"id": "9bad8143-0062-4b8c-8a57-f615f0785c60", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.292857+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or obstructions.", "snapshot": {"id": "a87a4aa1-c275-41c4-951c-76b7c26b13a2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a87a4aa1-c275-41c4-951c-76b7c26b13a2.png", "timestamp": "2024-02-15T20:42:36.536310+00:00"}}, {"id": "34568e41-a0fb-478b-a915-d88e0fa3b5fd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.737323+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "a87a4aa1-c275-41c4-951c-76b7c26b13a2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a87a4aa1-c275-41c4-951c-76b7c26b13a2.png", "timestamp": "2024-02-15T20:42:36.536310+00:00"}}, {"id": "11cb8e7f-4296-4140-a713-3132bd13b0eb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.204491+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a87a4aa1-c275-41c4-951c-76b7c26b13a2", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/a87a4aa1-c275-41c4-951c-76b7c26b13a2.png", "timestamp": "2024-02-15T20:42:36.536310+00:00"}}, {"id": "2fe9b203-011a-41cf-936b-c8500e8ef55e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:19.334182+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6d007989-5062-4b27-9a3b-316bfd19ded5", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6d007989-5062-4b27-9a3b-316bfd19ded5.png", "timestamp": "2024-02-15T20:40:09.167150+00:00"}}, {"id": "4f70e572-027b-4f9f-85ef-32a6475845f0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.351811+00:00", "label": "moderate", "label_explanation": "Traffic is moving slowly due to the wet conditions, but there are no major disruptions.", "snapshot": {"id": "6d007989-5062-4b27-9a3b-316bfd19ded5", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6d007989-5062-4b27-9a3b-316bfd19ded5.png", "timestamp": "2024-02-15T20:40:09.167150+00:00"}}, {"id": "53c7494c-bf38-425b-bb5b-87b46a23e81a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.108881+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "6d007989-5062-4b27-9a3b-316bfd19ded5", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6d007989-5062-4b27-9a3b-316bfd19ded5.png", "timestamp": "2024-02-15T20:40:09.167150+00:00"}}, {"id": "43838081-f94a-4cdc-9b39-e316d10c20fb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:20.177304+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with cars, buses, and motorbikes. The weather appears cloudy and wet, with water on the road surface.", "snapshot": {"id": "6d007989-5062-4b27-9a3b-316bfd19ded5", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6d007989-5062-4b27-9a3b-316bfd19ded5.png", "timestamp": "2024-02-15T20:40:09.167150+00:00"}}, {"id": "02b7ff42-5a50-4e98-972d-a2c9a1d4938f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.800015+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "6d007989-5062-4b27-9a3b-316bfd19ded5", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6d007989-5062-4b27-9a3b-316bfd19ded5.png", "timestamp": "2024-02-15T20:40:09.167150+00:00"}}, {"id": "2a615419-d025-4d8c-8e79-47e9a90448dc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.270518+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "6d007989-5062-4b27-9a3b-316bfd19ded5", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/6d007989-5062-4b27-9a3b-316bfd19ded5.png", "timestamp": "2024-02-15T20:40:09.167150+00:00"}}, {"id": "67e52695-d6c7-4115-8302-ac44e79d3bc8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.109826+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "528ce795-a4fd-4a7a-b594-d124b55fdb72", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/528ce795-a4fd-4a7a-b594-d124b55fdb72.png", "timestamp": "2024-02-15T20:47:25.288509+00:00"}}, {"id": "3263a36a-d903-4505-b177-1484ad867b9a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.768950+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only some puddles present.", "snapshot": {"id": "528ce795-a4fd-4a7a-b594-d124b55fdb72", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/528ce795-a4fd-4a7a-b594-d124b55fdb72.png", "timestamp": "2024-02-15T20:47:25.288509+00:00"}}, {"id": "f4d5b18b-5136-4726-800b-b8b145db4bea", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.537122+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, and there are some puddles on the road.", "snapshot": {"id": "528ce795-a4fd-4a7a-b594-d124b55fdb72", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/528ce795-a4fd-4a7a-b594-d124b55fdb72.png", "timestamp": "2024-02-15T20:47:25.288509+00:00"}}, {"id": "15b78a72-d30b-4d18-bdfb-d643ecc82771", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.124092+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a slight curve to the right. There are several vehicles on the road, including cars, buses, and trucks. The road surface is wet from recent rain, and there are some puddles on the road. There are buildings and trees on either side of the road.", "snapshot": {"id": "528ce795-a4fd-4a7a-b594-d124b55fdb72", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/528ce795-a4fd-4a7a-b594-d124b55fdb72.png", "timestamp": "2024-02-15T20:47:25.288509+00:00"}}, {"id": "e639a918-3dee-40ed-b2e7-5a8a50e1690e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.432920+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "528ce795-a4fd-4a7a-b594-d124b55fdb72", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/528ce795-a4fd-4a7a-b594-d124b55fdb72.png", "timestamp": "2024-02-15T20:47:25.288509+00:00"}}, {"id": "efd8139b-f317-4b95-9eaa-df1e9e2a0037", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.577122+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "528ce795-a4fd-4a7a-b594-d124b55fdb72", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/528ce795-a4fd-4a7a-b594-d124b55fdb72.png", "timestamp": "2024-02-15T20:47:25.288509+00:00"}}, {"id": "263288e9-dac1-4f58-91d3-25eb4c0650dc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.923220+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a bus stop on the left side. There are several vehicles on the road, including buses and cars. The road is wet from recent rain, and there are some puddles on the road surface. The buildings on either side of the road are mostly residential, with some commercial establishments on the ground floor. There are trees and other vegetation on either side of the road.", "snapshot": {"id": "179474d2-a08b-43f6-85b9-68be64e6299f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/179474d2-a08b-43f6-85b9-68be64e6299f.png", "timestamp": "2024-02-15T20:45:00.552585+00:00"}}, {"id": "87befa1f-a4d6-4969-98ef-60952ec4d7e1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.616714+00:00", "label": "low", "label_explanation": "The water level is low, with some puddles on the road surface.", "snapshot": {"id": "179474d2-a08b-43f6-85b9-68be64e6299f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/179474d2-a08b-43f6-85b9-68be64e6299f.png", "timestamp": "2024-02-15T20:45:00.552585+00:00"}}, {"id": "bb1fe2b6-47ed-4301-89a1-e4e691364bc0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.970444+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with some vehicles on the road.", "snapshot": {"id": "179474d2-a08b-43f6-85b9-68be64e6299f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/179474d2-a08b-43f6-85b9-68be64e6299f.png", "timestamp": "2024-02-15T20:45:00.552585+00:00"}}, {"id": "750a6b2d-d73a-45c1-8344-4c9f5168eab0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.632705+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "179474d2-a08b-43f6-85b9-68be64e6299f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/179474d2-a08b-43f6-85b9-68be64e6299f.png", "timestamp": "2024-02-15T20:45:00.552585+00:00"}}, {"id": "7f6eea4c-0a9b-4fa9-8fce-f63ecf148358", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.316781+00:00", "label": "free", "label_explanation": "There are no road blockades, and the road is clear for traffic.", "snapshot": {"id": "179474d2-a08b-43f6-85b9-68be64e6299f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/179474d2-a08b-43f6-85b9-68be64e6299f.png", "timestamp": "2024-02-15T20:45:00.552585+00:00"}}, {"id": "5b224bfb-7525-425b-8650-2a88ad71b754", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.349495+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some puddles on the road surface.", "snapshot": {"id": "179474d2-a08b-43f6-85b9-68be64e6299f", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/179474d2-a08b-43f6-85b9-68be64e6299f.png", "timestamp": "2024-02-15T20:45:00.552585+00:00"}}, {"id": "2050915a-bba1-4ac2-92eb-2ff1ba760787", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.537707+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is a four-lane road with a slight curve to the right. There are several vehicles on the road, including buses, cars, and motorcycles. The road surface is wet from recent rain, but there are no significant puddles or standing water. The sidewalks on either side of the road are in good condition, with no visible cracks or potholes. There are a few trees and shrubs lining the sidewalks, and the buildings in the background are mostly residential.", "snapshot": {"id": "22dccddf-4d3b-4bcf-8f1c-4673ff7399da", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/22dccddf-4d3b-4bcf-8f1c-4673ff7399da.png", "timestamp": "2024-02-15T20:52:12.912601+00:00"}}, {"id": "018959f4-1c90-4295-9c88-8e5f0cb7c921", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.969050+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "22dccddf-4d3b-4bcf-8f1c-4673ff7399da", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/22dccddf-4d3b-4bcf-8f1c-4673ff7399da.png", "timestamp": "2024-02-15T20:52:12.912601+00:00"}}, {"id": "40ea044e-43f1-464f-9370-953cdbbd06b4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.316331+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "22dccddf-4d3b-4bcf-8f1c-4673ff7399da", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/22dccddf-4d3b-4bcf-8f1c-4673ff7399da.png", "timestamp": "2024-02-15T20:52:12.912601+00:00"}}, {"id": "33876b82-2490-48a2-94cb-84e397efc6c6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.780614+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "22dccddf-4d3b-4bcf-8f1c-4673ff7399da", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/22dccddf-4d3b-4bcf-8f1c-4673ff7399da.png", "timestamp": "2024-02-15T20:52:12.912601+00:00"}}, {"id": "71856e33-dd9e-411b-9441-e5a9a593dca8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.102940+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "22dccddf-4d3b-4bcf-8f1c-4673ff7399da", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/22dccddf-4d3b-4bcf-8f1c-4673ff7399da.png", "timestamp": "2024-02-15T20:52:12.912601+00:00"}}, {"id": "4b0cfd77-78a8-49a1-bef5-1b0fd1316244", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.293295+00:00", "label": "low", "label_explanation": "There is no standing water or puddles on the road surface.", "snapshot": {"id": "22dccddf-4d3b-4bcf-8f1c-4673ff7399da", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/22dccddf-4d3b-4bcf-8f1c-4673ff7399da.png", "timestamp": "2024-02-15T20:52:12.912601+00:00"}}, {"id": "5fa18ea6-1f5b-4183-bccf-2b306bf883d6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:52.636797+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or congestion.", "snapshot": {"id": "9e705163-ddb2-4bf1-84df-363abefa7ab4", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/9e705163-ddb2-4bf1-84df-363abefa7ab4.png", "timestamp": "2024-02-15T20:54:40.868806+00:00"}}, {"id": "a7b47c9c-a16b-48fe-8f8f-953d5f41573e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:52.347033+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "9e705163-ddb2-4bf1-84df-363abefa7ab4", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/9e705163-ddb2-4bf1-84df-363abefa7ab4.png", "timestamp": "2024-02-15T20:54:40.868806+00:00"}}, {"id": "263e9b3d-4dc5-435f-8ec3-896e950ee2d8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:52.132204+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "9e705163-ddb2-4bf1-84df-363abefa7ab4", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/9e705163-ddb2-4bf1-84df-363abefa7ab4.png", "timestamp": "2024-02-15T20:54:40.868806+00:00"}}, {"id": "55767a05-c49d-4d77-b3e2-8dde5bd7d064", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:51.923039+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, a bus, and a motorcycle. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "9e705163-ddb2-4bf1-84df-363abefa7ab4", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/9e705163-ddb2-4bf1-84df-363abefa7ab4.png", "timestamp": "2024-02-15T20:54:40.868806+00:00"}}, {"id": "4a86f80b-5ab3-4937-ba12-617b79d0fe30", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:51.673578+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9e705163-ddb2-4bf1-84df-363abefa7ab4", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/9e705163-ddb2-4bf1-84df-363abefa7ab4.png", "timestamp": "2024-02-15T20:54:40.868806+00:00"}}, {"id": "9f73bacb-1b76-43a6-a45e-6b38879f8fa4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.231980+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "9e705163-ddb2-4bf1-84df-363abefa7ab4", "camera_id": "001160", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001160/9e705163-ddb2-4bf1-84df-363abefa7ab4.png", "timestamp": "2024-02-15T20:54:40.868806+00:00"}}]}, {"id": "000362", "name": "R. TEIXEIRA SOARES X R. PAR\u00c1 X R. PARA\u00cdBA", "rtsp_url": "rtsp://10.52.36.137/362-VIDEO", "update_interval": 120, "latitude": -22.91119, "longitude": -43.216786, "objects": ["image_corrupted", "traffic", "image_description", "rain", "road_blockade", "water_level"], "identifications": [{"id": "55746118-2c36-4787-8da8-95b8c062a666", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:13.813543+00:00", "label": "free", "label_explanation": "There are no obstructions on the road.", "snapshot": {"id": "1d35ff96-6805-4f5f-b45d-92dd66d54230", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/1d35ff96-6805-4f5f-b45d-92dd66d54230.png", "timestamp": "2024-02-15T20:29:57.733720+00:00"}}, {"id": "1fe1a8d3-38e7-4ce8-b682-cfa7e98aa221", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:13.320279+00:00", "label": "easy", "label_explanation": "There are several vehicles on the road, but traffic is flowing smoothly.", "snapshot": {"id": "1d35ff96-6805-4f5f-b45d-92dd66d54230", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/1d35ff96-6805-4f5f-b45d-92dd66d54230.png", "timestamp": "2024-02-15T20:29:57.733720+00:00"}}, {"id": "34a7b639-c4f0-472a-ad92-704ba8abe414", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.704908+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "1d35ff96-6805-4f5f-b45d-92dd66d54230", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/1d35ff96-6805-4f5f-b45d-92dd66d54230.png", "timestamp": "2024-02-15T20:29:57.733720+00:00"}}, {"id": "a6b06f7a-0604-4a93-940c-bb74562779ce", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.064314+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "1d35ff96-6805-4f5f-b45d-92dd66d54230", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/1d35ff96-6805-4f5f-b45d-92dd66d54230.png", "timestamp": "2024-02-15T20:29:57.733720+00:00"}}, {"id": "4eec5396-3594-4dcd-8c54-d0f60c423fa7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:11.511589+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars and trucks. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "1d35ff96-6805-4f5f-b45d-92dd66d54230", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/1d35ff96-6805-4f5f-b45d-92dd66d54230.png", "timestamp": "2024-02-15T20:29:57.733720+00:00"}}, {"id": "609522c7-df38-451e-baab-1d51f1e269d8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:10.916284+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1d35ff96-6805-4f5f-b45d-92dd66d54230", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/1d35ff96-6805-4f5f-b45d-92dd66d54230.png", "timestamp": "2024-02-15T20:29:57.733720+00:00"}}, {"id": "8cab8b59-3872-4947-a0d0-e657ad49f0a8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:41.774138+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "cda497b3-e31e-4f82-9333-639bd82fd49b", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/cda497b3-e31e-4f82-9333-639bd82fd49b.png", "timestamp": "2024-02-15T20:32:24.888098+00:00"}}, {"id": "b3a42e0d-f94c-4c72-9399-70d15bc7e432", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:41.273673+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "cda497b3-e31e-4f82-9333-639bd82fd49b", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/cda497b3-e31e-4f82-9333-639bd82fd49b.png", "timestamp": "2024-02-15T20:32:24.888098+00:00"}}, {"id": "0c7e19c1-923e-4092-952f-0dad3b185b93", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:40.614185+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "cda497b3-e31e-4f82-9333-639bd82fd49b", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/cda497b3-e31e-4f82-9333-639bd82fd49b.png", "timestamp": "2024-02-15T20:32:24.888098+00:00"}}, {"id": "8fa67b7d-3463-4b08-801e-28e610581d80", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:40.053392+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "cda497b3-e31e-4f82-9333-639bd82fd49b", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/cda497b3-e31e-4f82-9333-639bd82fd49b.png", "timestamp": "2024-02-15T20:32:24.888098+00:00"}}, {"id": "edfe5935-4eb3-41d5-8432-d8caff091c55", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:39.672800+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, including a yellow taxi, a white van, and a silver car. Trees are present on the left side of the road, and buildings and a gas station are visible in the background.", "snapshot": {"id": "cda497b3-e31e-4f82-9333-639bd82fd49b", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/cda497b3-e31e-4f82-9333-639bd82fd49b.png", "timestamp": "2024-02-15T20:32:24.888098+00:00"}}, {"id": "41001958-ef51-46b4-a78c-b36d041779c7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:39.198030+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cda497b3-e31e-4f82-9333-639bd82fd49b", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/cda497b3-e31e-4f82-9333-639bd82fd49b.png", "timestamp": "2024-02-15T20:32:24.888098+00:00"}}, {"id": "132ac45e-4177-446d-a8c3-17e7752a273a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.415078+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with a few cars driving through the intersection.", "snapshot": {"id": "67948ad9-0629-4d01-adf8-35cd7e812ad6", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/67948ad9-0629-4d01-adf8-35cd7e812ad6.png", "timestamp": "2024-02-15T20:49:40.923383+00:00"}}, {"id": "541a4e8b-102b-43bc-a8fa-abb0f2cce59c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.813446+00:00", "label": "partially", "label_explanation": "There is a large pothole in the middle of the intersection, but it is not completely blocking traffic.", "snapshot": {"id": "67948ad9-0629-4d01-adf8-35cd7e812ad6", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/67948ad9-0629-4d01-adf8-35cd7e812ad6.png", "timestamp": "2024-02-15T20:49:40.923383+00:00"}}, {"id": "29b9018d-bd7c-4c56-92c0-3b97a85d8d20", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.020208+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles of water on the ground.", "snapshot": {"id": "67948ad9-0629-4d01-adf8-35cd7e812ad6", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/67948ad9-0629-4d01-adf8-35cd7e812ad6.png", "timestamp": "2024-02-15T20:49:40.923383+00:00"}}, {"id": "7d5fa358-7824-4919-9eb9-621420f397ef", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:51.709804+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are puddles of water on the ground.", "snapshot": {"id": "67948ad9-0629-4d01-adf8-35cd7e812ad6", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/67948ad9-0629-4d01-adf8-35cd7e812ad6.png", "timestamp": "2024-02-15T20:49:40.923383+00:00"}}, {"id": "8977900c-35ce-48a1-bd90-0db8ff32adad", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:51.424834+00:00", "label": "null", "label_explanation": "The image shows a four-way urban road intersection. There are a few trees on the left side of the road, and buildings and a gas station on the right. The road is wet from recent rain, and there is a large pothole in the middle of the intersection.", "snapshot": {"id": "67948ad9-0629-4d01-adf8-35cd7e812ad6", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/67948ad9-0629-4d01-adf8-35cd7e812ad6.png", "timestamp": "2024-02-15T20:49:40.923383+00:00"}}, {"id": "886743f4-28de-495f-ab81-e14703ddeace", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:51.216330+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "67948ad9-0629-4d01-adf8-35cd7e812ad6", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/67948ad9-0629-4d01-adf8-35cd7e812ad6.png", "timestamp": "2024-02-15T20:49:40.923383+00:00"}}, {"id": "d1a792fd-b572-4602-a957-ed28f2927e74", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:28.532159+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they do not pose a significant hazard to traffic.", "snapshot": {"id": "80193965-cfc7-465a-a7f0-bed8ba1fe632", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/80193965-cfc7-465a-a7f0-bed8ba1fe632.png", "timestamp": "2024-02-15T20:47:17.021306+00:00"}}, {"id": "bbebac91-7fb2-4c21-a3b4-e80ec37de2cc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:28.355236+00:00", "label": "true", "label_explanation": "The road is wet, and there are some puddles of water on the ground. This indicates that it has been raining recently.", "snapshot": {"id": "80193965-cfc7-465a-a7f0-bed8ba1fe632", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/80193965-cfc7-465a-a7f0-bed8ba1fe632.png", "timestamp": "2024-02-15T20:47:17.021306+00:00"}}, {"id": "31107fa8-5d28-453d-8497-619237b1549e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:27.936333+00:00", "label": "null", "label_explanation": "The image shows a four-way intersection in an urban area. There are several cars on the road, and the traffic is moderate. The road surface is wet, and there are some puddles of water on the ground.", "snapshot": {"id": "80193965-cfc7-465a-a7f0-bed8ba1fe632", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/80193965-cfc7-465a-a7f0-bed8ba1fe632.png", "timestamp": "2024-02-15T20:47:17.021306+00:00"}}, {"id": "e21302ea-362e-4bc3-b4d3-20fa57285b7f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:29.097532+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear, and traffic is able to flow freely.", "snapshot": {"id": "80193965-cfc7-465a-a7f0-bed8ba1fe632", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/80193965-cfc7-465a-a7f0-bed8ba1fe632.png", "timestamp": "2024-02-15T20:47:17.021306+00:00"}}, {"id": "2b9df0b6-7385-4e70-9b4e-48d87b77169b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:28.744819+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several cars on the road, but they are able to move freely.", "snapshot": {"id": "80193965-cfc7-465a-a7f0-bed8ba1fe632", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/80193965-cfc7-465a-a7f0-bed8ba1fe632.png", "timestamp": "2024-02-15T20:47:17.021306+00:00"}}, {"id": "32804502-61b7-4ada-8e4c-6ece1ee5ef5a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:27.631376+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. The colors are vivid, and the details are sharp.", "snapshot": {"id": "80193965-cfc7-465a-a7f0-bed8ba1fe632", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/80193965-cfc7-465a-a7f0-bed8ba1fe632.png", "timestamp": "2024-02-15T20:47:17.021306+00:00"}}, {"id": "9f45edf9-fcdd-408c-9727-a90b21a19bd3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.131859+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "9f0897ca-0a93-42c9-90b3-54534e009750", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/9f0897ca-0a93-42c9-90b3-54534e009750.png", "timestamp": "2024-02-15T20:35:03.240405+00:00"}}, {"id": "db264fa8-4f66-45d9-ad5c-a2fc8ec6c8fa", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.645488+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "9f0897ca-0a93-42c9-90b3-54534e009750", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/9f0897ca-0a93-42c9-90b3-54534e009750.png", "timestamp": "2024-02-15T20:35:03.240405+00:00"}}, {"id": "728861e9-386e-455d-a641-bf7cf51860ae", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.134447+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "9f0897ca-0a93-42c9-90b3-54534e009750", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/9f0897ca-0a93-42c9-90b3-54534e009750.png", "timestamp": "2024-02-15T20:35:03.240405+00:00"}}, {"id": "fa99e872-51ca-4a8f-bd95-98d187e64f59", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:15.716520+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "9f0897ca-0a93-42c9-90b3-54534e009750", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/9f0897ca-0a93-42c9-90b3-54534e009750.png", "timestamp": "2024-02-15T20:35:03.240405+00:00"}}, {"id": "a1e0432f-2383-45e5-bf2b-eee5916435d9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:15.168419+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and trucks. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "9f0897ca-0a93-42c9-90b3-54534e009750", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/9f0897ca-0a93-42c9-90b3-54534e009750.png", "timestamp": "2024-02-15T20:35:03.240405+00:00"}}, {"id": "e5b1d4d4-a0b2-45d5-9cef-a73222800617", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:14.563953+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9f0897ca-0a93-42c9-90b3-54534e009750", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/9f0897ca-0a93-42c9-90b3-54534e009750.png", "timestamp": "2024-02-15T20:35:03.240405+00:00"}}, {"id": "279ebc34-23af-4e55-b5b5-eecb41a81673", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:43.618832+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions. The road is clear and passable in all directions.", "snapshot": {"id": "57b3118c-32a7-4892-8186-d364cacdd888", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/57b3118c-32a7-4892-8186-d364cacdd888.png", "timestamp": "2024-02-15T20:37:29.004550+00:00"}}, {"id": "fede47a2-fbea-4edc-ba83-2428cc7392e9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:42.183790+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they are not causing any problems for vehicles.", "snapshot": {"id": "57b3118c-32a7-4892-8186-d364cacdd888", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/57b3118c-32a7-4892-8186-d364cacdd888.png", "timestamp": "2024-02-15T20:37:29.004550+00:00"}}, {"id": "dd5df3a1-c46d-474e-bf27-cd71a5b18c33", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:40.861844+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the ground. The rain is not heavy, and it is not causing any significant traffic problems.", "snapshot": {"id": "57b3118c-32a7-4892-8186-d364cacdd888", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/57b3118c-32a7-4892-8186-d364cacdd888.png", "timestamp": "2024-02-15T20:37:29.004550+00:00"}}, {"id": "a05cd27d-455c-4e07-a091-b1e76b1d504d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:42.790182+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly. There are no major delays or disruptions.", "snapshot": {"id": "57b3118c-32a7-4892-8186-d364cacdd888", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/57b3118c-32a7-4892-8186-d364cacdd888.png", "timestamp": "2024-02-15T20:37:29.004550+00:00"}}, {"id": "908525de-98f0-4c69-ba47-b03dc4f67ff7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:39.720268+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "57b3118c-32a7-4892-8186-d364cacdd888", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/57b3118c-32a7-4892-8186-d364cacdd888.png", "timestamp": "2024-02-15T20:37:29.004550+00:00"}}, {"id": "6ab71b9f-33e8-40dd-a6cd-7623e61568de", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:40.071347+00:00", "label": "null", "label_explanation": "The image shows a four-way intersection with a gas station on the right side. There are a few trees on the left side of the intersection, and the road surface is wet from recent rain. There is a motorcycle in the middle of the intersection, and a truck is approaching from the right.", "snapshot": {"id": "57b3118c-32a7-4892-8186-d364cacdd888", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/57b3118c-32a7-4892-8186-d364cacdd888.png", "timestamp": "2024-02-15T20:37:29.004550+00:00"}}, {"id": "b087c4c8-506c-4b33-a50d-19b2b5d143c8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:11.746710+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "d7548e8b-b905-46cb-8bef-ea9f1a723ba4", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/d7548e8b-b905-46cb-8bef-ea9f1a723ba4.png", "timestamp": "2024-02-15T20:40:01.043500+00:00"}}, {"id": "b7e0b663-bc60-4ab9-99c3-b730c6663d2e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:11.391564+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "d7548e8b-b905-46cb-8bef-ea9f1a723ba4", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/d7548e8b-b905-46cb-8bef-ea9f1a723ba4.png", "timestamp": "2024-02-15T20:40:01.043500+00:00"}}, {"id": "3ed80458-bcbc-4e81-a4b0-45c4cda8e83f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:11.116454+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "d7548e8b-b905-46cb-8bef-ea9f1a723ba4", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/d7548e8b-b905-46cb-8bef-ea9f1a723ba4.png", "timestamp": "2024-02-15T20:40:01.043500+00:00"}}, {"id": "6f22b4e0-286e-4f72-bc68-d5b78896e781", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:10.181476+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d7548e8b-b905-46cb-8bef-ea9f1a723ba4", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/d7548e8b-b905-46cb-8bef-ea9f1a723ba4.png", "timestamp": "2024-02-15T20:40:01.043500+00:00"}}, {"id": "861cdd7c-b75f-42f6-a35b-cf44814b214b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:10.832764+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d7548e8b-b905-46cb-8bef-ea9f1a723ba4", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/d7548e8b-b905-46cb-8bef-ea9f1a723ba4.png", "timestamp": "2024-02-15T20:40:01.043500+00:00"}}, {"id": "4e3c3ee1-882a-45a6-9daa-207af1926b15", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:10.439234+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears cloudy with some light rain.", "snapshot": {"id": "d7548e8b-b905-46cb-8bef-ea9f1a723ba4", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/d7548e8b-b905-46cb-8bef-ea9f1a723ba4.png", "timestamp": "2024-02-15T20:40:01.043500+00:00"}}, {"id": "02bc172c-8ae2-45bc-91ce-fb5ed28e6050", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:43.103134+00:00", "label": "medium", "label_explanation": "The water level is moderate, with some areas of the road completely submerged. However, most vehicles can still pass through the area with caution.", "snapshot": {"id": "3e68bf1b-d609-418b-a41f-a832fa1f4b31", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/3e68bf1b-d609-418b-a41f-a832fa1f4b31.png", "timestamp": "2024-02-15T20:42:31.406500+00:00"}}, {"id": "180ee174-19ff-49e9-8980-add2a382c6f6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:42.763006+00:00", "label": "true", "label_explanation": "The road surface is wet, and there is water on the road.", "snapshot": {"id": "3e68bf1b-d609-418b-a41f-a832fa1f4b31", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/3e68bf1b-d609-418b-a41f-a832fa1f4b31.png", "timestamp": "2024-02-15T20:42:31.406500+00:00"}}, {"id": "b8ba39a0-590e-4d0c-a109-39bee832daca", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:42.336305+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3e68bf1b-d609-418b-a41f-a832fa1f4b31", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/3e68bf1b-d609-418b-a41f-a832fa1f4b31.png", "timestamp": "2024-02-15T20:42:31.406500+00:00"}}, {"id": "371b1843-1d4d-430b-ac94-86b2653a035e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:43.871878+00:00", "label": "partially", "label_explanation": "The road is partially blocked by water, but there is still enough space for vehicles to pass through with caution.", "snapshot": {"id": "3e68bf1b-d609-418b-a41f-a832fa1f4b31", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/3e68bf1b-d609-418b-a41f-a832fa1f4b31.png", "timestamp": "2024-02-15T20:42:31.406500+00:00"}}, {"id": "d7c13592-1b6a-4325-8584-1759d1f93108", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:42.557257+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles navigating through a flooded area. Despite the presence of water, the road is still open to traffic, albeit with some difficulty.", "snapshot": {"id": "3e68bf1b-d609-418b-a41f-a832fa1f4b31", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/3e68bf1b-d609-418b-a41f-a832fa1f4b31.png", "timestamp": "2024-02-15T20:42:31.406500+00:00"}}, {"id": "3de5e03a-5cc1-4e0c-8480-c2e821f8fb21", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:43.664846+00:00", "label": "moderate", "label_explanation": "Traffic is moving slowly due to the water on the road, but it is still possible for vehicles to pass through the area.", "snapshot": {"id": "3e68bf1b-d609-418b-a41f-a832fa1f4b31", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/3e68bf1b-d609-418b-a41f-a832fa1f4b31.png", "timestamp": "2024-02-15T20:42:31.406500+00:00"}}, {"id": "72a56694-e114-43d4-8686-191f1cb00b72", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:05.091421+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. All lanes are open, allowing vehicles to pass through the intersection without hindrance.", "snapshot": {"id": "687a272b-d32c-4afa-8006-3c5392bc4415", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/687a272b-d32c-4afa-8006-3c5392bc4415.png", "timestamp": "2024-02-15T20:44:53.271613+00:00"}}, {"id": "78b6b1b2-616b-4915-b157-9266a105c973", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:04.839551+00:00", "label": "moderate", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving at a steady pace. The wet road conditions may cause some caution among drivers, but overall, traffic is manageable.", "snapshot": {"id": "687a272b-d32c-4afa-8006-3c5392bc4415", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/687a272b-d32c-4afa-8006-3c5392bc4415.png", "timestamp": "2024-02-15T20:44:53.271613+00:00"}}, {"id": "2e82f900-e70c-4d8d-8445-e53b75196712", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:04.568231+00:00", "label": "low", "label_explanation": "While it is raining, the water level on the road is relatively low, with only small puddles forming in certain areas. The majority of the road surface is still visible and passable.", "snapshot": {"id": "687a272b-d32c-4afa-8006-3c5392bc4415", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/687a272b-d32c-4afa-8006-3c5392bc4415.png", "timestamp": "2024-02-15T20:44:53.271613+00:00"}}, {"id": "69ad76b4-cab5-41e7-9873-2699e59cb685", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:04.236999+00:00", "label": "true", "label_explanation": "The presence of rain is evident in the image, as the road surface is wet and there are water droplets on the camera lens.", "snapshot": {"id": "687a272b-d32c-4afa-8006-3c5392bc4415", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/687a272b-d32c-4afa-8006-3c5392bc4415.png", "timestamp": "2024-02-15T20:44:53.271613+00:00"}}, {"id": "4976d93c-eb85-4f72-ba70-95d92a0fa7b8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:03.825270+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles navigating through a rainy environment. Despite the rain, the road surface remains mostly visible, with some areas showing slight water accumulation.", "snapshot": {"id": "687a272b-d32c-4afa-8006-3c5392bc4415", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/687a272b-d32c-4afa-8006-3c5392bc4415.png", "timestamp": "2024-02-15T20:44:53.271613+00:00"}}, {"id": "286b7f94-655e-4248-9d34-37718622e09d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:03.602186+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "687a272b-d32c-4afa-8006-3c5392bc4415", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/687a272b-d32c-4afa-8006-3c5392bc4415.png", "timestamp": "2024-02-15T20:44:53.271613+00:00"}}, {"id": "c941f906-8b4f-42b1-abfa-00d34a83eeb4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:16.940137+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "e6f4c28d-b257-4e55-b217-21adaabb6580", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/e6f4c28d-b257-4e55-b217-21adaabb6580.png", "timestamp": "2024-02-15T20:52:05.764326+00:00"}}, {"id": "df6b5015-47bf-47ea-9897-28505521c2fb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:16.105069+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "e6f4c28d-b257-4e55-b217-21adaabb6580", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/e6f4c28d-b257-4e55-b217-21adaabb6580.png", "timestamp": "2024-02-15T20:52:05.764326+00:00"}}, {"id": "17821602-c84e-4585-83f0-b5c9c77a5ad4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:16.391026+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "e6f4c28d-b257-4e55-b217-21adaabb6580", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/e6f4c28d-b257-4e55-b217-21adaabb6580.png", "timestamp": "2024-02-15T20:52:05.764326+00:00"}}, {"id": "519c384a-3c4d-4543-9188-62a20aa0582c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:16.721184+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars moving slowly.", "snapshot": {"id": "e6f4c28d-b257-4e55-b217-21adaabb6580", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/e6f4c28d-b257-4e55-b217-21adaabb6580.png", "timestamp": "2024-02-15T20:52:05.764326+00:00"}}, {"id": "774673e7-fa58-419f-acbf-516a3e366983", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:15.598852+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e6f4c28d-b257-4e55-b217-21adaabb6580", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/e6f4c28d-b257-4e55-b217-21adaabb6580.png", "timestamp": "2024-02-15T20:52:05.764326+00:00"}}, {"id": "686645cf-838e-4a4e-ba76-5385e07599c8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:15.816970+00:00", "label": "null", "label_explanation": "The image shows a four-way urban road intersection. It is daytime and the weather appears to be clear. There are a few trees on the left side of the image and buildings on the right side. There are cars on the road, but the exact number cannot be determined due to the angle of the camera.", "snapshot": {"id": "e6f4c28d-b257-4e55-b217-21adaabb6580", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/e6f4c28d-b257-4e55-b217-21adaabb6580.png", "timestamp": "2024-02-15T20:52:05.764326+00:00"}}, {"id": "1bb6692c-773f-466f-a43d-0c8eaeb9ef6b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.668770+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions. The white car and motorcycle are moving smoothly.", "snapshot": {"id": "f4b6dcaa-87a5-444b-ab90-2ef4e6175507", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/f4b6dcaa-87a5-444b-ab90-2ef4e6175507.png", "timestamp": "2024-02-15T20:54:29.537675+00:00"}}, {"id": "da294843-4ad7-44b3-921c-c0539d1bc576", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:39.571517+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f4b6dcaa-87a5-444b-ab90-2ef4e6175507", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/f4b6dcaa-87a5-444b-ab90-2ef4e6175507.png", "timestamp": "2024-02-15T20:54:29.537675+00:00"}}, {"id": "a1fc4c4f-c5ad-4f56-9083-fb507774598a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.177994+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "f4b6dcaa-87a5-444b-ab90-2ef4e6175507", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/f4b6dcaa-87a5-444b-ab90-2ef4e6175507.png", "timestamp": "2024-02-15T20:54:29.537675+00:00"}}, {"id": "2cf48973-697b-4f65-a7fc-0a8f14897633", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.892462+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions. The road is clear for traffic.", "snapshot": {"id": "f4b6dcaa-87a5-444b-ab90-2ef4e6175507", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/f4b6dcaa-87a5-444b-ab90-2ef4e6175507.png", "timestamp": "2024-02-15T20:54:29.537675+00:00"}}, {"id": "471cde42-bd28-47c3-b55d-2ac9450dd960", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:39.921549+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime, and the weather appears to be clear. There are a few trees on either side of the road, and buildings and houses can be seen in the background. There is a white car and a motorcycle on the road, both in motion.", "snapshot": {"id": "f4b6dcaa-87a5-444b-ab90-2ef4e6175507", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/f4b6dcaa-87a5-444b-ab90-2ef4e6175507.png", "timestamp": "2024-02-15T20:54:29.537675+00:00"}}, {"id": "1eb1c172-b038-4ca8-84a5-f82ac4b6642a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.454429+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is dry.", "snapshot": {"id": "f4b6dcaa-87a5-444b-ab90-2ef4e6175507", "camera_id": "000362", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000362/f4b6dcaa-87a5-444b-ab90-2ef4e6175507.png", "timestamp": "2024-02-15T20:54:29.537675+00:00"}}]}, {"id": "001170", "name": "RUA DOS INV\u00c1LIDOS, 99 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.18.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91114856, "longitude": -43.18508843, "objects": ["image_corrupted", "rain", "road_blockade", "water_level", "image_description", "traffic"], "identifications": [{"id": "8b13efc3-d4c0-46bc-8b7b-bb5a85e20aa8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:40.308472+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "110982e6-9aba-4a86-8aca-a6d97eafff5c", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/110982e6-9aba-4a86-8aca-a6d97eafff5c.png", "timestamp": "2024-02-15T20:30:31.331579+00:00"}}, {"id": "e439d768-3784-4137-ab2f-5bef7aad54a1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:41.597091+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "110982e6-9aba-4a86-8aca-a6d97eafff5c", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/110982e6-9aba-4a86-8aca-a6d97eafff5c.png", "timestamp": "2024-02-15T20:30:31.331579+00:00"}}, {"id": "38feb81e-14c5-4fe1-b1f6-b1c4073028bf", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:41.097561+00:00", "label": "low", "label_explanation": "The road surface is completely dry, with no signs of water accumulation.", "snapshot": {"id": "110982e6-9aba-4a86-8aca-a6d97eafff5c", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/110982e6-9aba-4a86-8aca-a6d97eafff5c.png", "timestamp": "2024-02-15T20:30:31.331579+00:00"}}, {"id": "575f2f96-2b81-421c-8582-7e68c9012aa3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:40.806113+00:00", "label": "false", "label_explanation": "There is no rain or water present on the road surface.", "snapshot": {"id": "110982e6-9aba-4a86-8aca-a6d97eafff5c", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/110982e6-9aba-4a86-8aca-a6d97eafff5c.png", "timestamp": "2024-02-15T20:30:31.331579+00:00"}}, {"id": "40c0702b-292e-42d7-87c9-26aa73a69e76", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:40.555783+00:00", "label": "null", "label_explanation": "The image captures an urban road with moderate traffic during daytime. The road surface appears dry, with no visible water accumulation.", "snapshot": {"id": "110982e6-9aba-4a86-8aca-a6d97eafff5c", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/110982e6-9aba-4a86-8aca-a6d97eafff5c.png", "timestamp": "2024-02-15T20:30:31.331579+00:00"}}, {"id": "2a72dcd7-73c5-4aba-874c-10a6d72e104e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:41.321682+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no visible congestion or hindrances.", "snapshot": {"id": "110982e6-9aba-4a86-8aca-a6d97eafff5c", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/110982e6-9aba-4a86-8aca-a6d97eafff5c.png", "timestamp": "2024-02-15T20:30:31.331579+00:00"}}, {"id": "0238bc88-d94d-4983-b27f-3b56590eab68", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.039693+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "bab47242-e3ba-4906-b264-b1f4ce34b3b6", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/bab47242-e3ba-4906-b264-b1f4ce34b3b6.png", "timestamp": "2024-02-15T20:33:09.231008+00:00"}}, {"id": "7414ea77-4aa0-40d7-ad42-2ebd3f38ac2c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.526150+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with uniform grey color and no discernible details. This indicates significant data loss or corruption.", "snapshot": {"id": "bab47242-e3ba-4906-b264-b1f4ce34b3b6", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/bab47242-e3ba-4906-b264-b1f4ce34b3b6.png", "timestamp": "2024-02-15T20:33:09.231008+00:00"}}, {"id": "f2ddc693-55cd-4d31-b5bc-8acc19cc8969", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.057666+00:00", "label": "null", "label_explanation": "The image shows an urban road with clear weather. The road is dry, with no visible water on the surface. There are a few parked cars on the side of the road, and trees can be seen in the background.", "snapshot": {"id": "e38194f1-c503-4107-9d6e-f9a8626d10bf", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/e38194f1-c503-4107-9d6e-f9a8626d10bf.png", "timestamp": "2024-02-15T20:35:34.720159+00:00"}}, {"id": "79bad30a-1ee7-4591-b8ad-a1ae296a0b61", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.002349+00:00", "label": "free", "label_explanation": "The road is free of any obstructions. There are no road closures or blockages.", "snapshot": {"id": "e38194f1-c503-4107-9d6e-f9a8626d10bf", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/e38194f1-c503-4107-9d6e-f9a8626d10bf.png", "timestamp": "2024-02-15T20:35:34.720159+00:00"}}, {"id": "a6cf2164-ef9e-43de-9234-c4befcf8be79", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.307158+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "e38194f1-c503-4107-9d6e-f9a8626d10bf", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/e38194f1-c503-4107-9d6e-f9a8626d10bf.png", "timestamp": "2024-02-15T20:35:34.720159+00:00"}}, {"id": "5fd8b214-b57a-4841-912d-61d39129b52c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.805834+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption. There are no uniform grey or green color distortions or other visual interference affecting clarity.", "snapshot": {"id": "e38194f1-c503-4107-9d6e-f9a8626d10bf", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/e38194f1-c503-4107-9d6e-f9a8626d10bf.png", "timestamp": "2024-02-15T20:35:34.720159+00:00"}}, {"id": "73ce1b18-cb33-4fe8-85cd-d4eba9793ddb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.733955+00:00", "label": "easy", "label_explanation": "The road is clear, with no traffic obstructions. Traffic is flowing smoothly.", "snapshot": {"id": "e38194f1-c503-4107-9d6e-f9a8626d10bf", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/e38194f1-c503-4107-9d6e-f9a8626d10bf.png", "timestamp": "2024-02-15T20:35:34.720159+00:00"}}, {"id": "da86fc02-56ac-4fa7-a09e-e81e692b9775", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.508390+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "e38194f1-c503-4107-9d6e-f9a8626d10bf", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/e38194f1-c503-4107-9d6e-f9a8626d10bf.png", "timestamp": "2024-02-15T20:35:34.720159+00:00"}}, {"id": "d7546ac1-35ff-4052-96de-31d5aa358267", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.653218+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "d9603d5b-15d0-4281-ad6f-4b440921ac49", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d9603d5b-15d0-4281-ad6f-4b440921ac49.png", "timestamp": "2024-02-15T20:38:07.984672+00:00"}}, {"id": "60ab398a-4e99-4ff8-ad96-0971623e9484", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.413721+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road is dry, and there are no visible signs of water on the road surface.", "snapshot": {"id": "d9603d5b-15d0-4281-ad6f-4b440921ac49", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d9603d5b-15d0-4281-ad6f-4b440921ac49.png", "timestamp": "2024-02-15T20:38:07.984672+00:00"}}, {"id": "b153196a-1236-40d9-8920-9d3933ae7970", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.897088+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions, and the image appears intact.", "snapshot": {"id": "d9603d5b-15d0-4281-ad6f-4b440921ac49", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d9603d5b-15d0-4281-ad6f-4b440921ac49.png", "timestamp": "2024-02-15T20:38:07.984672+00:00"}}, {"id": "89262164-f3cf-4587-87fa-7808b5787f30", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.125308+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and free of any obstacles.", "snapshot": {"id": "d9603d5b-15d0-4281-ad6f-4b440921ac49", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d9603d5b-15d0-4281-ad6f-4b440921ac49.png", "timestamp": "2024-02-15T20:38:07.984672+00:00"}}, {"id": "63880e69-89e5-44c5-8c4a-2648769a9f7e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.889575+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly in both directions. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "d9603d5b-15d0-4281-ad6f-4b440921ac49", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d9603d5b-15d0-4281-ad6f-4b440921ac49.png", "timestamp": "2024-02-15T20:38:07.984672+00:00"}}, {"id": "2f25a437-172a-480e-be72-c0d0bc99e5fd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.114285+00:00", "label": "null", "label_explanation": "The image depicts an urban road with clear weather. The road is relatively wide, with multiple lanes in each direction. It is daytime, and the sun is shining brightly. There are several cars on the road, but traffic appears to be light. The road is lined with trees, and there are buildings and other structures in the background.", "snapshot": {"id": "d9603d5b-15d0-4281-ad6f-4b440921ac49", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d9603d5b-15d0-4281-ad6f-4b440921ac49.png", "timestamp": "2024-02-15T20:38:07.984672+00:00"}}, {"id": "eccb5060-53c3-4c3f-ae5b-9d9086d2872e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.038192+00:00", "label": "totally", "label_explanation": "The road is completely blocked by a large tree, making it impassable for vehicles.", "snapshot": {"id": "2add5e98-aef0-4743-a41e-226796a771e2", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/2add5e98-aef0-4743-a41e-226796a771e2.png", "timestamp": "2024-02-15T20:40:34.204247+00:00"}}, {"id": "09b01952-5f83-4044-96aa-5116b27d60cb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.559366+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water.", "snapshot": {"id": "2add5e98-aef0-4743-a41e-226796a771e2", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/2add5e98-aef0-4743-a41e-226796a771e2.png", "timestamp": "2024-02-15T20:40:34.204247+00:00"}}, {"id": "de523170-63e6-47e5-94fd-b213f8b341a4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.353639+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "2add5e98-aef0-4743-a41e-226796a771e2", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/2add5e98-aef0-4743-a41e-226796a771e2.png", "timestamp": "2024-02-15T20:40:34.204247+00:00"}}, {"id": "dcb5ab71-50f9-4ca2-aaec-6da7357f40a8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.146197+00:00", "label": "null", "label_explanation": "The image shows a section of an urban road with a few cars parked on the side. The road is dry, and there are no visible signs of water or other obstructions.", "snapshot": {"id": "2add5e98-aef0-4743-a41e-226796a771e2", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/2add5e98-aef0-4743-a41e-226796a771e2.png", "timestamp": "2024-02-15T20:40:34.204247+00:00"}}, {"id": "cbf5f9bd-8a68-4fa5-9fe8-8c959a9ae3e4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.913981+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2add5e98-aef0-4743-a41e-226796a771e2", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/2add5e98-aef0-4743-a41e-226796a771e2.png", "timestamp": "2024-02-15T20:40:34.204247+00:00"}}, {"id": "a84aaad2-f38b-4dda-8a32-baf563264c66", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.977398+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "229934b3-bf82-4c48-a1ed-18ca47530abe", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/229934b3-bf82-4c48-a1ed-18ca47530abe.png", "timestamp": "2024-02-15T20:45:21.929936+00:00"}}, {"id": "f11d5a94-6f43-4b6b-8a09-7381bfe5c75e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.774442+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion or obstacles.", "snapshot": {"id": "229934b3-bf82-4c48-a1ed-18ca47530abe", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/229934b3-bf82-4c48-a1ed-18ca47530abe.png", "timestamp": "2024-02-15T20:45:21.929936+00:00"}}, {"id": "43b9aa4a-edee-455a-9dbe-18cb3296e076", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.100055+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with residential buildings on either side and a clear sky overhead. It appears to be daytime based on the lighting.", "snapshot": {"id": "229934b3-bf82-4c48-a1ed-18ca47530abe", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/229934b3-bf82-4c48-a1ed-18ca47530abe.png", "timestamp": "2024-02-15T20:45:21.929936+00:00"}}, {"id": "80804efb-8919-46d2-a01d-080a4427d935", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.513976+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "229934b3-bf82-4c48-a1ed-18ca47530abe", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/229934b3-bf82-4c48-a1ed-18ca47530abe.png", "timestamp": "2024-02-15T20:45:21.929936+00:00"}}, {"id": "2433face-7095-4b41-8efa-491b221d99c0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.291810+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "229934b3-bf82-4c48-a1ed-18ca47530abe", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/229934b3-bf82-4c48-a1ed-18ca47530abe.png", "timestamp": "2024-02-15T20:45:21.929936+00:00"}}, {"id": "6a3768bb-8e5a-47a7-9f50-d630b624fb6e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.885541+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "229934b3-bf82-4c48-a1ed-18ca47530abe", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/229934b3-bf82-4c48-a1ed-18ca47530abe.png", "timestamp": "2024-02-15T20:45:21.929936+00:00"}}, {"id": "1b2497ae-7817-4bc2-b1e3-201e95251fa6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.115671+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "938a81b5-fc03-4080-bc86-c7b58aae7071", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/938a81b5-fc03-4080-bc86-c7b58aae7071.png", "timestamp": "2024-02-15T20:42:57.939792+00:00"}}, {"id": "b35ab59d-f0e3-4c54-af8c-7eae5fe716c0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.821858+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no visible details.", "snapshot": {"id": "938a81b5-fc03-4080-bc86-c7b58aae7071", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/938a81b5-fc03-4080-bc86-c7b58aae7071.png", "timestamp": "2024-02-15T20:42:57.939792+00:00"}}, {"id": "2fc5f361-6a18-4403-b1c6-2b65aac311bd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.920051+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "12e97c0b-a6cd-43a6-8d4c-3aa17b62d575", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/12e97c0b-a6cd-43a6-8d4c-3aa17b62d575.png", "timestamp": "2024-02-15T20:47:43.928656+00:00"}}, {"id": "f4f4814a-e75e-4ce3-a902-9a31af47087f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.645929+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "12e97c0b-a6cd-43a6-8d4c-3aa17b62d575", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/12e97c0b-a6cd-43a6-8d4c-3aa17b62d575.png", "timestamp": "2024-02-15T20:47:43.928656+00:00"}}, {"id": "78688dbb-c4d1-47fb-bfee-4c4ca0be2925", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.315430+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "12e97c0b-a6cd-43a6-8d4c-3aa17b62d575", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/12e97c0b-a6cd-43a6-8d4c-3aa17b62d575.png", "timestamp": "2024-02-15T20:47:43.928656+00:00"}}, {"id": "732704b8-8348-454d-9368-f6f036d47065", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.066758+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "12e97c0b-a6cd-43a6-8d4c-3aa17b62d575", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/12e97c0b-a6cd-43a6-8d4c-3aa17b62d575.png", "timestamp": "2024-02-15T20:47:43.928656+00:00"}}, {"id": "62dd4193-aa7e-43db-bb19-0b327f047681", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.765881+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a traffic light at the intersection. There are several cars on the road, and the weather appears to be clear.", "snapshot": {"id": "12e97c0b-a6cd-43a6-8d4c-3aa17b62d575", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/12e97c0b-a6cd-43a6-8d4c-3aa17b62d575.png", "timestamp": "2024-02-15T20:47:43.928656+00:00"}}, {"id": "6437d801-c168-40a5-a1c7-f88b3668fd1d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.519167+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "12e97c0b-a6cd-43a6-8d4c-3aa17b62d575", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/12e97c0b-a6cd-43a6-8d4c-3aa17b62d575.png", "timestamp": "2024-02-15T20:47:43.928656+00:00"}}, {"id": "9f4af42b-c554-4dbc-9097-09b870e80fe9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.555363+00:00", "label": "easy", "label_explanation": "The road is dry and clear, allowing for smooth traffic flow without any hindrances.", "snapshot": {"id": "d4586a88-ef05-415c-be8d-87336bfc6e37", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d4586a88-ef05-415c-be8d-87336bfc6e37.png", "timestamp": "2024-02-15T20:50:09.714933+00:00"}}, {"id": "e9e3d113-96cb-4c52-b17c-dc8969447975", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.655452+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d4586a88-ef05-415c-be8d-87336bfc6e37", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d4586a88-ef05-415c-be8d-87336bfc6e37.png", "timestamp": "2024-02-15T20:50:09.714933+00:00"}}, {"id": "fc2584fd-6e69-495f-a0da-cf6100c2d75c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.783927+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, ensuring free passage for vehicles.", "snapshot": {"id": "d4586a88-ef05-415c-be8d-87336bfc6e37", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d4586a88-ef05-415c-be8d-87336bfc6e37.png", "timestamp": "2024-02-15T20:50:09.714933+00:00"}}, {"id": "43bcc166-a9c6-41f9-891a-3f75ea387b44", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.258165+00:00", "label": "low", "label_explanation": "Since the road surface is dry, the water level is low.", "snapshot": {"id": "d4586a88-ef05-415c-be8d-87336bfc6e37", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d4586a88-ef05-415c-be8d-87336bfc6e37.png", "timestamp": "2024-02-15T20:50:09.714933+00:00"}}, {"id": "321e0d3f-1a4e-4ac2-9031-f3b81135c643", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.041204+00:00", "label": "false", "label_explanation": "As the road surface is completely dry, there is no indication of rain.", "snapshot": {"id": "d4586a88-ef05-415c-be8d-87336bfc6e37", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d4586a88-ef05-415c-be8d-87336bfc6e37.png", "timestamp": "2024-02-15T20:50:09.714933+00:00"}}, {"id": "d1ede060-5076-4b57-b0dd-738fb6b16df5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.851582+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear, dry road surface. There are no visible signs of water or obstructions.", "snapshot": {"id": "d4586a88-ef05-415c-be8d-87336bfc6e37", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/d4586a88-ef05-415c-be8d-87336bfc6e37.png", "timestamp": "2024-02-15T20:50:09.714933+00:00"}}, {"id": "558ded48-454f-4d5b-9a22-5eaf7414d58f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:11.049276+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "96cca57d-a75f-4711-98e7-297d5b095e74", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/96cca57d-a75f-4711-98e7-297d5b095e74.png", "timestamp": "2024-02-15T20:55:00.930910+00:00"}}, {"id": "ea4f4b18-2d72-42bb-b34b-518c8d17bbe2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.719629+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime, and the weather appears to be clear.", "snapshot": {"id": "96cca57d-a75f-4711-98e7-297d5b095e74", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/96cca57d-a75f-4711-98e7-297d5b095e74.png", "timestamp": "2024-02-15T20:55:00.930910+00:00"}}, {"id": "0cdcea1a-1c3f-4ad0-bee4-52e91f8ce507", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.537691+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "96cca57d-a75f-4711-98e7-297d5b095e74", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/96cca57d-a75f-4711-98e7-297d5b095e74.png", "timestamp": "2024-02-15T20:55:00.930910+00:00"}}, {"id": "749b8260-c3e6-4b26-a883-eaf3bbf81858", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:11.772867+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "96cca57d-a75f-4711-98e7-297d5b095e74", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/96cca57d-a75f-4711-98e7-297d5b095e74.png", "timestamp": "2024-02-15T20:55:00.930910+00:00"}}, {"id": "88464e5a-451a-4b43-8f87-071e62365a96", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:11.509117+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "96cca57d-a75f-4711-98e7-297d5b095e74", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/96cca57d-a75f-4711-98e7-297d5b095e74.png", "timestamp": "2024-02-15T20:55:00.930910+00:00"}}, {"id": "4cddebeb-0161-408a-8c0d-ca757670e8e9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:11.320147+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "96cca57d-a75f-4711-98e7-297d5b095e74", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/96cca57d-a75f-4711-98e7-297d5b095e74.png", "timestamp": "2024-02-15T20:55:00.930910+00:00"}}, {"id": "b047e6b0-3538-4515-86e7-fb470c199ea8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.323569+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible obstructions or traffic disruptions. Traffic is flowing smoothly.", "snapshot": {"id": "fba949ea-7321-4a14-a992-8b01778f5e19", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/fba949ea-7321-4a14-a992-8b01778f5e19.png", "timestamp": "2024-02-15T20:52:33.499554+00:00"}}, {"id": "208c2312-d73c-4e89-ad89-fe8e3d747cdd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.113823+00:00", "label": "low", "label_explanation": "The road surface is completely dry, with no visible signs of water accumulation.", "snapshot": {"id": "fba949ea-7321-4a14-a992-8b01778f5e19", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/fba949ea-7321-4a14-a992-8b01778f5e19.png", "timestamp": "2024-02-15T20:52:33.499554+00:00"}}, {"id": "2a1afcca-c3d0-4425-8c9e-a2ea28dbfc69", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.905853+00:00", "label": "false", "label_explanation": "The road surface is dry, with no visible signs of rain or moisture.", "snapshot": {"id": "fba949ea-7321-4a14-a992-8b01778f5e19", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/fba949ea-7321-4a14-a992-8b01778f5e19.png", "timestamp": "2024-02-15T20:52:33.499554+00:00"}}, {"id": "445133fc-dff0-48d2-89b1-6381a279266f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.708601+00:00", "label": "null", "label_explanation": "The image depicts an urban road with a clear, dry road surface. There are no visible signs of water or obstructions.", "snapshot": {"id": "fba949ea-7321-4a14-a992-8b01778f5e19", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/fba949ea-7321-4a14-a992-8b01778f5e19.png", "timestamp": "2024-02-15T20:52:33.499554+00:00"}}, {"id": "dfc361ac-3b29-4e90-9a58-156aca281c45", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.592836+00:00", "label": "free", "label_explanation": "The road is free of any obstructions or blockades, allowing for smooth traffic flow.", "snapshot": {"id": "fba949ea-7321-4a14-a992-8b01778f5e19", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/fba949ea-7321-4a14-a992-8b01778f5e19.png", "timestamp": "2024-02-15T20:52:33.499554+00:00"}}, {"id": "dec4855f-2c85-44e6-b123-b6a8f5874d13", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.404435+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fba949ea-7321-4a14-a992-8b01778f5e19", "camera_id": "001170", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001170/fba949ea-7321-4a14-a992-8b01778f5e19.png", "timestamp": "2024-02-15T20:52:33.499554+00:00"}}]}, {"id": "001500", "name": "AV. MARACAN\u00c3 X R. MAJOR \u00c1VILA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919797, "longitude": -43.233887, "objects": ["rain", "image_description", "image_corrupted", "water_level", "road_blockade", "traffic"], "identifications": [{"id": "676556f8-13c7-4364-a8ba-ce8bebd8aec0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.320656+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "3cc22dc7-5614-43f2-8854-2dcdc410d29f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3cc22dc7-5614-43f2-8854-2dcdc410d29f.png", "timestamp": "2024-02-15T20:30:27.369366+00:00"}}, {"id": "91162228-a513-4ca0-9c99-3da4e656e50b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.870579+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and trees.", "snapshot": {"id": "3cc22dc7-5614-43f2-8854-2dcdc410d29f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3cc22dc7-5614-43f2-8854-2dcdc410d29f.png", "timestamp": "2024-02-15T20:30:27.369366+00:00"}}, {"id": "3e7d2d6e-2433-4315-bdb8-8696236e8d4d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.564887+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "3cc22dc7-5614-43f2-8854-2dcdc410d29f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3cc22dc7-5614-43f2-8854-2dcdc410d29f.png", "timestamp": "2024-02-15T20:30:27.369366+00:00"}}, {"id": "4cfa8965-9ab2-417c-bf9a-65580acea1b7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.533336+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3cc22dc7-5614-43f2-8854-2dcdc410d29f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3cc22dc7-5614-43f2-8854-2dcdc410d29f.png", "timestamp": "2024-02-15T20:30:27.369366+00:00"}}, {"id": "69e0efa8-5601-4c7b-b3d7-ab9c6dcace31", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.955119+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "3cc22dc7-5614-43f2-8854-2dcdc410d29f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3cc22dc7-5614-43f2-8854-2dcdc410d29f.png", "timestamp": "2024-02-15T20:30:27.369366+00:00"}}, {"id": "f744bb8a-bc55-41fd-9a6e-48defb70adb1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.224375+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "3cc22dc7-5614-43f2-8854-2dcdc410d29f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3cc22dc7-5614-43f2-8854-2dcdc410d29f.png", "timestamp": "2024-02-15T20:30:27.369366+00:00"}}, {"id": "b36deb99-c9d5-4cc7-b21f-98372640f417", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.150290+00:00", "label": "free", "label_explanation": "As for road blockades, there are none visible in the image. The road is clear and open to traffic in all directions.", "snapshot": {"id": "4820e648-9ef3-40ce-a499-1e9dbef703d6", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/4820e648-9ef3-40ce-a499-1e9dbef703d6.png", "timestamp": "2024-02-15T20:33:03.262374+00:00"}}, {"id": "675270d8-65ca-4e8a-9dcd-11667036b765", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:19.066536+00:00", "label": "low", "label_explanation": "Although the road surface is wet, there are only small puddles of water, and the road is still easily navigable. Therefore, the water level can be classified as 'low'.", "snapshot": {"id": "4820e648-9ef3-40ce-a499-1e9dbef703d6", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/4820e648-9ef3-40ce-a499-1e9dbef703d6.png", "timestamp": "2024-02-15T20:33:03.262374+00:00"}}, {"id": "6837ff7e-9dde-413c-bd4c-74a34fd4ceb6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:17.563964+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4820e648-9ef3-40ce-a499-1e9dbef703d6", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/4820e648-9ef3-40ce-a499-1e9dbef703d6.png", "timestamp": "2024-02-15T20:33:03.262374+00:00"}}, {"id": "1caa89e9-b163-406b-b3a8-984cece94b5f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:19.607961+00:00", "label": "easy", "label_explanation": "In terms of traffic, the road is moderately busy, with a few cars waiting at the intersection. However, the traffic appears to be flowing smoothly, and there are no major obstructions or hazards.", "snapshot": {"id": "4820e648-9ef3-40ce-a499-1e9dbef703d6", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/4820e648-9ef3-40ce-a499-1e9dbef703d6.png", "timestamp": "2024-02-15T20:33:03.262374+00:00"}}, {"id": "f2f4d21e-f9dc-4e4e-8a70-67eae087cc36", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.522351+00:00", "label": "true", "label_explanation": "As mentioned earlier, the road surface is wet, and there are water droplets on the camera lens, indicating the presence of rain.", "snapshot": {"id": "4820e648-9ef3-40ce-a499-1e9dbef703d6", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/4820e648-9ef3-40ce-a499-1e9dbef703d6.png", "timestamp": "2024-02-15T20:33:03.262374+00:00"}}, {"id": "7e256640-794f-48b9-b67c-e3d41af916e8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.054748+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and trees in the background. The weather appears to be cloudy and wet, as the road surface is visibly wet and there are water droplets on the camera lens.", "snapshot": {"id": "4820e648-9ef3-40ce-a499-1e9dbef703d6", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/4820e648-9ef3-40ce-a499-1e9dbef703d6.png", "timestamp": "2024-02-15T20:33:03.262374+00:00"}}, {"id": "3418bbce-b8ec-4a15-bc28-8da3f93a0632", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.861808+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a reasonable speed. The rain is not causing any major disruptions to traffic.", "snapshot": {"id": "9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77.png", "timestamp": "2024-02-15T20:45:18.353143+00:00"}}, {"id": "b771d631-8308-4b88-9c5a-c4194e2d8d9e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.873914+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77.png", "timestamp": "2024-02-15T20:45:18.353143+00:00"}}, {"id": "3aa81afa-ae0b-4fad-ab91-a4c3d281c65b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.373150+00:00", "label": "true", "label_explanation": "The road surface is wet, and there is water on the sidewalks and in the gutters. The rain is falling heavily, and it is likely to continue for some time.", "snapshot": {"id": "9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77.png", "timestamp": "2024-02-15T20:45:18.353143+00:00"}}, {"id": "c259b2f9-4853-41c8-8700-bb00d9411aa3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.090293+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road surface is wet. There are several vehicles on the road, including a bus, a white car, and a motorcycle. Pedestrians are also visible, and there are buildings and trees in the background.", "snapshot": {"id": "9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77.png", "timestamp": "2024-02-15T20:45:18.353143+00:00"}}, {"id": "29a8849f-d38a-4632-99c1-f0ff1e8e3f2b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.137389+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear, and traffic is able to flow freely.", "snapshot": {"id": "9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77.png", "timestamp": "2024-02-15T20:45:18.353143+00:00"}}, {"id": "b3211d74-dd21-4f9e-92dd-3c92b253d5dd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.577938+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no significant puddles or\u79ef\u6c34.", "snapshot": {"id": "9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/9dcacc6d-c7ba-43aa-a73c-e6953cc5cc77.png", "timestamp": "2024-02-15T20:45:18.353143+00:00"}}, {"id": "de8c32e9-70c9-4e88-89de-d7094d330f7f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.671107+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for free traffic flow.", "snapshot": {"id": "6bab40f4-d22c-44bd-9571-e877d0aa881f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6bab40f4-d22c-44bd-9571-e877d0aa881f.png", "timestamp": "2024-02-15T20:35:31.587153+00:00"}}, {"id": "e3bf8713-ac7c-439b-a65f-344de72e8f76", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.377361+00:00", "label": "easy", "label_explanation": "The traffic appears to be moving smoothly, with no major congestion or obstacles visible in the image.", "snapshot": {"id": "6bab40f4-d22c-44bd-9571-e877d0aa881f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6bab40f4-d22c-44bd-9571-e877d0aa881f.png", "timestamp": "2024-02-15T20:35:31.587153+00:00"}}, {"id": "49566b94-017d-4cf4-9d80-981e61791941", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.365090+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6bab40f4-d22c-44bd-9571-e877d0aa881f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6bab40f4-d22c-44bd-9571-e877d0aa881f.png", "timestamp": "2024-02-15T20:35:31.587153+00:00"}}, {"id": "7b8df7a7-75a7-45e8-a844-321d0f95ed14", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.056198+00:00", "label": "low", "label_explanation": "While the road is wet, there are no significant puddles or water accumulation observed.", "snapshot": {"id": "6bab40f4-d22c-44bd-9571-e877d0aa881f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6bab40f4-d22c-44bd-9571-e877d0aa881f.png", "timestamp": "2024-02-15T20:35:31.587153+00:00"}}, {"id": "e4519494-33c7-4737-a5e0-dfe70d944729", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.772481+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating the presence of rain.", "snapshot": {"id": "6bab40f4-d22c-44bd-9571-e877d0aa881f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6bab40f4-d22c-44bd-9571-e877d0aa881f.png", "timestamp": "2024-02-15T20:35:31.587153+00:00"}}, {"id": "340f6f04-bd24-4673-8c91-03b86a6e5fa2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.563545+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and trees in the background. The weather appears to be cloudy and wet, as the road surface is visibly wet and there are reflections on the road.", "snapshot": {"id": "6bab40f4-d22c-44bd-9571-e877d0aa881f", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6bab40f4-d22c-44bd-9571-e877d0aa881f.png", "timestamp": "2024-02-15T20:35:31.587153+00:00"}}, {"id": "816af01c-6501-4367-a9e7-e582bfa064d1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.786031+00:00", "label": "free", "label_explanation": "The road is clear, with no visible blockades or obstructions. All lanes are open for traffic.", "snapshot": {"id": "3478ed68-07a7-4248-b49f-53a44ffd5122", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3478ed68-07a7-4248-b49f-53a44ffd5122.png", "timestamp": "2024-02-15T20:38:02.227564+00:00"}}, {"id": "bcb312bb-eaf9-4dbb-aacd-3fd152a8aede", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.831890+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and trees in the background. The weather appears to be cloudy and wet, as the road surface is visibly wet and there are reflections on the road.", "snapshot": {"id": "3478ed68-07a7-4248-b49f-53a44ffd5122", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3478ed68-07a7-4248-b49f-53a44ffd5122.png", "timestamp": "2024-02-15T20:38:02.227564+00:00"}}, {"id": "ed80fc67-62be-43a3-ae00-35c0f91e118f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.506114+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving at a steady pace. There are no major obstructions or congestion visible in the image.", "snapshot": {"id": "3478ed68-07a7-4248-b49f-53a44ffd5122", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3478ed68-07a7-4248-b49f-53a44ffd5122.png", "timestamp": "2024-02-15T20:38:02.227564+00:00"}}, {"id": "07c04553-621b-4ef2-9c39-1130bfffb2aa", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.287610+00:00", "label": "low", "label_explanation": "While the road is wet, the water level is relatively low, with no significant accumulation or pooling observed.", "snapshot": {"id": "3478ed68-07a7-4248-b49f-53a44ffd5122", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3478ed68-07a7-4248-b49f-53a44ffd5122.png", "timestamp": "2024-02-15T20:38:02.227564+00:00"}}, {"id": "2ef56ab2-169a-436d-8f19-49839b0b2ae8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.533659+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3478ed68-07a7-4248-b49f-53a44ffd5122", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3478ed68-07a7-4248-b49f-53a44ffd5122.png", "timestamp": "2024-02-15T20:38:02.227564+00:00"}}, {"id": "e79e32fc-654a-48d9-a1d5-109af94a4bfb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.096557+00:00", "label": "true", "label_explanation": "As mentioned earlier, the road surface is wet, indicating the presence of rain.", "snapshot": {"id": "3478ed68-07a7-4248-b49f-53a44ffd5122", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/3478ed68-07a7-4248-b49f-53a44ffd5122.png", "timestamp": "2024-02-15T20:38:02.227564+00:00"}}, {"id": "414c7197-c7e5-4508-b177-5da38051c1be", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.381901+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are all able to move without any significant delays.", "snapshot": {"id": "aadb506a-4f7c-4dfa-8273-0d4891a8e799", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/aadb506a-4f7c-4dfa-8273-0d4891a8e799.png", "timestamp": "2024-02-15T20:40:32.169126+00:00"}}, {"id": "c9df8a22-4954-4453-81c0-d5ae41903a67", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.591310+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "aadb506a-4f7c-4dfa-8273-0d4891a8e799", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/aadb506a-4f7c-4dfa-8273-0d4891a8e799.png", "timestamp": "2024-02-15T20:40:32.169126+00:00"}}, {"id": "abc2731e-cd1a-44f7-a66d-dcb6742663cd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.147207+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some small puddles, but they are not deep enough to cause any problems for vehicles or pedestrians.", "snapshot": {"id": "aadb506a-4f7c-4dfa-8273-0d4891a8e799", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/aadb506a-4f7c-4dfa-8273-0d4891a8e799.png", "timestamp": "2024-02-15T20:40:32.169126+00:00"}}, {"id": "c0cef98d-36c0-4868-8e1c-02255b43e5f6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.907746+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles visible. The rain is not heavy, and it does not appear to be causing any significant traffic disruptions.", "snapshot": {"id": "aadb506a-4f7c-4dfa-8273-0d4891a8e799", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/aadb506a-4f7c-4dfa-8273-0d4891a8e799.png", "timestamp": "2024-02-15T20:40:32.169126+00:00"}}, {"id": "2133ad9f-1792-4550-b48a-ba8e1fdcc312", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.694348+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy with some light rain. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, crossing the intersection. The road is wet from the rain, but there are no significant puddles or flooding.", "snapshot": {"id": "aadb506a-4f7c-4dfa-8273-0d4891a8e799", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/aadb506a-4f7c-4dfa-8273-0d4891a8e799.png", "timestamp": "2024-02-15T20:40:32.169126+00:00"}}, {"id": "204894bf-4036-4bcd-86b5-20a873e6fb62", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.433697+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "aadb506a-4f7c-4dfa-8273-0d4891a8e799", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/aadb506a-4f7c-4dfa-8273-0d4891a8e799.png", "timestamp": "2024-02-15T20:40:32.169126+00:00"}}, {"id": "17bd2097-f9f1-43da-a3dd-0f6d3abeaf1d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.406437+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "6996fbe9-709b-440c-8f44-d65bb8a91629", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6996fbe9-709b-440c-8f44-d65bb8a91629.png", "timestamp": "2024-02-15T20:42:55.732770+00:00"}}, {"id": "47d51747-eb95-44e8-94ac-9430a04d49b2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.130876+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "6996fbe9-709b-440c-8f44-d65bb8a91629", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6996fbe9-709b-440c-8f44-d65bb8a91629.png", "timestamp": "2024-02-15T20:42:55.732770+00:00"}}, {"id": "1bc4634c-ffee-419c-b521-51a66cd74d2b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.943486+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no significant congestion or hazards.", "snapshot": {"id": "6996fbe9-709b-440c-8f44-d65bb8a91629", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6996fbe9-709b-440c-8f44-d65bb8a91629.png", "timestamp": "2024-02-15T20:42:55.732770+00:00"}}, {"id": "05e7253a-5773-487b-bf2e-090f57dabe63", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.610096+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not impede traffic flow.", "snapshot": {"id": "6996fbe9-709b-440c-8f44-d65bb8a91629", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6996fbe9-709b-440c-8f44-d65bb8a91629.png", "timestamp": "2024-02-15T20:42:55.732770+00:00"}}, {"id": "b4e956ec-c5ef-48eb-936a-940ad7f24c29", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.124642+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and trees.", "snapshot": {"id": "6996fbe9-709b-440c-8f44-d65bb8a91629", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6996fbe9-709b-440c-8f44-d65bb8a91629.png", "timestamp": "2024-02-15T20:42:55.732770+00:00"}}, {"id": "993f363d-bd00-4804-9964-8815b6466875", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.905404+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6996fbe9-709b-440c-8f44-d65bb8a91629", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/6996fbe9-709b-440c-8f44-d65bb8a91629.png", "timestamp": "2024-02-15T20:42:55.732770+00:00"}}, {"id": "27b31576-1f9a-4a1c-b7eb-7a05a2dea410", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:55.559777+00:00", "label": "free", "label_explanation": "The road is free of any obstructions, allowing for smooth traffic flow.", "snapshot": {"id": "d2895219-c48a-4dd8-90da-354e1bb4a865", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/d2895219-c48a-4dd8-90da-354e1bb4a865.png", "timestamp": "2024-02-15T20:47:43.720977+00:00"}}, {"id": "47298d79-73f0-4a74-89d3-c74b80a4b754", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:55.316846+00:00", "label": "easy", "label_explanation": "The intersection is clear, with vehicles moving smoothly in all directions.", "snapshot": {"id": "d2895219-c48a-4dd8-90da-354e1bb4a865", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/d2895219-c48a-4dd8-90da-354e1bb4a865.png", "timestamp": "2024-02-15T20:47:43.720977+00:00"}}, {"id": "0cc7137c-44fb-4db1-9585-987373d46cd3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:54.341509+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d2895219-c48a-4dd8-90da-354e1bb4a865", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/d2895219-c48a-4dd8-90da-354e1bb4a865.png", "timestamp": "2024-02-15T20:47:43.720977+00:00"}}, {"id": "be1f9e92-0e3d-40b2-bd48-59d193fe170b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:55.030729+00:00", "label": "low", "label_explanation": "The road surface is completely dry, with no water present.", "snapshot": {"id": "d2895219-c48a-4dd8-90da-354e1bb4a865", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/d2895219-c48a-4dd8-90da-354e1bb4a865.png", "timestamp": "2024-02-15T20:47:43.720977+00:00"}}, {"id": "dd5cf5a6-ca0d-4de7-adaf-39b2cd90871c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:54.835103+00:00", "label": "false", "label_explanation": "The road surface is dry, with no visible signs of rain or water accumulation.", "snapshot": {"id": "d2895219-c48a-4dd8-90da-354e1bb4a865", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/d2895219-c48a-4dd8-90da-354e1bb4a865.png", "timestamp": "2024-02-15T20:47:43.720977+00:00"}}, {"id": "1cdc877a-a535-49ec-9856-b8b16985c8ee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:54.630614+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with buildings, trees, and vehicles.", "snapshot": {"id": "d2895219-c48a-4dd8-90da-354e1bb4a865", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/d2895219-c48a-4dd8-90da-354e1bb4a865.png", "timestamp": "2024-02-15T20:47:43.720977+00:00"}}, {"id": "af382213-1154-4590-b8aa-40d1b08f09c3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.096225+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9.png", "timestamp": "2024-02-15T20:50:08.442644+00:00"}}, {"id": "3c4a6511-5486-4914-83b0-6aa933051f0b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.836236+00:00", "label": "easy", "label_explanation": "The road is clear, with no obstructions or traffic congestion.", "snapshot": {"id": "b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9.png", "timestamp": "2024-02-15T20:50:08.442644+00:00"}}, {"id": "7fcef0f1-3e85-452e-8316-f7622c4ea4fc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:18.920611+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9.png", "timestamp": "2024-02-15T20:50:08.442644+00:00"}}, {"id": "eae122bf-192a-42e8-ac1f-086fe48e208d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.644870+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9.png", "timestamp": "2024-02-15T20:50:08.442644+00:00"}}, {"id": "98844f23-b1e0-4a06-a2ab-daa942fa3265", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.169245+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with a white car in the foreground. There are buildings and trees in the background, and the weather appears to be overcast.", "snapshot": {"id": "b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9.png", "timestamp": "2024-02-15T20:50:08.442644+00:00"}}, {"id": "6cef30d1-4f5a-44af-bc6b-71fb7b04fdec", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.404207+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/b4fd30ef-07b6-4e6b-8f6d-943fb1d654f9.png", "timestamp": "2024-02-15T20:50:08.442644+00:00"}}, {"id": "56b2efac-17d9-4606-b258-1af2ed1a1578", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.188089+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "186931c9-88ab-44f9-962f-db674dc76890", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/186931c9-88ab-44f9-962f-db674dc76890.png", "timestamp": "2024-02-15T20:52:31.295119+00:00"}}, {"id": "63dbd48a-9bd2-42ce-8734-0c6b2b636e5d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.907897+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "186931c9-88ab-44f9-962f-db674dc76890", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/186931c9-88ab-44f9-962f-db674dc76890.png", "timestamp": "2024-02-15T20:52:31.295119+00:00"}}, {"id": "dd250e85-d8d5-4981-a844-ea5337a62117", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.404863+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free passage of vehicles and pedestrians.", "snapshot": {"id": "186931c9-88ab-44f9-962f-db674dc76890", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/186931c9-88ab-44f9-962f-db674dc76890.png", "timestamp": "2024-02-15T20:52:31.295119+00:00"}}, {"id": "54558092-f92b-494b-a640-67b1d3164699", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.102656+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "186931c9-88ab-44f9-962f-db674dc76890", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/186931c9-88ab-44f9-962f-db674dc76890.png", "timestamp": "2024-02-15T20:52:31.295119+00:00"}}, {"id": "ade024b4-2a9b-4da3-b3e6-6d6571d05972", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.700628+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "186931c9-88ab-44f9-962f-db674dc76890", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/186931c9-88ab-44f9-962f-db674dc76890.png", "timestamp": "2024-02-15T20:52:31.295119+00:00"}}, {"id": "0c35c227-326d-40f7-96a5-63d3af10bb61", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.470143+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and people in the background. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "186931c9-88ab-44f9-962f-db674dc76890", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/186931c9-88ab-44f9-962f-db674dc76890.png", "timestamp": "2024-02-15T20:52:31.295119+00:00"}}, {"id": "d03698f6-80d4-4e03-b782-87f2fe008026", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.366009+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "00ab6599-8c4e-4520-905f-a48c22f9da9c", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/00ab6599-8c4e-4520-905f-a48c22f9da9c.png", "timestamp": "2024-02-15T20:54:58.703614+00:00"}}, {"id": "ae625f59-5210-4fe5-9150-a8814a2bc568", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.664159+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free movement of traffic.", "snapshot": {"id": "00ab6599-8c4e-4520-905f-a48c22f9da9c", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/00ab6599-8c4e-4520-905f-a48c22f9da9c.png", "timestamp": "2024-02-15T20:54:58.703614+00:00"}}, {"id": "12870d4f-9b51-4d5c-8515-214a8b9e58d5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.456492+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "00ab6599-8c4e-4520-905f-a48c22f9da9c", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/00ab6599-8c4e-4520-905f-a48c22f9da9c.png", "timestamp": "2024-02-15T20:54:58.703614+00:00"}}, {"id": "ccf99624-ed56-41d6-8f74-ffe41b1cb56f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.962369+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "00ab6599-8c4e-4520-905f-a48c22f9da9c", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/00ab6599-8c4e-4520-905f-a48c22f9da9c.png", "timestamp": "2024-02-15T20:54:58.703614+00:00"}}, {"id": "418b6443-1114-4cb0-a194-1e7ac16895ad", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.578268+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, including cars and a motorcycle. The road is wet from recent rain, but there are no significant obstructions or hazards visible.", "snapshot": {"id": "00ab6599-8c4e-4520-905f-a48c22f9da9c", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/00ab6599-8c4e-4520-905f-a48c22f9da9c.png", "timestamp": "2024-02-15T20:54:58.703614+00:00"}}, {"id": "cc7b2b9c-c1d2-4766-9f16-8da85adfd0b6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.165397+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "00ab6599-8c4e-4520-905f-a48c22f9da9c", "camera_id": "001500", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001500/00ab6599-8c4e-4520-905f-a48c22f9da9c.png", "timestamp": "2024-02-15T20:54:58.703614+00:00"}}]}, {"id": "001482", "name": "AV. PRES.VARGAS X P\u00c7A. DA REP\u00daBLICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9048359, "longitude": -43.19033958, "objects": ["image_corrupted", "rain", "water_level", "traffic", "image_description", "road_blockade"], "identifications": [{"id": "281b978a-bc27-4f44-8699-d282ebf7d911", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.149204+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move without any significant delays.", "snapshot": {"id": "6b0aa36f-f39b-45c6-b378-135bb0ab5bf6", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6b0aa36f-f39b-45c6-b378-135bb0ab5bf6.png", "timestamp": "2024-02-15T20:30:30.988461+00:00"}}, {"id": "314629c0-655f-4bc4-b296-9e5ec29dcff0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.416129+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy with some light rain. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also crossing the intersection. The road surface is wet, and there are some small puddles of water.", "snapshot": {"id": "6b0aa36f-f39b-45c6-b378-135bb0ab5bf6", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6b0aa36f-f39b-45c6-b378-135bb0ab5bf6.png", "timestamp": "2024-02-15T20:30:30.988461+00:00"}}, {"id": "63b97546-636d-48d3-bee7-f7edef05003e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.064395+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6b0aa36f-f39b-45c6-b378-135bb0ab5bf6", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6b0aa36f-f39b-45c6-b378-135bb0ab5bf6.png", "timestamp": "2024-02-15T20:30:30.988461+00:00"}}, {"id": "b6f4c4d5-eaef-4ece-9376-a621ad719580", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.473618+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable in all directions.", "snapshot": {"id": "6b0aa36f-f39b-45c6-b378-135bb0ab5bf6", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6b0aa36f-f39b-45c6-b378-135bb0ab5bf6.png", "timestamp": "2024-02-15T20:30:30.988461+00:00"}}, {"id": "53ac250c-2a2b-4046-b0ef-cb42934bdf35", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.911170+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "6b0aa36f-f39b-45c6-b378-135bb0ab5bf6", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6b0aa36f-f39b-45c6-b378-135bb0ab5bf6.png", "timestamp": "2024-02-15T20:30:30.988461+00:00"}}, {"id": "83b516e4-8790-49cb-bcd4-5264f395f030", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.656465+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles of water. It is also lightly raining.", "snapshot": {"id": "6b0aa36f-f39b-45c6-b378-135bb0ab5bf6", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6b0aa36f-f39b-45c6-b378-135bb0ab5bf6.png", "timestamp": "2024-02-15T20:30:30.988461+00:00"}}, {"id": "e060d2a9-2ba7-431b-ab6a-682f86041058", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.811631+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving slowly due to the wet road conditions.", "snapshot": {"id": "0d9e54d7-df07-4f98-801d-edfa9ba6ee93", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/0d9e54d7-df07-4f98-801d-edfa9ba6ee93.png", "timestamp": "2024-02-15T20:33:08.793853+00:00"}}, {"id": "5d663949-8343-425f-8538-c072cebaaee0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.463793+00:00", "label": "low", "label_explanation": "There are some small puddles of water on the road, but the road is still passable for vehicles.", "snapshot": {"id": "0d9e54d7-df07-4f98-801d-edfa9ba6ee93", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/0d9e54d7-df07-4f98-801d-edfa9ba6ee93.png", "timestamp": "2024-02-15T20:33:08.793853+00:00"}}, {"id": "5d39a56c-04ab-4dca-addf-f4aa98e3374c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:24.191294+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "0d9e54d7-df07-4f98-801d-edfa9ba6ee93", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/0d9e54d7-df07-4f98-801d-edfa9ba6ee93.png", "timestamp": "2024-02-15T20:33:08.793853+00:00"}}, {"id": "dd44d635-7ee9-4e94-9a4e-013e25364a94", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.814624+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime and the weather is rainy. There are several vehicles on the road, including buses, cars, and bicycles. The road is wet and there are some small puddles of water. The surrounding buildings are tall and there are trees on either side of the road.", "snapshot": {"id": "0d9e54d7-df07-4f98-801d-edfa9ba6ee93", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/0d9e54d7-df07-4f98-801d-edfa9ba6ee93.png", "timestamp": "2024-02-15T20:33:08.793853+00:00"}}, {"id": "abc991e6-2997-45ae-b87a-bad77881f863", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.438955+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0d9e54d7-df07-4f98-801d-edfa9ba6ee93", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/0d9e54d7-df07-4f98-801d-edfa9ba6ee93.png", "timestamp": "2024-02-15T20:33:08.793853+00:00"}}, {"id": "5b417533-b076-47fc-a6fd-b4b213b50c34", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.152791+00:00", "label": "true", "label_explanation": "The road is wet and there are some small puddles of water. It is actively raining.", "snapshot": {"id": "0d9e54d7-df07-4f98-801d-edfa9ba6ee93", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/0d9e54d7-df07-4f98-801d-edfa9ba6ee93.png", "timestamp": "2024-02-15T20:33:08.793853+00:00"}}, {"id": "6babe98f-2882-4db6-8081-f67c60f6209d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.310266+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "fa50cdf9-e35d-4fe7-a424-f9144d4cfcab", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/fa50cdf9-e35d-4fe7-a424-f9144d4cfcab.png", "timestamp": "2024-02-15T20:43:00.006553+00:00"}}, {"id": "99b3a729-305d-44fb-9792-04c5e54c7ecf", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.937268+00:00", "label": "low", "label_explanation": "There is no visible water on the road surface.", "snapshot": {"id": "fa50cdf9-e35d-4fe7-a424-f9144d4cfcab", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/fa50cdf9-e35d-4fe7-a424-f9144d4cfcab.png", "timestamp": "2024-02-15T20:43:00.006553+00:00"}}, {"id": "efec992d-4406-4971-91c6-8e6b4b0d2a02", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.730584+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "fa50cdf9-e35d-4fe7-a424-f9144d4cfcab", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/fa50cdf9-e35d-4fe7-a424-f9144d4cfcab.png", "timestamp": "2024-02-15T20:43:00.006553+00:00"}}, {"id": "20ff3819-f608-421d-8ff4-cc73cd983dea", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.469479+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear, with no visible signs of rain or flooding. The road surface is dry and in good condition, with no visible cracks or potholes. There are several vehicles on the road, including cars, buses, and bicycles. The vehicles are moving smoothly and there are no visible signs of congestion or accidents. The road is lined with trees and buildings, and there are several pedestrians walking on the sidewalks.", "snapshot": {"id": "fa50cdf9-e35d-4fe7-a424-f9144d4cfcab", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/fa50cdf9-e35d-4fe7-a424-f9144d4cfcab.png", "timestamp": "2024-02-15T20:43:00.006553+00:00"}}, {"id": "ffb8efdb-f47f-42f1-a1f7-7381586cac51", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.190712+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fa50cdf9-e35d-4fe7-a424-f9144d4cfcab", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/fa50cdf9-e35d-4fe7-a424-f9144d4cfcab.png", "timestamp": "2024-02-15T20:43:00.006553+00:00"}}, {"id": "9fe729e4-b15c-42e7-b523-1f8aebe065ed", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.166068+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly and no visible signs of congestion or accidents.", "snapshot": {"id": "fa50cdf9-e35d-4fe7-a424-f9144d4cfcab", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/fa50cdf9-e35d-4fe7-a424-f9144d4cfcab.png", "timestamp": "2024-02-15T20:43:00.006553+00:00"}}, {"id": "0517275a-6f98-46b6-ae0a-70c04ce936c6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.899099+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a8a4d38d-75b1-4497-b52a-ed75e11507c8", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/a8a4d38d-75b1-4497-b52a-ed75e11507c8.png", "timestamp": "2024-02-15T20:35:34.721439+00:00"}}, {"id": "9252d0e6-7cc9-4d7d-bb27-ec1b13a4b942", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:50.007705+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "a8a4d38d-75b1-4497-b52a-ed75e11507c8", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/a8a4d38d-75b1-4497-b52a-ed75e11507c8.png", "timestamp": "2024-02-15T20:35:34.721439+00:00"}}, {"id": "fd8f2d92-de69-44df-9757-05acfc138a7c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.787539+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "a8a4d38d-75b1-4497-b52a-ed75e11507c8", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/a8a4d38d-75b1-4497-b52a-ed75e11507c8.png", "timestamp": "2024-02-15T20:35:34.721439+00:00"}}, {"id": "aac529f5-ddda-4112-92ed-4a1d3aaa190a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.402001+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "a8a4d38d-75b1-4497-b52a-ed75e11507c8", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/a8a4d38d-75b1-4497-b52a-ed75e11507c8.png", "timestamp": "2024-02-15T20:35:34.721439+00:00"}}, {"id": "06ecb0ba-62e1-443a-8891-3aaf774ec2d6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.132517+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. There are several vehicles on the road, including buses and cars. The road is wet from recent rain, but there are no large puddles or standing water. The sidewalks are lined with trees and buildings.", "snapshot": {"id": "a8a4d38d-75b1-4497-b52a-ed75e11507c8", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/a8a4d38d-75b1-4497-b52a-ed75e11507c8.png", "timestamp": "2024-02-15T20:35:34.721439+00:00"}}, {"id": "3c8686b5-d79a-4c8e-bbad-b92081e269eb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.615009+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "a8a4d38d-75b1-4497-b52a-ed75e11507c8", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/a8a4d38d-75b1-4497-b52a-ed75e11507c8.png", "timestamp": "2024-02-15T20:35:34.721439+00:00"}}, {"id": "73b160af-f57d-4443-a4be-b3c22d4a4c5e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.721090+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "2bd9bf9e-dd34-4e57-9ecc-66be204a524b", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/2bd9bf9e-dd34-4e57-9ecc-66be204a524b.png", "timestamp": "2024-02-15T20:38:08.553387+00:00"}}, {"id": "dd573157-2d3c-4b31-a422-4b953ded21fb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.259180+00:00", "label": "low", "label_explanation": "There are some puddles on the ground, but the road is not completely submerged in water.", "snapshot": {"id": "2bd9bf9e-dd34-4e57-9ecc-66be204a524b", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/2bd9bf9e-dd34-4e57-9ecc-66be204a524b.png", "timestamp": "2024-02-15T20:38:08.553387+00:00"}}, {"id": "f3451b9b-ec0b-462d-b010-a2f194212426", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.009998+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are some puddles on the ground.", "snapshot": {"id": "2bd9bf9e-dd34-4e57-9ecc-66be204a524b", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/2bd9bf9e-dd34-4e57-9ecc-66be204a524b.png", "timestamp": "2024-02-15T20:38:08.553387+00:00"}}, {"id": "96eef6ce-0a07-48e9-b301-36dcc67093b1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.803439+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including buses and cars. The road is wet from recent rain, and there are some puddles on the ground. There are trees and buildings in the background.", "snapshot": {"id": "2bd9bf9e-dd34-4e57-9ecc-66be204a524b", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/2bd9bf9e-dd34-4e57-9ecc-66be204a524b.png", "timestamp": "2024-02-15T20:38:08.553387+00:00"}}, {"id": "aacc3903-e9c7-40fb-aae1-87b688981ab9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.596518+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2bd9bf9e-dd34-4e57-9ecc-66be204a524b", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/2bd9bf9e-dd34-4e57-9ecc-66be204a524b.png", "timestamp": "2024-02-15T20:38:08.553387+00:00"}}, {"id": "1268cd10-2958-43ba-84ae-9223f6a17f1f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.503141+00:00", "label": "easy", "label_explanation": "There are several vehicles on the road, but traffic appears to be flowing smoothly.", "snapshot": {"id": "2bd9bf9e-dd34-4e57-9ecc-66be204a524b", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/2bd9bf9e-dd34-4e57-9ecc-66be204a524b.png", "timestamp": "2024-02-15T20:38:08.553387+00:00"}}, {"id": "69ac1480-7e90-4fbf-b07b-1f857d86c0c4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.550967+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and free of any obstructions, allowing for smooth traffic flow.", "snapshot": {"id": "1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66.png", "timestamp": "2024-02-15T20:40:36.355820+00:00"}}, {"id": "4ad9a344-d32a-4daf-bced-98511b59cb39", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.321133+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a few vehicles visible in the image, but they are all moving at a steady pace. There are no major traffic jams or congestion.", "snapshot": {"id": "1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66.png", "timestamp": "2024-02-15T20:40:36.355820+00:00"}}, {"id": "20e47f6b-10a9-4587-9ea2-f478f20d62ce", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.831257+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation or puddles.", "snapshot": {"id": "1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66.png", "timestamp": "2024-02-15T20:40:36.355820+00:00"}}, {"id": "3d40d8b4-30d9-4e8e-80e9-ce3ffa48faef", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.341891+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66.png", "timestamp": "2024-02-15T20:40:36.355820+00:00"}}, {"id": "f4526f34-6198-49be-9d07-09adda39700b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.094718+00:00", "label": "low", "label_explanation": "The water level on the road is low. There is no visible water on the road surface, and the road is completely dry.", "snapshot": {"id": "1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66.png", "timestamp": "2024-02-15T20:40:36.355820+00:00"}}, {"id": "b1dc89fc-b24f-47cf-be9e-ce41906585ba", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.612575+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, four-lane road with a central median and a bus lane on the left side. The road is well-paved and has clear lane markings. There are several trees on either side of the road, and buildings and other structures can be seen in the background. The weather appears to be clear, with no visible rain or other adverse weather conditions.", "snapshot": {"id": "1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1a5f90d4-5b0b-4ccc-8ff5-c2994a6b9e66.png", "timestamp": "2024-02-15T20:40:36.355820+00:00"}}, {"id": "a39f5f2c-0e14-4f17-b743-50dda2e7a14f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.824130+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1398eb3c-ba1f-4445-9e41-5bda6de72f21", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1398eb3c-ba1f-4445-9e41-5bda6de72f21.png", "timestamp": "2024-02-15T20:45:22.449463+00:00"}}, {"id": "b136d861-eb08-409f-9d97-dbaaf95af65a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.047871+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy with some light reflecting on the road surface. There are several vehicles on the road, including cars, buses, and motorcycles. The road is divided into multiple lanes and there are trees and buildings in the background.", "snapshot": {"id": "1398eb3c-ba1f-4445-9e41-5bda6de72f21", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1398eb3c-ba1f-4445-9e41-5bda6de72f21.png", "timestamp": "2024-02-15T20:45:22.449463+00:00"}}, {"id": "f3b09bc5-e197-464b-a5a1-67009b809871", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.000326+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic in all directions.", "snapshot": {"id": "1398eb3c-ba1f-4445-9e41-5bda6de72f21", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1398eb3c-ba1f-4445-9e41-5bda6de72f21.png", "timestamp": "2024-02-15T20:45:22.449463+00:00"}}, {"id": "bbe6cfc3-778e-47cf-947a-74bf7a9fff34", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.740383+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate, with vehicles moving at a steady pace. There are no major delays or obstructions visible in the image.", "snapshot": {"id": "1398eb3c-ba1f-4445-9e41-5bda6de72f21", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1398eb3c-ba1f-4445-9e41-5bda6de72f21.png", "timestamp": "2024-02-15T20:45:22.449463+00:00"}}, {"id": "98f78616-633b-4c60-9315-188e5900fcd5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.511448+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles visible. The majority of the road surface is dry and there are no signs of flooding.", "snapshot": {"id": "1398eb3c-ba1f-4445-9e41-5bda6de72f21", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1398eb3c-ba1f-4445-9e41-5bda6de72f21.png", "timestamp": "2024-02-15T20:45:22.449463+00:00"}}, {"id": "8d7d9da3-cd54-4e44-8e2a-3b3bbf7a6371", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.308486+00:00", "label": "true", "label_explanation": "There is some water visible on the road surface, indicating that it has been raining recently. However, the water is not deep and does not appear to be causing any significant traffic disruptions.", "snapshot": {"id": "1398eb3c-ba1f-4445-9e41-5bda6de72f21", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/1398eb3c-ba1f-4445-9e41-5bda6de72f21.png", "timestamp": "2024-02-15T20:45:22.449463+00:00"}}, {"id": "77c16392-89d8-409a-b3c0-c6e248c7a3c6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.722601+00:00", "label": "free", "label_explanation": "There are no road blockades. All lanes are open to traffic.", "snapshot": {"id": "6a29e067-0b6b-42a2-9ab1-05448abe0697", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6a29e067-0b6b-42a2-9ab1-05448abe0697.png", "timestamp": "2024-02-15T20:47:47.098855+00:00"}}, {"id": "e7b8f974-4a49-4330-84e3-b65e9a16776c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.982416+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles of water. This indicates that it has been raining recently.", "snapshot": {"id": "6a29e067-0b6b-42a2-9ab1-05448abe0697", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6a29e067-0b6b-42a2-9ab1-05448abe0697.png", "timestamp": "2024-02-15T20:47:47.098855+00:00"}}, {"id": "e2c4bac8-0bf3-4e06-bdcf-e4157d8a80c4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.548520+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and bicycles. Pedestrians are also crossing the intersection. The road surface is wet, and there are some small puddles of water.", "snapshot": {"id": "6a29e067-0b6b-42a2-9ab1-05448abe0697", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6a29e067-0b6b-42a2-9ab1-05448abe0697.png", "timestamp": "2024-02-15T20:47:47.098855+00:00"}}, {"id": "c998c937-e30f-4787-94a2-abd8621ef19a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.450224+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or congestion.", "snapshot": {"id": "6a29e067-0b6b-42a2-9ab1-05448abe0697", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6a29e067-0b6b-42a2-9ab1-05448abe0697.png", "timestamp": "2024-02-15T20:47:47.098855+00:00"}}, {"id": "36ca3856-48b8-4261-9eaa-20cfd2cbd909", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.245563+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "6a29e067-0b6b-42a2-9ab1-05448abe0697", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6a29e067-0b6b-42a2-9ab1-05448abe0697.png", "timestamp": "2024-02-15T20:47:47.098855+00:00"}}, {"id": "5af560d0-cc08-4dac-99e8-822821f2f715", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.345279+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6a29e067-0b6b-42a2-9ab1-05448abe0697", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/6a29e067-0b6b-42a2-9ab1-05448abe0697.png", "timestamp": "2024-02-15T20:47:47.098855+00:00"}}, {"id": "8b8989ee-7d64-4c7a-a9b4-6b2c2706e9b1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.508187+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "44806f46-2322-4325-b78e-a934a49e9fef", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/44806f46-2322-4325-b78e-a934a49e9fef.png", "timestamp": "2024-02-15T20:52:35.512502+00:00"}}, {"id": "784c6ffe-349d-4451-9cfa-94369da5e98f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.579135+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain. The road surface is wet but there are no significant puddles or standing water. There are several vehicles on the road, including cars, buses, and bicycles. The road is lined with trees and buildings.", "snapshot": {"id": "44806f46-2322-4325-b78e-a934a49e9fef", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/44806f46-2322-4325-b78e-a934a49e9fef.png", "timestamp": "2024-02-15T20:52:35.512502+00:00"}}, {"id": "8225fbc4-bfa6-440e-a0a9-6f80694947ec", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.826569+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy and there is no standing water.", "snapshot": {"id": "44806f46-2322-4325-b78e-a934a49e9fef", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/44806f46-2322-4325-b78e-a934a49e9fef.png", "timestamp": "2024-02-15T20:52:35.512502+00:00"}}, {"id": "24ee2840-46e7-4942-9a04-e96db36ca6e2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.301668+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "44806f46-2322-4325-b78e-a934a49e9fef", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/44806f46-2322-4325-b78e-a934a49e9fef.png", "timestamp": "2024-02-15T20:52:35.512502+00:00"}}, {"id": "d5fe8cba-1137-44d2-8fcc-63219192357f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.305500+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a mix of cars, buses, and bicycles. The vehicles are moving at a steady pace and there are no major delays.", "snapshot": {"id": "44806f46-2322-4325-b78e-a934a49e9fef", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/44806f46-2322-4325-b78e-a934a49e9fef.png", "timestamp": "2024-02-15T20:52:35.512502+00:00"}}, {"id": "60ddea96-7741-4456-b737-dc5e7ba0bee4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.070720+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet but the water is not deep enough to cause any problems for vehicles or pedestrians.", "snapshot": {"id": "44806f46-2322-4325-b78e-a934a49e9fef", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/44806f46-2322-4325-b78e-a934a49e9fef.png", "timestamp": "2024-02-15T20:52:35.512502+00:00"}}, {"id": "a9d6669c-1711-40bb-abd1-4533aa785670", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.843341+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "3c2542c4-0db0-4233-a07b-32fb9611e92a", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/3c2542c4-0db0-4233-a07b-32fb9611e92a.png", "timestamp": "2024-02-15T20:50:10.057414+00:00"}}, {"id": "4c07c655-834b-43e1-8896-c03598beb7cb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.353701+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "3c2542c4-0db0-4233-a07b-32fb9611e92a", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/3c2542c4-0db0-4233-a07b-32fb9611e92a.png", "timestamp": "2024-02-15T20:50:10.057414+00:00"}}, {"id": "a78722fa-0155-4f3a-92e8-da4cd5f8acd1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.558947+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "3c2542c4-0db0-4233-a07b-32fb9611e92a", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/3c2542c4-0db0-4233-a07b-32fb9611e92a.png", "timestamp": "2024-02-15T20:50:10.057414+00:00"}}, {"id": "8ff4b3d3-e192-48f1-a532-b98ce204f654", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.063524+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "3c2542c4-0db0-4233-a07b-32fb9611e92a", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/3c2542c4-0db0-4233-a07b-32fb9611e92a.png", "timestamp": "2024-02-15T20:50:10.057414+00:00"}}, {"id": "6b862ea1-1cf8-4117-96df-500b561abdbc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.665606+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3c2542c4-0db0-4233-a07b-32fb9611e92a", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/3c2542c4-0db0-4233-a07b-32fb9611e92a.png", "timestamp": "2024-02-15T20:50:10.057414+00:00"}}, {"id": "5201bd9e-a3b0-4f3e-8236-c85a9079e2b6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.856585+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "3c2542c4-0db0-4233-a07b-32fb9611e92a", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/3c2542c4-0db0-4233-a07b-32fb9611e92a.png", "timestamp": "2024-02-15T20:50:10.057414+00:00"}}, {"id": "83531fb6-2b95-4ac0-b029-9cabaf6781b3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.303267+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. All lanes are open to traffic.", "snapshot": {"id": "771c8cf0-6075-45e6-b2a3-87ae4e10d76d", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/771c8cf0-6075-45e6-b2a3-87ae4e10d76d.png", "timestamp": "2024-02-15T20:55:02.882804+00:00"}}, {"id": "46345dcf-cd22-47e9-854f-d69e896e30b2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.097215+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "771c8cf0-6075-45e6-b2a3-87ae4e10d76d", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/771c8cf0-6075-45e6-b2a3-87ae4e10d76d.png", "timestamp": "2024-02-15T20:55:02.882804+00:00"}}, {"id": "93bc72a6-5ad4-4ee2-88eb-afbb67f637bc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.203045+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "771c8cf0-6075-45e6-b2a3-87ae4e10d76d", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/771c8cf0-6075-45e6-b2a3-87ae4e10d76d.png", "timestamp": "2024-02-15T20:55:02.882804+00:00"}}, {"id": "7992c42a-df01-49dc-91b6-afdeaf7c4b56", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.426656+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, crossing the intersection. The road is marked with yellow lines indicating lanes and crosswalks.", "snapshot": {"id": "771c8cf0-6075-45e6-b2a3-87ae4e10d76d", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/771c8cf0-6075-45e6-b2a3-87ae4e10d76d.png", "timestamp": "2024-02-15T20:55:02.882804+00:00"}}, {"id": "c7b34e7a-378d-4adf-bac9-a1714009f1a1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.893511+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "771c8cf0-6075-45e6-b2a3-87ae4e10d76d", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/771c8cf0-6075-45e6-b2a3-87ae4e10d76d.png", "timestamp": "2024-02-15T20:55:02.882804+00:00"}}, {"id": "ba6ffc18-15cd-42df-98da-dd05543e5081", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.678335+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently raining.", "snapshot": {"id": "771c8cf0-6075-45e6-b2a3-87ae4e10d76d", "camera_id": "001482", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001482/771c8cf0-6075-45e6-b2a3-87ae4e10d76d.png", "timestamp": "2024-02-15T20:55:02.882804+00:00"}}]}, {"id": "001594", "name": "AV. SALVADOR DE S\u00c1, ALTURA DO BPCHQ - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911676, "longitude": -43.195227, "objects": ["image_corrupted", "water_level", "image_description", "traffic", "rain", "road_blockade"], "identifications": [{"id": "2dc09245-4a07-47d5-9d9c-03ec71b8f471", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.892326+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the water is not deep and does not appear to be causing any significant traffic disruptions.", "snapshot": {"id": "bbbf4215-1105-4613-b927-6762fef8f7b5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/bbbf4215-1105-4613-b927-6762fef8f7b5.png", "timestamp": "2024-02-15T20:33:05.540283+00:00"}}, {"id": "4ea874a2-346b-49ae-bcf5-749301c5865b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.812044+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move freely without any significant delays.", "snapshot": {"id": "bbbf4215-1105-4613-b927-6762fef8f7b5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/bbbf4215-1105-4613-b927-6762fef8f7b5.png", "timestamp": "2024-02-15T20:33:05.540283+00:00"}}, {"id": "dd36e02d-5165-44c5-a20b-f8ccaecd44d5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.067491+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "bbbf4215-1105-4613-b927-6762fef8f7b5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/bbbf4215-1105-4613-b927-6762fef8f7b5.png", "timestamp": "2024-02-15T20:33:05.540283+00:00"}}, {"id": "833b049c-92ea-481e-97a1-bde02910d28d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.442304+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no significant puddles or standing water, and the road surface is still visible.", "snapshot": {"id": "bbbf4215-1105-4613-b927-6762fef8f7b5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/bbbf4215-1105-4613-b927-6762fef8f7b5.png", "timestamp": "2024-02-15T20:33:05.540283+00:00"}}, {"id": "1b41b80e-84a6-4bee-b7d5-a09944aeb8cb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.014627+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bbbf4215-1105-4613-b927-6762fef8f7b5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/bbbf4215-1105-4613-b927-6762fef8f7b5.png", "timestamp": "2024-02-15T20:33:05.540283+00:00"}}, {"id": "57d0bcdd-c581-4c32-bd40-10125fa9ce2a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.563146+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are trees on either side of the road and buildings in the background.", "snapshot": {"id": "bbbf4215-1105-4613-b927-6762fef8f7b5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/bbbf4215-1105-4613-b927-6762fef8f7b5.png", "timestamp": "2024-02-15T20:33:05.540283+00:00"}}, {"id": "9d942811-7676-47f2-a44d-955eb59e52dd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.402243+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or obstacles.", "snapshot": {"id": "a792c253-a6e8-4c10-a3b3-639928f26fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/a792c253-a6e8-4c10-a3b3-639928f26fce.png", "timestamp": "2024-02-15T20:35:33.183952+00:00"}}, {"id": "5d7b8716-00ba-49f3-a36e-dd5551e1aa4d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.277789+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not impede traffic flow significantly.", "snapshot": {"id": "a792c253-a6e8-4c10-a3b3-639928f26fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/a792c253-a6e8-4c10-a3b3-639928f26fce.png", "timestamp": "2024-02-15T20:35:33.183952+00:00"}}, {"id": "ad3e0378-3327-490f-98aa-0d580cf3000d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.912984+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a bus, a motorcycle, and a few trees on either side of the road.", "snapshot": {"id": "a792c253-a6e8-4c10-a3b3-639928f26fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/a792c253-a6e8-4c10-a3b3-639928f26fce.png", "timestamp": "2024-02-15T20:35:33.183952+00:00"}}, {"id": "446d93cc-6225-4368-82ff-cd60ce8eb05c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.082851+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "a792c253-a6e8-4c10-a3b3-639928f26fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/a792c253-a6e8-4c10-a3b3-639928f26fce.png", "timestamp": "2024-02-15T20:35:33.183952+00:00"}}, {"id": "78371c46-f120-4730-a5b1-5fdf28a67a52", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.719773+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a792c253-a6e8-4c10-a3b3-639928f26fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/a792c253-a6e8-4c10-a3b3-639928f26fce.png", "timestamp": "2024-02-15T20:35:33.183952+00:00"}}, {"id": "44aa3b0a-70a8-4165-aab1-041cbfdede5a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.607226+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "a792c253-a6e8-4c10-a3b3-639928f26fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/a792c253-a6e8-4c10-a3b3-639928f26fce.png", "timestamp": "2024-02-15T20:35:33.183952+00:00"}}, {"id": "6f24af40-0606-451e-9207-6aebc38f6d01", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.228077+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear for\u901a\u884c.", "snapshot": {"id": "1b658738-593f-4cdf-ac92-c2f86f50320c", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/1b658738-593f-4cdf-ac92-c2f86f50320c.png", "timestamp": "2024-02-15T20:38:04.449258+00:00"}}, {"id": "7dd5f2df-0087-44c4-a215-38c566abba65", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.809158+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is dry.", "snapshot": {"id": "1b658738-593f-4cdf-ac92-c2f86f50320c", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/1b658738-593f-4cdf-ac92-c2f86f50320c.png", "timestamp": "2024-02-15T20:38:04.449258+00:00"}}, {"id": "887e63bb-19ea-4053-8018-ce616f91eb07", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.116023+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1b658738-593f-4cdf-ac92-c2f86f50320c", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/1b658738-593f-4cdf-ac92-c2f86f50320c.png", "timestamp": "2024-02-15T20:38:04.449258+00:00"}}, {"id": "0e3ff16b-a04f-47b0-9e76-629b3f042621", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.017585+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions. Traffic can flow smoothly.", "snapshot": {"id": "1b658738-593f-4cdf-ac92-c2f86f50320c", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/1b658738-593f-4cdf-ac92-c2f86f50320c.png", "timestamp": "2024-02-15T20:38:04.449258+00:00"}}, {"id": "7ca2271f-62ea-4886-aab4-686c796be8a2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.571922+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface appears dry.", "snapshot": {"id": "1b658738-593f-4cdf-ac92-c2f86f50320c", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/1b658738-593f-4cdf-ac92-c2f86f50320c.png", "timestamp": "2024-02-15T20:38:04.449258+00:00"}}, {"id": "f2a1f012-0469-4a0d-95c0-49b280d05f81", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.298517+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a tree on the left side of the road. The road is partially visible, with a portion of it obscured by the tree.", "snapshot": {"id": "1b658738-593f-4cdf-ac92-c2f86f50320c", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/1b658738-593f-4cdf-ac92-c2f86f50320c.png", "timestamp": "2024-02-15T20:38:04.449258+00:00"}}, {"id": "49eef131-25be-4291-8f98-8214de798214", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.086519+00:00", "label": "moderate", "label_explanation": "The yellow taxi and a motorcycle are navigating the road cautiously, suggesting that the wet conditions may be causing some hindrance to traffic flow.", "snapshot": {"id": "4cf74aff-f224-4a22-982f-0454c1c18fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/4cf74aff-f224-4a22-982f-0454c1c18fce.png", "timestamp": "2024-02-15T20:45:20.419604+00:00"}}, {"id": "ddaf87fb-44f2-4ec8-afc1-8068d999524d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.293746+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing traffic to move without hindrance.", "snapshot": {"id": "4cf74aff-f224-4a22-982f-0454c1c18fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/4cf74aff-f224-4a22-982f-0454c1c18fce.png", "timestamp": "2024-02-15T20:45:20.419604+00:00"}}, {"id": "c89cc1e5-8bd4-40af-9750-18a6df076855", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.588366+00:00", "label": "true", "label_explanation": "The road surface is visibly wet, indicating the presence of rain.", "snapshot": {"id": "4cf74aff-f224-4a22-982f-0454c1c18fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/4cf74aff-f224-4a22-982f-0454c1c18fce.png", "timestamp": "2024-02-15T20:45:20.419604+00:00"}}, {"id": "5474575f-63da-4b0f-9d1a-f61ab5019e41", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.353540+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a yellow taxi driving on the wet road. Trees and buildings are present on either side of the road, and the sky appears overcast.", "snapshot": {"id": "4cf74aff-f224-4a22-982f-0454c1c18fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/4cf74aff-f224-4a22-982f-0454c1c18fce.png", "timestamp": "2024-02-15T20:45:20.419604+00:00"}}, {"id": "68943e54-ac28-4405-a94e-05c54c9c25ce", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.128556+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4cf74aff-f224-4a22-982f-0454c1c18fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/4cf74aff-f224-4a22-982f-0454c1c18fce.png", "timestamp": "2024-02-15T20:45:20.419604+00:00"}}, {"id": "892aeac5-1905-4d0a-9672-2b906dda6a6f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.889970+00:00", "label": "low", "label_explanation": "While the road is wet, there are no significant puddles or water accumulation observed.", "snapshot": {"id": "4cf74aff-f224-4a22-982f-0454c1c18fce", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/4cf74aff-f224-4a22-982f-0454c1c18fce.png", "timestamp": "2024-02-15T20:45:20.419604+00:00"}}, {"id": "766d8cdc-fb23-4ed2-a175-7a68360b29c6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.983658+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy, as there is no standing water on the road.", "snapshot": {"id": "c659e0c3-481e-4b1d-b5c0-cedc12ae8da3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/c659e0c3-481e-4b1d-b5c0-cedc12ae8da3.png", "timestamp": "2024-02-15T20:40:36.057213+00:00"}}, {"id": "bee70055-4c30-49de-a0e1-6caeb1850dec", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.630810+00:00", "label": "null", "label_explanation": "The image captures an urban road scene. It is daytime, and the weather appears to be overcast. The road is relatively wide, with a single lane in each direction. There are several trees on either side of the road, and buildings can be seen in the background.", "snapshot": {"id": "c659e0c3-481e-4b1d-b5c0-cedc12ae8da3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/c659e0c3-481e-4b1d-b5c0-cedc12ae8da3.png", "timestamp": "2024-02-15T20:40:36.057213+00:00"}}, {"id": "e5f19beb-aa41-4fa6-94c6-6370f2f5f095", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.453006+00:00", "label": "easy", "label_explanation": "There is very little traffic on the road, with only a few cars visible in the distance. The traffic appears to be flowing smoothly, with no congestion or delays.", "snapshot": {"id": "c659e0c3-481e-4b1d-b5c0-cedc12ae8da3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/c659e0c3-481e-4b1d-b5c0-cedc12ae8da3.png", "timestamp": "2024-02-15T20:40:36.057213+00:00"}}, {"id": "144d61ba-8450-466f-a0be-2ae60a47c002", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.626161+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and the entire road surface is clear for traffic.", "snapshot": {"id": "c659e0c3-481e-4b1d-b5c0-cedc12ae8da3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/c659e0c3-481e-4b1d-b5c0-cedc12ae8da3.png", "timestamp": "2024-02-15T20:40:36.057213+00:00"}}, {"id": "7512a1ce-8a4e-4977-9f40-6ed6ab6370a6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.216587+00:00", "label": "low", "label_explanation": "There is no standing water on the road, and the road surface is only wet in isolated patches. Therefore, the water level is considered to be low.", "snapshot": {"id": "c659e0c3-481e-4b1d-b5c0-cedc12ae8da3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/c659e0c3-481e-4b1d-b5c0-cedc12ae8da3.png", "timestamp": "2024-02-15T20:40:36.057213+00:00"}}, {"id": "0f3d21a9-4e26-4642-8714-3d5eecea3183", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.334730+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c659e0c3-481e-4b1d-b5c0-cedc12ae8da3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/c659e0c3-481e-4b1d-b5c0-cedc12ae8da3.png", "timestamp": "2024-02-15T20:40:36.057213+00:00"}}, {"id": "a7a82557-413d-409d-95e8-45e062202b63", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.612067+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "5af603bb-365a-4be0-9737-a1df3f41026f", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5af603bb-365a-4be0-9737-a1df3f41026f.png", "timestamp": "2024-02-15T20:42:57.911691+00:00"}}, {"id": "1ca894cb-a815-452c-ada7-22073341ae63", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.158550+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "5af603bb-365a-4be0-9737-a1df3f41026f", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5af603bb-365a-4be0-9737-a1df3f41026f.png", "timestamp": "2024-02-15T20:42:57.911691+00:00"}}, {"id": "419c5790-92e8-416f-80a0-552599e871e1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.418160+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions.", "snapshot": {"id": "5af603bb-365a-4be0-9737-a1df3f41026f", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5af603bb-365a-4be0-9737-a1df3f41026f.png", "timestamp": "2024-02-15T20:42:57.911691+00:00"}}, {"id": "04d9958b-2068-4ffa-8e43-3dae4d5838d9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.912552+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "5af603bb-365a-4be0-9737-a1df3f41026f", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5af603bb-365a-4be0-9737-a1df3f41026f.png", "timestamp": "2024-02-15T20:42:57.911691+00:00"}}, {"id": "7c662aaa-3ebb-484f-8e28-d216bd9be1e7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.735642+00:00", "label": "null", "label_explanation": "The image captures an urban road scene. It is daytime, and the weather appears to be overcast. There are several cars parked on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "5af603bb-365a-4be0-9737-a1df3f41026f", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5af603bb-365a-4be0-9737-a1df3f41026f.png", "timestamp": "2024-02-15T20:42:57.911691+00:00"}}, {"id": "e1e0c179-ba9d-4aed-8378-30685ff6d1cf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.525846+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5af603bb-365a-4be0-9737-a1df3f41026f", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5af603bb-365a-4be0-9737-a1df3f41026f.png", "timestamp": "2024-02-15T20:42:57.911691+00:00"}}, {"id": "126ae3f4-830e-4459-9e05-6c7dca6286e8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.992782+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is clear and passable.", "snapshot": {"id": "d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5.png", "timestamp": "2024-02-15T20:47:47.379452+00:00"}}, {"id": "11969f0a-6b94-4359-be86-4ab8ba3fb34b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.227009+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain has stopped and the road is not flooded.", "snapshot": {"id": "d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5.png", "timestamp": "2024-02-15T20:47:47.379452+00:00"}}, {"id": "8f4b5d05-2d7c-4849-a05e-36256df550e4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.006773+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are a few trees on either side of the road and buildings in the background.", "snapshot": {"id": "d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5.png", "timestamp": "2024-02-15T20:47:47.379452+00:00"}}, {"id": "379a141a-d63a-4efe-b52f-f387c79035ef", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.735965+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5.png", "timestamp": "2024-02-15T20:47:47.379452+00:00"}}, {"id": "54a419fc-dcb0-4513-a352-d7768fab0c18", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.718383+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with a few cars and bicycles on the road. The cars are moving slowly due to the wet road conditions.", "snapshot": {"id": "d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5.png", "timestamp": "2024-02-15T20:47:47.379452+00:00"}}, {"id": "8b6d5a06-0108-40aa-8489-d82c2eadc884", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.447895+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet but passable.", "snapshot": {"id": "d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/d6b3eff8-96e4-4438-bd6f-4854bdfdb4e5.png", "timestamp": "2024-02-15T20:47:47.379452+00:00"}}, {"id": "7de51c65-222a-445f-bc79-43af6dedbd8b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.764250+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "dc1e7163-aa9c-40e0-8589-c0c850bdfdf0", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/dc1e7163-aa9c-40e0-8589-c0c850bdfdf0.png", "timestamp": "2024-02-15T20:30:29.164710+00:00"}}, {"id": "56e6115e-6ffe-4d5f-9007-8e06e52f8d31", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.223981+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "dc1e7163-aa9c-40e0-8589-c0c850bdfdf0", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/dc1e7163-aa9c-40e0-8589-c0c850bdfdf0.png", "timestamp": "2024-02-15T20:30:29.164710+00:00"}}, {"id": "e6afd1a6-78b6-4838-b941-da5f4dbe5f63", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.065282+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not causing any significant hindrance to traffic.", "snapshot": {"id": "dc1e7163-aa9c-40e0-8589-c0c850bdfdf0", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/dc1e7163-aa9c-40e0-8589-c0c850bdfdf0.png", "timestamp": "2024-02-15T20:30:29.164710+00:00"}}, {"id": "0c6645d4-39c9-455e-8f49-31a00e1a8757", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.496191+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a yellow taxi driving on the wet road. There are trees on either side of the road, buildings in the background, and a person on a bicycle.", "snapshot": {"id": "dc1e7163-aa9c-40e0-8589-c0c850bdfdf0", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/dc1e7163-aa9c-40e0-8589-c0c850bdfdf0.png", "timestamp": "2024-02-15T20:30:29.164710+00:00"}}, {"id": "b5e1c63a-5c0c-4f2c-895e-fae50821d071", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.512180+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, and traffic is flowing smoothly.", "snapshot": {"id": "dc1e7163-aa9c-40e0-8589-c0c850bdfdf0", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/dc1e7163-aa9c-40e0-8589-c0c850bdfdf0.png", "timestamp": "2024-02-15T20:30:29.164710+00:00"}}, {"id": "d195a508-d117-476b-ba05-572a41d31829", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.304551+00:00", "label": "easy", "label_explanation": "The yellow taxi is driving slowly due to the wet road conditions, but there is no major congestion or disruption to traffic.", "snapshot": {"id": "dc1e7163-aa9c-40e0-8589-c0c850bdfdf0", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/dc1e7163-aa9c-40e0-8589-c0c850bdfdf0.png", "timestamp": "2024-02-15T20:30:29.164710+00:00"}}, {"id": "3b8669f8-8356-48e6-b513-f012268c7fc7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.080630+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f5cf1fdb-c6db-4da9-a8d7-56c6474e175e", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/f5cf1fdb-c6db-4da9-a8d7-56c6474e175e.png", "timestamp": "2024-02-15T20:50:09.375982+00:00"}}, {"id": "b448122d-9c23-4cef-8ecf-368a188b911f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.211011+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly.", "snapshot": {"id": "f5cf1fdb-c6db-4da9-a8d7-56c6474e175e", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/f5cf1fdb-c6db-4da9-a8d7-56c6474e175e.png", "timestamp": "2024-02-15T20:50:09.375982+00:00"}}, {"id": "1c0e4228-fed6-4eeb-871c-8295076d4fb9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.986929+00:00", "label": "easy", "label_explanation": "The motorcyclist is able to navigate the road without any difficulty, indicating that traffic flow is not significantly affected by the rain.", "snapshot": {"id": "f5cf1fdb-c6db-4da9-a8d7-56c6474e175e", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/f5cf1fdb-c6db-4da9-a8d7-56c6474e175e.png", "timestamp": "2024-02-15T20:50:09.375982+00:00"}}, {"id": "5a7b3a2f-5e1d-4cad-88d6-eb6d37d29492", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.737955+00:00", "label": "low", "label_explanation": "While the road is wet, there are only small puddles of water, and the road surface is still visible. The water level is low.", "snapshot": {"id": "f5cf1fdb-c6db-4da9-a8d7-56c6474e175e", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/f5cf1fdb-c6db-4da9-a8d7-56c6474e175e.png", "timestamp": "2024-02-15T20:50:09.375982+00:00"}}, {"id": "db66d29c-9d60-4b4a-a787-5da1c235cf0c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.524887+00:00", "label": "true", "label_explanation": "The presence of water on the road surface and the dark, cloudy sky indicate that it has been raining.", "snapshot": {"id": "f5cf1fdb-c6db-4da9-a8d7-56c6474e175e", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/f5cf1fdb-c6db-4da9-a8d7-56c6474e175e.png", "timestamp": "2024-02-15T20:50:09.375982+00:00"}}, {"id": "575c882a-350e-4492-8416-6b7a5b127e34", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.248092+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a motorcyclist riding in the foreground. The road is surrounded by buildings and trees, with a crosswalk to the right. The weather appears overcast, and the road surface is wet from recent rain.", "snapshot": {"id": "f5cf1fdb-c6db-4da9-a8d7-56c6474e175e", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/f5cf1fdb-c6db-4da9-a8d7-56c6474e175e.png", "timestamp": "2024-02-15T20:50:09.375982+00:00"}}, {"id": "ad004a81-2eef-4d39-a0f0-8dc8c905d8dd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.430311+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "6c3bcaa2-5074-435a-a893-d95716dbf6b3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/6c3bcaa2-5074-435a-a893-d95716dbf6b3.png", "timestamp": "2024-02-15T20:52:34.524595+00:00"}}, {"id": "7de1701a-6592-45c6-8a2d-cacafc1be408", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.209432+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "6c3bcaa2-5074-435a-a893-d95716dbf6b3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/6c3bcaa2-5074-435a-a893-d95716dbf6b3.png", "timestamp": "2024-02-15T20:52:34.524595+00:00"}}, {"id": "a6b735ff-1245-4321-addd-6c68b3ae1e45", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.326931+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6c3bcaa2-5074-435a-a893-d95716dbf6b3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/6c3bcaa2-5074-435a-a893-d95716dbf6b3.png", "timestamp": "2024-02-15T20:52:34.524595+00:00"}}, {"id": "82cdb758-52da-4677-88ea-7f397d8098e3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.976094+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "6c3bcaa2-5074-435a-a893-d95716dbf6b3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/6c3bcaa2-5074-435a-a893-d95716dbf6b3.png", "timestamp": "2024-02-15T20:52:34.524595+00:00"}}, {"id": "212d71ee-4679-4baf-b4ef-224a34dd284f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.718140+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "6c3bcaa2-5074-435a-a893-d95716dbf6b3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/6c3bcaa2-5074-435a-a893-d95716dbf6b3.png", "timestamp": "2024-02-15T20:52:34.524595+00:00"}}, {"id": "7964920c-29f5-4a00-8081-30989759a1eb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.512490+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street, buildings, and surrounding environment.", "snapshot": {"id": "6c3bcaa2-5074-435a-a893-d95716dbf6b3", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/6c3bcaa2-5074-435a-a893-d95716dbf6b3.png", "timestamp": "2024-02-15T20:52:34.524595+00:00"}}, {"id": "7613126a-1b10-4fa3-9031-9750b38854ca", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.962459+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "5c37ac84-1177-4912-b542-276a16cfe4e4", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5c37ac84-1177-4912-b542-276a16cfe4e4.png", "timestamp": "2024-02-15T20:55:01.954590+00:00"}}, {"id": "34c001c2-ad7b-49fb-8897-9f14f33fab33", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.695360+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "5c37ac84-1177-4912-b542-276a16cfe4e4", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5c37ac84-1177-4912-b542-276a16cfe4e4.png", "timestamp": "2024-02-15T20:55:01.954590+00:00"}}, {"id": "27e5370a-5887-4f43-b9d8-d3b9f9834a40", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.237970+00:00", "label": "free", "label_explanation": "The road is clear and free of any obstructions or blockades. Vehicles and pedestrians can move freely without any hindrance.", "snapshot": {"id": "5c37ac84-1177-4912-b542-276a16cfe4e4", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5c37ac84-1177-4912-b542-276a16cfe4e4.png", "timestamp": "2024-02-15T20:55:01.954590+00:00"}}, {"id": "d6ddf7f1-3d15-4fa6-a08a-63ab97d84be5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.190309+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street and surrounding buildings. It is daytime and the weather appears to be cloudy or overcast. There are several vehicles on the road, including cars and bicycles, and a few pedestrians can be seen walking on the sidewalks.", "snapshot": {"id": "5c37ac84-1177-4912-b542-276a16cfe4e4", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5c37ac84-1177-4912-b542-276a16cfe4e4.png", "timestamp": "2024-02-15T20:55:01.954590+00:00"}}, {"id": "478890e4-ae9c-4dd2-98b6-914786301d41", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.446028+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road from other sources such as sprinklers or a nearby water body.", "snapshot": {"id": "5c37ac84-1177-4912-b542-276a16cfe4e4", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5c37ac84-1177-4912-b542-276a16cfe4e4.png", "timestamp": "2024-02-15T20:55:01.954590+00:00"}}, {"id": "09c7110a-a732-4a58-a526-8f25500642e4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.950611+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5c37ac84-1177-4912-b542-276a16cfe4e4", "camera_id": "001594", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001594/5c37ac84-1177-4912-b542-276a16cfe4e4.png", "timestamp": "2024-02-15T20:55:01.954590+00:00"}}]}, {"id": "001538", "name": "R. EPITACIO PESSOA X R. VINICIUS DE MORAIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979591, "longitude": -43.202832, "objects": ["image_description", "image_corrupted", "rain", "traffic", "road_blockade", "water_level"], "identifications": [{"id": "0c4e1aee-b294-427c-b51b-ac76ba467b19", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:11.864482+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "f26bcdb5-d7ed-4012-bea7-a9ef1426f9f8", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/f26bcdb5-d7ed-4012-bea7-a9ef1426f9f8.png", "timestamp": "2024-02-15T20:29:58.757884+00:00"}}, {"id": "04fe419f-2bc7-45dd-87e0-960064501451", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:11.279620+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "f26bcdb5-d7ed-4012-bea7-a9ef1426f9f8", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/f26bcdb5-d7ed-4012-bea7-a9ef1426f9f8.png", "timestamp": "2024-02-15T20:29:58.757884+00:00"}}, {"id": "677d3391-3b6c-4a02-88d1-2e1e139450bb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.943941+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "7c7c3a72-bc28-401d-9713-93f8f7329504", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/7c7c3a72-bc28-401d-9713-93f8f7329504.png", "timestamp": "2024-02-15T20:32:32.906478+00:00"}}, {"id": "9c81665c-92df-486a-80f0-3726a1b6344c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.074670+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with large areas of uniform green and purple discoloration. The image is unusable for analysis.", "snapshot": {"id": "7c7c3a72-bc28-401d-9713-93f8f7329504", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/7c7c3a72-bc28-401d-9713-93f8f7329504.png", "timestamp": "2024-02-15T20:32:32.906478+00:00"}}, {"id": "b86f08d0-5bf7-47f7-aa82-c09e44f5eaad", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:06.248899+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "cc10ddae-1524-41c6-9b2f-bccd5ca6c8db", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/cc10ddae-1524-41c6-9b2f-bccd5ca6c8db.png", "timestamp": "2024-02-15T20:44:55.627921+00:00"}}, {"id": "16361452-7ad0-44de-9f2b-86d85e141422", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:06.006147+00:00", "label": "true", "label_explanation": "The image is corrupted, with green and black pixelation obscuring the scene.", "snapshot": {"id": "cc10ddae-1524-41c6-9b2f-bccd5ca6c8db", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/cc10ddae-1524-41c6-9b2f-bccd5ca6c8db.png", "timestamp": "2024-02-15T20:44:55.627921+00:00"}}, {"id": "c554deef-1c80-4849-b14f-f86f6bd6bbac", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.645752+00:00", "label": "null", "label_explanation": "The image is corrupted and does not provide any useful information.", "snapshot": {"id": "d178fa18-5ad6-4d5c-b8b5-7188b9dadb06", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/d178fa18-5ad6-4d5c-b8b5-7188b9dadb06.png", "timestamp": "2024-02-15T20:35:04.311786+00:00"}}, {"id": "8d52f75c-c2c0-43ff-ae01-45126d2ba493", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.188382+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "d178fa18-5ad6-4d5c-b8b5-7188b9dadb06", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/d178fa18-5ad6-4d5c-b8b5-7188b9dadb06.png", "timestamp": "2024-02-15T20:35:04.311786+00:00"}}, {"id": "f7d649d6-226c-4507-8df7-a9343160a7fc", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.566441+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "3e09c323-f2b5-4abf-bf49-8052c38ba74a", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/3e09c323-f2b5-4abf-bf49-8052c38ba74a.png", "timestamp": "2024-02-15T20:37:38.142346+00:00"}}, {"id": "6874f79e-f8c5-47f4-b209-4ffb5c14b718", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.231982+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "3e09c323-f2b5-4abf-bf49-8052c38ba74a", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/3e09c323-f2b5-4abf-bf49-8052c38ba74a.png", "timestamp": "2024-02-15T20:37:38.142346+00:00"}}, {"id": "2edc9cf8-2060-4ae1-9e77-52bb14901e9e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.817836+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "3e09c323-f2b5-4abf-bf49-8052c38ba74a", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/3e09c323-f2b5-4abf-bf49-8052c38ba74a.png", "timestamp": "2024-02-15T20:37:38.142346+00:00"}}, {"id": "703c40e1-444a-4ebb-a09c-daa70ec10372", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.690228+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3e09c323-f2b5-4abf-bf49-8052c38ba74a", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/3e09c323-f2b5-4abf-bf49-8052c38ba74a.png", "timestamp": "2024-02-15T20:37:38.142346+00:00"}}, {"id": "eb331ef1-b786-480e-9a4b-20e541ff4ae9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.124365+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "3e09c323-f2b5-4abf-bf49-8052c38ba74a", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/3e09c323-f2b5-4abf-bf49-8052c38ba74a.png", "timestamp": "2024-02-15T20:37:38.142346+00:00"}}, {"id": "ebb186c5-32d2-4892-bda1-a04852e896dd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.212434+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "3e09c323-f2b5-4abf-bf49-8052c38ba74a", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/3e09c323-f2b5-4abf-bf49-8052c38ba74a.png", "timestamp": "2024-02-15T20:37:38.142346+00:00"}}, {"id": "30306b38-53b2-4b96-84b1-7100f919e301", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.997705+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road is wet but without significant water accumulation. There are a few vehicles on the road, and the traffic appears to be flowing smoothly.", "snapshot": {"id": "f69a9087-a442-4df8-a34a-2d5f35a3f800", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/f69a9087-a442-4df8-a34a-2d5f35a3f800.png", "timestamp": "2024-02-15T20:40:10.988443+00:00"}}, {"id": "5477a40f-9bbe-4329-9b5a-e56f62fd8e73", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.077419+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f69a9087-a442-4df8-a34a-2d5f35a3f800", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/f69a9087-a442-4df8-a34a-2d5f35a3f800.png", "timestamp": "2024-02-15T20:40:10.988443+00:00"}}, {"id": "92c2f382-ab37-49a0-bffb-c7e50fca2ea9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:27.370319+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "f69a9087-a442-4df8-a34a-2d5f35a3f800", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/f69a9087-a442-4df8-a34a-2d5f35a3f800.png", "timestamp": "2024-02-15T20:40:10.988443+00:00"}}, {"id": "b8ff228b-0c03-4067-94f6-dd0fe4ecd136", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.789324+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, and there are no major obstructions or hazards visible on the road.", "snapshot": {"id": "f69a9087-a442-4df8-a34a-2d5f35a3f800", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/f69a9087-a442-4df8-a34a-2d5f35a3f800.png", "timestamp": "2024-02-15T20:40:10.988443+00:00"}}, {"id": "4e9f0233-7043-4377-a3d2-39d76d99b773", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.195455+00:00", "label": "low", "label_explanation": "There is no significant water accumulation on the road. The water level is low, and it does not pose any risk to traffic.", "snapshot": {"id": "f69a9087-a442-4df8-a34a-2d5f35a3f800", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/f69a9087-a442-4df8-a34a-2d5f35a3f800.png", "timestamp": "2024-02-15T20:40:10.988443+00:00"}}, {"id": "9a773571-642a-4875-8e66-8e96c3dd4c27", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:25.439039+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the vehicles.", "snapshot": {"id": "f69a9087-a442-4df8-a34a-2d5f35a3f800", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/f69a9087-a442-4df8-a34a-2d5f35a3f800.png", "timestamp": "2024-02-15T20:40:10.988443+00:00"}}, {"id": "170bea5c-f227-4be7-916c-ae9428564d81", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.349953+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars and buses, as well as pedestrians on the sidewalk.", "snapshot": {"id": "80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1.png", "timestamp": "2024-02-15T20:42:39.044879+00:00"}}, {"id": "88dd35fc-2468-446c-ae2c-8b0c06e18b31", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.011131+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1.png", "timestamp": "2024-02-15T20:42:39.044879+00:00"}}, {"id": "8a909b54-f81f-451f-b6ce-90fc01b2d06c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.643827+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1.png", "timestamp": "2024-02-15T20:42:39.044879+00:00"}}, {"id": "7e8a3279-cab1-407f-a826-475f2c1aa261", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:53.567573+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1.png", "timestamp": "2024-02-15T20:42:39.044879+00:00"}}, {"id": "174f1482-5691-4606-9579-65bf8baa638b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:53.242862+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a steady pace. There are no major delays or congestion.", "snapshot": {"id": "80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1.png", "timestamp": "2024-02-15T20:42:39.044879+00:00"}}, {"id": "257b7a93-8821-4cb5-bd24-8853c295600c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.898137+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/80162ea5-1e62-4b0e-9ef8-4c6a45b75bd1.png", "timestamp": "2024-02-15T20:42:39.044879+00:00"}}, {"id": "0b07aae0-e9ad-4a42-97b6-5f8f77d90de8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.867473+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "7ba3d63f-9382-40ef-8bed-438b6912754e", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/7ba3d63f-9382-40ef-8bed-438b6912754e.png", "timestamp": "2024-02-15T20:47:25.232255+00:00"}}, {"id": "425b5d73-e86a-461a-af85-0ae34858368d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.648007+00:00", "label": "true", "label_explanation": "The image is severely corrupted with green and red color distortions, making it impossible to analyze.", "snapshot": {"id": "7ba3d63f-9382-40ef-8bed-438b6912754e", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/7ba3d63f-9382-40ef-8bed-438b6912754e.png", "timestamp": "2024-02-15T20:47:25.232255+00:00"}}, {"id": "8a522842-e398-4d90-99c9-80e144e815c8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.912894+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "51526be8-c2cb-4feb-8bfb-30734cec4e03", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/51526be8-c2cb-4feb-8bfb-30734cec4e03.png", "timestamp": "2024-02-15T20:52:14.842181+00:00"}}, {"id": "e334b750-3d73-4228-8081-651f80c4a928", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.678238+00:00", "label": "true", "label_explanation": "The image is corrupted, with significant visual interference affecting clarity. The corruption is characterized by large areas of uniform grey and green color distortions, making it difficult to discern specific details or assess road conditions accurately.", "snapshot": {"id": "51526be8-c2cb-4feb-8bfb-30734cec4e03", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/51526be8-c2cb-4feb-8bfb-30734cec4e03.png", "timestamp": "2024-02-15T20:52:14.842181+00:00"}}, {"id": "0bc886f3-429e-4dc1-948c-ac44b3b8b630", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.654385+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "768fe0a4-58a3-4b85-a414-b9f0e69d3735", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/768fe0a4-58a3-4b85-a414-b9f0e69d3735.png", "timestamp": "2024-02-15T20:49:50.692707+00:00"}}, {"id": "5ca91737-784a-4b67-a60a-8f1e506f32bf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.271945+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "768fe0a4-58a3-4b85-a414-b9f0e69d3735", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/768fe0a4-58a3-4b85-a414-b9f0e69d3735.png", "timestamp": "2024-02-15T20:49:50.692707+00:00"}}, {"id": "3a1e645a-4ee9-4675-a98e-80c2bc1ad5fa", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.954500+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy and the road is still passable.", "snapshot": {"id": "768fe0a4-58a3-4b85-a414-b9f0e69d3735", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/768fe0a4-58a3-4b85-a414-b9f0e69d3735.png", "timestamp": "2024-02-15T20:49:50.692707+00:00"}}, {"id": "88e81619-22e9-4260-a2d3-863986163ca3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.764929+00:00", "label": "free", "label_explanation": "The road is clear and there are no obstructions blocking traffic.", "snapshot": {"id": "768fe0a4-58a3-4b85-a414-b9f0e69d3735", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/768fe0a4-58a3-4b85-a414-b9f0e69d3735.png", "timestamp": "2024-02-15T20:49:50.692707+00:00"}}, {"id": "c08987c6-12fb-4743-a034-5447a033ec7b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.257580+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "768fe0a4-58a3-4b85-a414-b9f0e69d3735", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/768fe0a4-58a3-4b85-a414-b9f0e69d3735.png", "timestamp": "2024-02-15T20:49:50.692707+00:00"}}, {"id": "2e47205e-a571-400d-88f9-03c870d6bf1a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.507486+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "768fe0a4-58a3-4b85-a414-b9f0e69d3735", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/768fe0a4-58a3-4b85-a414-b9f0e69d3735.png", "timestamp": "2024-02-15T20:49:50.692707+00:00"}}, {"id": "56f54c88-9cb1-47a3-a176-af4b1dcd00a2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.612779+00:00", "label": "low", "label_explanation": "Since there is no visible water on the road surface, the water level can be classified as 'low'.", "snapshot": {"id": "babeab07-4429-4925-a5ec-188000472051", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/babeab07-4429-4925-a5ec-188000472051.png", "timestamp": "2024-02-15T20:54:42.900121+00:00"}}, {"id": "8bda8625-d9f9-4606-86e5-600d15117779", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.314038+00:00", "label": "false", "label_explanation": "As mentioned earlier, there are no visible signs of rain or water on the road surface, indicating a dry road condition.", "snapshot": {"id": "babeab07-4429-4925-a5ec-188000472051", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/babeab07-4429-4925-a5ec-188000472051.png", "timestamp": "2024-02-15T20:54:42.900121+00:00"}}, {"id": "3ce2e9e1-55ab-4f34-af10-caefd7c119cf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.815840+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy but dry, with no visible signs of rain or water on the road surface. The road is in good condition, with no visible potholes or cracks. There are trees on either side of the road and buildings in the background.", "snapshot": {"id": "babeab07-4429-4925-a5ec-188000472051", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/babeab07-4429-4925-a5ec-188000472051.png", "timestamp": "2024-02-15T20:54:42.900121+00:00"}}, {"id": "534ac913-20d4-450b-8bdd-d05567a5007f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.366879+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades. Traffic is able to flow freely in both directions.", "snapshot": {"id": "babeab07-4429-4925-a5ec-188000472051", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/babeab07-4429-4925-a5ec-188000472051.png", "timestamp": "2024-02-15T20:54:42.900121+00:00"}}, {"id": "d9813fe6-3747-40be-9500-6cb3fc7bfe62", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.605240+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "babeab07-4429-4925-a5ec-188000472051", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/babeab07-4429-4925-a5ec-188000472051.png", "timestamp": "2024-02-15T20:54:42.900121+00:00"}}, {"id": "4d29fdb6-451b-4547-b292-adbdb9de7c0e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.100880+00:00", "label": "easy", "label_explanation": "The traffic appears to be moderate, with a steady flow of vehicles moving in both directions. There are no major obstructions or bottlenecks visible in the image.", "snapshot": {"id": "babeab07-4429-4925-a5ec-188000472051", "camera_id": "001538", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001538/babeab07-4429-4925-a5ec-188000472051.png", "timestamp": "2024-02-15T20:54:42.900121+00:00"}}]}, {"id": "001495", "name": "R. ARQUIAS CORDEIRO X R. DR. PADILHA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89553339, "longitude": -43.29120062, "objects": ["image_description", "rain", "image_corrupted", "water_level", "traffic", "road_blockade"], "identifications": []}, {"id": "001497", "name": "PRA\u00c7A DA BANDEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91087081, "longitude": -43.21400139, "objects": ["image_corrupted", "image_description", "water_level", "rain", "traffic", "road_blockade"], "identifications": [{"id": "eee06165-ae3a-44f1-85b9-bddb32c87002", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.993276+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "8f3fffa9-34ef-4843-88b9-361c24d11bb2", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8f3fffa9-34ef-4843-88b9-361c24d11bb2.png", "timestamp": "2024-02-15T20:30:02.534923+00:00"}}, {"id": "e8c0a6f7-ac04-4b62-8bd9-bf8d6b552e4e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.572144+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are water droplets visible on the camera lens.", "snapshot": {"id": "8f3fffa9-34ef-4843-88b9-361c24d11bb2", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8f3fffa9-34ef-4843-88b9-361c24d11bb2.png", "timestamp": "2024-02-15T20:30:02.534923+00:00"}}, {"id": "4e1a1d59-bd38-4b1e-9962-1a1a946a0fbf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.170460+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road surface is wet. There are several vehicles on the road, and pedestrians are using the sidewalk.", "snapshot": {"id": "8f3fffa9-34ef-4843-88b9-361c24d11bb2", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8f3fffa9-34ef-4843-88b9-361c24d11bb2.png", "timestamp": "2024-02-15T20:30:02.534923+00:00"}}, {"id": "3310e6cf-4544-4896-a52e-0992dd661534", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.773418+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water is not deep enough to cause any significant problems for vehicles or pedestrians.", "snapshot": {"id": "8f3fffa9-34ef-4843-88b9-361c24d11bb2", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8f3fffa9-34ef-4843-88b9-361c24d11bb2.png", "timestamp": "2024-02-15T20:30:02.534923+00:00"}}, {"id": "85ce7e5e-10ca-4713-a8c4-fe3ef3be932a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.898043+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8f3fffa9-34ef-4843-88b9-361c24d11bb2", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8f3fffa9-34ef-4843-88b9-361c24d11bb2.png", "timestamp": "2024-02-15T20:30:02.534923+00:00"}}, {"id": "e25fb380-4887-4d92-9257-619177fde3f1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:33.380801+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "8f3fffa9-34ef-4843-88b9-361c24d11bb2", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8f3fffa9-34ef-4843-88b9-361c24d11bb2.png", "timestamp": "2024-02-15T20:30:02.534923+00:00"}}, {"id": "14961524-0881-4e7a-b763-3d53692b7863", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:47.021375+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "4b1a89f9-861a-4af1-bad3-28542b691316", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/4b1a89f9-861a-4af1-bad3-28542b691316.png", "timestamp": "2024-02-15T20:32:32.577938+00:00"}}, {"id": "73619d96-16d6-4a97-b1a9-7edd8264108e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:46.135494+00:00", "label": "low", "label_explanation": "While the road surface is wet, there are no significant puddles or water accumulation observed.", "snapshot": {"id": "4b1a89f9-861a-4af1-bad3-28542b691316", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/4b1a89f9-861a-4af1-bad3-28542b691316.png", "timestamp": "2024-02-15T20:32:32.577938+00:00"}}, {"id": "fe224d75-f16e-49b7-a986-c2a2b161cfc2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.163850+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the vehicle capturing the footage.", "snapshot": {"id": "4b1a89f9-861a-4af1-bad3-28542b691316", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/4b1a89f9-861a-4af1-bad3-28542b691316.png", "timestamp": "2024-02-15T20:32:32.577938+00:00"}}, {"id": "cccd6525-5f1d-4b54-8da9-0939de47b70a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:44.621406+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road surface is wet. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, some of whom are using the overhead walkway.", "snapshot": {"id": "4b1a89f9-861a-4af1-bad3-28542b691316", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/4b1a89f9-861a-4af1-bad3-28542b691316.png", "timestamp": "2024-02-15T20:32:32.577938+00:00"}}, {"id": "ee246591-d89d-471b-846c-6c1b39da17d9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:44.012185+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4b1a89f9-861a-4af1-bad3-28542b691316", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/4b1a89f9-861a-4af1-bad3-28542b691316.png", "timestamp": "2024-02-15T20:32:32.577938+00:00"}}, {"id": "86a783f7-68e0-4061-83eb-54c57465abfe", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:47.754840+00:00", "label": "free", "label_explanation": "The road is clear, with no visible blockades or obstructions. Traffic is flowing smoothly.", "snapshot": {"id": "4b1a89f9-861a-4af1-bad3-28542b691316", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/4b1a89f9-861a-4af1-bad3-28542b691316.png", "timestamp": "2024-02-15T20:32:32.577938+00:00"}}, {"id": "e1d2b455-22a5-4b7b-aba2-fac1c2b398e8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.862961+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16.png", "timestamp": "2024-02-15T20:44:58.093569+00:00"}}, {"id": "06d2d529-e4a3-467a-a3f3-757d86165291", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.526833+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16.png", "timestamp": "2024-02-15T20:44:58.093569+00:00"}}, {"id": "bb94060d-15e8-4b54-9b15-4ce3d7b3920d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.274816+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16.png", "timestamp": "2024-02-15T20:44:58.093569+00:00"}}, {"id": "c7b42513-06d0-49b4-9d19-6224ede06e53", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.636367+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16.png", "timestamp": "2024-02-15T20:44:58.093569+00:00"}}, {"id": "4903340a-9b4e-4245-84d6-f6d2da603535", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.372520+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a pedestrian bridge on the left and buildings in the background. It is daytime and the weather appears cloudy.", "snapshot": {"id": "f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16.png", "timestamp": "2024-02-15T20:44:58.093569+00:00"}}, {"id": "83013d43-309a-4d15-ad74-38aa45c2f48b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:09.138323+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/f8dfdd75-bf5b-4f09-9a4c-5586bb05cc16.png", "timestamp": "2024-02-15T20:44:58.093569+00:00"}}, {"id": "22967094-7eca-4e8a-a479-166960e5599b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:32.551624+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a few cars and a bus in the frame. Traffic is moving at a normal pace.", "snapshot": {"id": "0b6e83e1-da07-47e2-ae06-7c986d00e675", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/0b6e83e1-da07-47e2-ae06-7c986d00e675.png", "timestamp": "2024-02-15T20:47:20.838075+00:00"}}, {"id": "30b1b9d5-fb43-4ec4-87d0-a02b027214a7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:32.827675+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "0b6e83e1-da07-47e2-ae06-7c986d00e675", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/0b6e83e1-da07-47e2-ae06-7c986d00e675.png", "timestamp": "2024-02-15T20:47:20.838075+00:00"}}, {"id": "06e87fa9-f8cf-478b-90f4-e7e4a9335e18", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.989387+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "0b6e83e1-da07-47e2-ae06-7c986d00e675", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/0b6e83e1-da07-47e2-ae06-7c986d00e675.png", "timestamp": "2024-02-15T20:47:20.838075+00:00"}}, {"id": "165c7859-4fbc-45e6-8d6d-b74e952eb78d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:32.203083+00:00", "label": "low", "label_explanation": "There is no standing water on the road, just a thin layer of water from recent rain.", "snapshot": {"id": "0b6e83e1-da07-47e2-ae06-7c986d00e675", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/0b6e83e1-da07-47e2-ae06-7c986d00e675.png", "timestamp": "2024-02-15T20:47:20.838075+00:00"}}, {"id": "7b4aa62c-12a4-40c4-ac4f-ed479757145b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.786967+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a few cars and a bus in the frame. The road is wet from recent rain, but there are no large puddles or standing water. The sidewalks on either side of the road are dry, and there are trees and buildings in the background.", "snapshot": {"id": "0b6e83e1-da07-47e2-ae06-7c986d00e675", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/0b6e83e1-da07-47e2-ae06-7c986d00e675.png", "timestamp": "2024-02-15T20:47:20.838075+00:00"}}, {"id": "6e14986a-eccf-4e6a-9d90-2f783d15432f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.572423+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0b6e83e1-da07-47e2-ae06-7c986d00e675", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/0b6e83e1-da07-47e2-ae06-7c986d00e675.png", "timestamp": "2024-02-15T20:47:20.838075+00:00"}}, {"id": "880ab187-0a95-4014-aab2-5573760c4bed", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:48.518813+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears cloudy. The road surface is wet from recent rain, with some puddles visible.", "snapshot": {"id": "8ed01395-275c-4e32-a680-a4ebc6465da4", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8ed01395-275c-4e32-a680-a4ebc6465da4.png", "timestamp": "2024-02-15T20:37:36.085444+00:00"}}, {"id": "4c7b477c-9f5f-4dac-9910-437e797687fd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:49.857238+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "8ed01395-275c-4e32-a680-a4ebc6465da4", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8ed01395-275c-4e32-a680-a4ebc6465da4.png", "timestamp": "2024-02-15T20:37:36.085444+00:00"}}, {"id": "85c8662b-f87a-43fc-bed9-1ee1acb8d178", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:48.804891+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining recently. The rain is not heavy enough to cause significant flooding or traffic disruptions.", "snapshot": {"id": "8ed01395-275c-4e32-a680-a4ebc6465da4", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8ed01395-275c-4e32-a680-a4ebc6465da4.png", "timestamp": "2024-02-15T20:37:36.085444+00:00"}}, {"id": "5e4f8ea0-6dab-4adc-bdbf-902fc955822d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:49.435492+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. The wet road conditions may cause some minor delays or slower speeds, but overall traffic flow is not significantly affected.", "snapshot": {"id": "8ed01395-275c-4e32-a680-a4ebc6465da4", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8ed01395-275c-4e32-a680-a4ebc6465da4.png", "timestamp": "2024-02-15T20:37:36.085444+00:00"}}, {"id": "96ec0815-b974-402b-9571-a0c9809c8181", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:48.998007+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles scattered around. The majority of the road surface is dry and visible.", "snapshot": {"id": "8ed01395-275c-4e32-a680-a4ebc6465da4", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8ed01395-275c-4e32-a680-a4ebc6465da4.png", "timestamp": "2024-02-15T20:37:36.085444+00:00"}}, {"id": "43be02d0-d80c-401c-9417-1bb42553b064", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:48.121774+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8ed01395-275c-4e32-a680-a4ebc6465da4", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/8ed01395-275c-4e32-a680-a4ebc6465da4.png", "timestamp": "2024-02-15T20:37:36.085444+00:00"}}, {"id": "e21c9899-2aab-453f-ad47-284aee1a5041", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.073403+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "3cd7ddf3-90d6-4460-87cd-408613128b2d", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/3cd7ddf3-90d6-4460-87cd-408613128b2d.png", "timestamp": "2024-02-15T20:35:06.915013+00:00"}}, {"id": "6bf392ff-80c6-4093-8bd1-e5fcddcbdc07", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.862340+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "3cd7ddf3-90d6-4460-87cd-408613128b2d", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/3cd7ddf3-90d6-4460-87cd-408613128b2d.png", "timestamp": "2024-02-15T20:35:06.915013+00:00"}}, {"id": "4a67ed5a-9105-43b5-aeb5-8c1e34e7fd1a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.474160+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "3cd7ddf3-90d6-4460-87cd-408613128b2d", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/3cd7ddf3-90d6-4460-87cd-408613128b2d.png", "timestamp": "2024-02-15T20:35:06.915013+00:00"}}, {"id": "b2eef313-8f94-4044-8998-5edfc158bd3e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.822094+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "3cd7ddf3-90d6-4460-87cd-408613128b2d", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/3cd7ddf3-90d6-4460-87cd-408613128b2d.png", "timestamp": "2024-02-15T20:35:06.915013+00:00"}}, {"id": "f6c4785b-b338-4bcd-b2d2-30f8e4677b16", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.559903+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street, buildings, and surrounding environment.", "snapshot": {"id": "3cd7ddf3-90d6-4460-87cd-408613128b2d", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/3cd7ddf3-90d6-4460-87cd-408613128b2d.png", "timestamp": "2024-02-15T20:35:06.915013+00:00"}}, {"id": "15f4a7e2-d697-4e30-9080-047702bebf49", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.087991+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3cd7ddf3-90d6-4460-87cd-408613128b2d", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/3cd7ddf3-90d6-4460-87cd-408613128b2d.png", "timestamp": "2024-02-15T20:35:06.915013+00:00"}}, {"id": "df0548c6-501d-4a23-98eb-e0b1f433194d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.736649+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades visible on the road. Traffic is flowing smoothly.", "snapshot": {"id": "92912e87-7da9-4188-8053-376a32fb5405", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/92912e87-7da9-4188-8053-376a32fb5405.png", "timestamp": "2024-02-15T20:42:34.663022+00:00"}}, {"id": "bc60b908-3e84-4c29-8712-32639128be37", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.371260+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "92912e87-7da9-4188-8053-376a32fb5405", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/92912e87-7da9-4188-8053-376a32fb5405.png", "timestamp": "2024-02-15T20:42:34.663022+00:00"}}, {"id": "a6f048e8-d8d0-476e-a2d1-de9744cb54ab", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.059018+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road, but they do not cover a significant portion of the road surface.", "snapshot": {"id": "92912e87-7da9-4188-8053-376a32fb5405", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/92912e87-7da9-4188-8053-376a32fb5405.png", "timestamp": "2024-02-15T20:42:34.663022+00:00"}}, {"id": "9ad0611d-9506-444b-8067-4008dd444f4d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:45.919537+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "92912e87-7da9-4188-8053-376a32fb5405", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/92912e87-7da9-4188-8053-376a32fb5405.png", "timestamp": "2024-02-15T20:42:34.663022+00:00"}}, {"id": "5252a875-cf72-4de3-9c3a-caa5c6fb0223", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:46.840313+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road.", "snapshot": {"id": "92912e87-7da9-4188-8053-376a32fb5405", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/92912e87-7da9-4188-8053-376a32fb5405.png", "timestamp": "2024-02-15T20:42:34.663022+00:00"}}, {"id": "de8f0758-1a7f-4885-b94e-09f85487fba0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:46.339467+00:00", "label": "null", "label_explanation": "The image captures a scene of an urban road with a bridge in the background. It is daytime and the weather appears cloudy. There are several vehicles on the road, including cars and buses. Pedestrians are using the bridge to cross the road. There are trees and buildings in the background.", "snapshot": {"id": "92912e87-7da9-4188-8053-376a32fb5405", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/92912e87-7da9-4188-8053-376a32fb5405.png", "timestamp": "2024-02-15T20:42:34.663022+00:00"}}, {"id": "8965f78b-5520-46a7-baf0-ceb5bb0ae4ba", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.080065+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "fd2a3be0-99d1-40e4-841c-c41a36be121e", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/fd2a3be0-99d1-40e4-841c-c41a36be121e.png", "timestamp": "2024-02-15T20:40:09.226277+00:00"}}, {"id": "c7319df6-3012-472b-8192-3ed34ceb18e8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.255483+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "fd2a3be0-99d1-40e4-841c-c41a36be121e", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/fd2a3be0-99d1-40e4-841c-c41a36be121e.png", "timestamp": "2024-02-15T20:40:09.226277+00:00"}}, {"id": "f49cab1f-e090-40c5-b432-2b1ee5bd031a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.700165+00:00", "label": "low", "label_explanation": "While the road is wet, there are only small puddles, and the water does not cover a significant portion of the road surface.", "snapshot": {"id": "fd2a3be0-99d1-40e4-841c-c41a36be121e", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/fd2a3be0-99d1-40e4-841c-c41a36be121e.png", "timestamp": "2024-02-15T20:40:09.226277+00:00"}}, {"id": "aa63db46-0900-40d5-a562-7547728d6a43", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.512281+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with cars, buses, and pedestrians. The weather appears cloudy and wet, with water on the road surface.", "snapshot": {"id": "fd2a3be0-99d1-40e4-841c-c41a36be121e", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/fd2a3be0-99d1-40e4-841c-c41a36be121e.png", "timestamp": "2024-02-15T20:40:09.226277+00:00"}}, {"id": "1c24277c-5a28-4e27-8abc-0d44b74e393e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.693131+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "fd2a3be0-99d1-40e4-841c-c41a36be121e", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/fd2a3be0-99d1-40e4-841c-c41a36be121e.png", "timestamp": "2024-02-15T20:40:09.226277+00:00"}}, {"id": "398aa236-ca08-401b-8ccb-16ce38ddffb7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:20.940118+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fd2a3be0-99d1-40e4-841c-c41a36be121e", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/fd2a3be0-99d1-40e4-841c-c41a36be121e.png", "timestamp": "2024-02-15T20:40:09.226277+00:00"}}, {"id": "21add92d-d318-4f1a-8a01-567d3d177b29", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.312762+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "ddffa7ea-9799-4bfc-827d-06a192ca353c", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/ddffa7ea-9799-4bfc-827d-06a192ca353c.png", "timestamp": "2024-02-15T20:52:10.969370+00:00"}}, {"id": "c7dd222f-ac8d-4fda-bfc7-e9cfcdb69bc4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.161952+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ddffa7ea-9799-4bfc-827d-06a192ca353c", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/ddffa7ea-9799-4bfc-827d-06a192ca353c.png", "timestamp": "2024-02-15T20:52:10.969370+00:00"}}, {"id": "7a4f710a-2481-48df-8bda-988f9c8b10c5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.856604+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "ddffa7ea-9799-4bfc-827d-06a192ca353c", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/ddffa7ea-9799-4bfc-827d-06a192ca353c.png", "timestamp": "2024-02-15T20:52:10.969370+00:00"}}, {"id": "e2966d16-cfef-4f99-b228-ac4823b21425", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.585730+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy, as the vehicles and pedestrians are still able to move around without difficulty.", "snapshot": {"id": "ddffa7ea-9799-4bfc-827d-06a192ca353c", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/ddffa7ea-9799-4bfc-827d-06a192ca353c.png", "timestamp": "2024-02-15T20:52:10.969370+00:00"}}, {"id": "1b657680-3e67-4072-aa39-e7bd9942581f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.073956+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or congestion.", "snapshot": {"id": "ddffa7ea-9799-4bfc-827d-06a192ca353c", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/ddffa7ea-9799-4bfc-827d-06a192ca353c.png", "timestamp": "2024-02-15T20:52:10.969370+00:00"}}, {"id": "fac03d89-fc0a-4524-9436-409120a91198", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:22.365809+00:00", "label": "null", "label_explanation": "The image captures a scene of an urban road with moderate traffic. It is daytime and the weather appears to be cloudy and overcast. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, using the sidewalk and crossing the road. The road is in good condition, with no visible potholes or cracks. There are trees and buildings in the background.", "snapshot": {"id": "ddffa7ea-9799-4bfc-827d-06a192ca353c", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/ddffa7ea-9799-4bfc-827d-06a192ca353c.png", "timestamp": "2024-02-15T20:52:10.969370+00:00"}}, {"id": "b4fbaa21-72e0-42ce-a60b-399e2a5669a8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.571401+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are small puddles of water, but they are not deep enough to cause any significant hazards or impede traffic flow.", "snapshot": {"id": "e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb.png", "timestamp": "2024-02-15T20:49:48.017246+00:00"}}, {"id": "ac2ab460-07fc-451f-ad72-0a8f21020291", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.125371+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb.png", "timestamp": "2024-02-15T20:49:48.017246+00:00"}}, {"id": "9b8bae29-3116-48f5-b7cc-4d5d70395462", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:00.148492+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb.png", "timestamp": "2024-02-15T20:49:48.017246+00:00"}}, {"id": "a146e5d0-9074-4e06-aff8-1be033b74489", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.961293+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a steady pace. There are no major delays or disruptions visible.", "snapshot": {"id": "e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb.png", "timestamp": "2024-02-15T20:49:48.017246+00:00"}}, {"id": "cc18e25a-c6ab-4ab2-8ff8-78e4abe83ac0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.379798+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also small puddles of water on the road.", "snapshot": {"id": "e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb.png", "timestamp": "2024-02-15T20:49:48.017246+00:00"}}, {"id": "d0417fce-86f7-4440-ad05-2db2a36fa9a6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.869305+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/e0ece04b-3e1b-4fc5-bad0-b9ce1b2930bb.png", "timestamp": "2024-02-15T20:49:48.017246+00:00"}}, {"id": "d04ee306-5db2-4efb-b13d-0e8be375c0d0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:50.339203+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "6d69f948-20c0-473e-bfd0-94102237078f", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/6d69f948-20c0-473e-bfd0-94102237078f.png", "timestamp": "2024-02-15T20:54:38.402350+00:00"}}, {"id": "9f9d4fc6-ab5c-4c34-8b18-87a687991293", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:50.143573+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "6d69f948-20c0-473e-bfd0-94102237078f", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/6d69f948-20c0-473e-bfd0-94102237078f.png", "timestamp": "2024-02-15T20:54:38.402350+00:00"}}, {"id": "ceefbcf8-6efe-4c0f-a41a-35614701f5b6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:50.936039+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "6d69f948-20c0-473e-bfd0-94102237078f", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/6d69f948-20c0-473e-bfd0-94102237078f.png", "timestamp": "2024-02-15T20:54:38.402350+00:00"}}, {"id": "c4da6671-23fa-4a1c-a77e-3715bce2bcba", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:50.639301+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "6d69f948-20c0-473e-bfd0-94102237078f", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/6d69f948-20c0-473e-bfd0-94102237078f.png", "timestamp": "2024-02-15T20:54:38.402350+00:00"}}, {"id": "86b81a51-095e-4923-a98e-41ffe80e5f20", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:49.847883+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a bus, a motorcycle, and a few cars on the road. It is daytime and the weather appears cloudy with a wet road surface.", "snapshot": {"id": "6d69f948-20c0-473e-bfd0-94102237078f", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/6d69f948-20c0-473e-bfd0-94102237078f.png", "timestamp": "2024-02-15T20:54:38.402350+00:00"}}, {"id": "3d816bdd-fd0e-4d0f-880e-97de4d124ba0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:49.634406+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6d69f948-20c0-473e-bfd0-94102237078f", "camera_id": "001497", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001497/6d69f948-20c0-473e-bfd0-94102237078f.png", "timestamp": "2024-02-15T20:54:38.402350+00:00"}}]}, {"id": "001541", "name": "AV. MARACAN X PRA\u00c7A LUIS LA SAIGNE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92119511, "longitude": -43.23531541, "objects": ["image_corrupted", "image_description", "rain", "traffic", "road_blockade", "water_level"], "identifications": [{"id": "33a97a0c-7ad1-4b37-aaa4-67514e77c6dc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.884962+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "95c0d07d-456a-4f27-99d4-b76b4a97bee4", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/95c0d07d-456a-4f27-99d4-b76b4a97bee4.png", "timestamp": "2024-02-15T20:30:32.936833+00:00"}}, {"id": "d9134f79-e03a-4c8e-bc69-e1cffce5a872", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:51.197113+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "95c0d07d-456a-4f27-99d4-b76b4a97bee4", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/95c0d07d-456a-4f27-99d4-b76b4a97bee4.png", "timestamp": "2024-02-15T20:30:32.936833+00:00"}}, {"id": "1b8b8245-054c-430e-b75a-c49d4bd31741", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:50.896497+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet conditions.", "snapshot": {"id": "95c0d07d-456a-4f27-99d4-b76b4a97bee4", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/95c0d07d-456a-4f27-99d4-b76b4a97bee4.png", "timestamp": "2024-02-15T20:30:32.936833+00:00"}}, {"id": "3ffbd26d-4750-4ea1-965f-ccbfd4f58e6b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:50.661748+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "95c0d07d-456a-4f27-99d4-b76b4a97bee4", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/95c0d07d-456a-4f27-99d4-b76b4a97bee4.png", "timestamp": "2024-02-15T20:30:32.936833+00:00"}}, {"id": "db39aa15-a147-4b41-a0c8-eb04d9736aa9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:50.432989+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently raining.", "snapshot": {"id": "95c0d07d-456a-4f27-99d4-b76b4a97bee4", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/95c0d07d-456a-4f27-99d4-b76b4a97bee4.png", "timestamp": "2024-02-15T20:30:32.936833+00:00"}}, {"id": "21c87a9c-034f-41ac-a3c9-200e0b9dee50", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:50.092733+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and the right. It is daytime and the weather appears to be cloudy and wet. There are several vehicles on the road, including cars, a bus, and a motorcycle.", "snapshot": {"id": "95c0d07d-456a-4f27-99d4-b76b4a97bee4", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/95c0d07d-456a-4f27-99d4-b76b4a97bee4.png", "timestamp": "2024-02-15T20:30:32.936833+00:00"}}, {"id": "04296836-fb9b-42c1-baa0-b19afff7c261", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.982062+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and free of any obstructions.", "snapshot": {"id": "eda38648-3895-485d-a401-8354c06a5526", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/eda38648-3895-485d-a401-8354c06a5526.png", "timestamp": "2024-02-15T20:43:02.289038+00:00"}}, {"id": "53630b64-653a-4d09-bbba-9aaaa03ad7f6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.708483+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are all moving at a steady pace. There are no major delays or obstructions.", "snapshot": {"id": "eda38648-3895-485d-a401-8354c06a5526", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/eda38648-3895-485d-a401-8354c06a5526.png", "timestamp": "2024-02-15T20:43:02.289038+00:00"}}, {"id": "3edf6ff9-dad7-4bde-8c2d-c5b1112c7d75", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.307376+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry and there are no visible signs of water.", "snapshot": {"id": "eda38648-3895-485d-a401-8354c06a5526", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/eda38648-3895-485d-a401-8354c06a5526.png", "timestamp": "2024-02-15T20:43:02.289038+00:00"}}, {"id": "1f4f7e49-860d-40ed-a4a8-3179704b1a47", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.851665+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "eda38648-3895-485d-a401-8354c06a5526", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/eda38648-3895-485d-a401-8354c06a5526.png", "timestamp": "2024-02-15T20:43:02.289038+00:00"}}, {"id": "65b2ea94-1780-42d2-9f9a-76f4777f3c55", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.511241+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "eda38648-3895-485d-a401-8354c06a5526", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/eda38648-3895-485d-a401-8354c06a5526.png", "timestamp": "2024-02-15T20:43:02.289038+00:00"}}, {"id": "2b5465b9-97fb-45c6-9922-ac23c090b221", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.097061+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and trucks. The road is wide and has multiple lanes. There are buildings and trees on either side of the road.", "snapshot": {"id": "eda38648-3895-485d-a401-8354c06a5526", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/eda38648-3895-485d-a401-8354c06a5526.png", "timestamp": "2024-02-15T20:43:02.289038+00:00"}}, {"id": "ff9e0677-3b12-4117-9384-e32f4cd2a6d6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.608324+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is clear and passable.", "snapshot": {"id": "6fc1f086-e8fb-412b-ace5-7310009a4ab7", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/6fc1f086-e8fb-412b-ace5-7310009a4ab7.png", "timestamp": "2024-02-15T20:33:12.384127+00:00"}}, {"id": "c24f3f36-b29f-4813-8d97-462e0e9437cc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.412329+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars on the road. The person crossing the street is not impeding traffic.", "snapshot": {"id": "6fc1f086-e8fb-412b-ace5-7310009a4ab7", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/6fc1f086-e8fb-412b-ace5-7310009a4ab7.png", "timestamp": "2024-02-15T20:33:12.384127+00:00"}}, {"id": "3521b848-d418-410e-9060-7de37839f092", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.086470+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water level is low.", "snapshot": {"id": "6fc1f086-e8fb-412b-ace5-7310009a4ab7", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/6fc1f086-e8fb-412b-ace5-7310009a4ab7.png", "timestamp": "2024-02-15T20:33:12.384127+00:00"}}, {"id": "7fb016e7-e2a1-48d7-bc14-2a47c3a58dd5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:27.898093+00:00", "label": "true", "label_explanation": "The road surface is wet, but there is no standing water. The rain is likely light or moderate, as the road is still passable.", "snapshot": {"id": "6fc1f086-e8fb-412b-ace5-7310009a4ab7", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/6fc1f086-e8fb-412b-ace5-7310009a4ab7.png", "timestamp": "2024-02-15T20:33:12.384127+00:00"}}, {"id": "610bdba8-855a-46b5-a22c-51a9809a535a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:27.674996+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a wide, straight road in the foreground. There are several tall buildings in the background, and trees on either side of the road. The weather appears to be overcast, as the sky is grey and there is no visible sunlight. There are a few cars on the road, and a person is crossing the street in the foreground.", "snapshot": {"id": "6fc1f086-e8fb-412b-ace5-7310009a4ab7", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/6fc1f086-e8fb-412b-ace5-7310009a4ab7.png", "timestamp": "2024-02-15T20:33:12.384127+00:00"}}, {"id": "262e33cc-70fb-4c55-a3c5-46f7c864453c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:27.404040+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6fc1f086-e8fb-412b-ace5-7310009a4ab7", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/6fc1f086-e8fb-412b-ace5-7310009a4ab7.png", "timestamp": "2024-02-15T20:33:12.384127+00:00"}}, {"id": "7eed5ef6-6c35-4873-8ef2-06caab01631e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:53.562739+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "93f90b5d-d33d-4ee7-9e1c-92bd6edd8831", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/93f90b5d-d33d-4ee7-9e1c-92bd6edd8831.png", "timestamp": "2024-02-15T20:35:38.362421+00:00"}}, {"id": "f3e3eeca-01bf-41f8-80b5-a843165f29a1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:53.311713+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars moving slowly due to the wet road conditions.", "snapshot": {"id": "93f90b5d-d33d-4ee7-9e1c-92bd6edd8831", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/93f90b5d-d33d-4ee7-9e1c-92bd6edd8831.png", "timestamp": "2024-02-15T20:35:38.362421+00:00"}}, {"id": "4443c931-2499-42f7-8898-bce8ffcad968", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.966619+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present.", "snapshot": {"id": "93f90b5d-d33d-4ee7-9e1c-92bd6edd8831", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/93f90b5d-d33d-4ee7-9e1c-92bd6edd8831.png", "timestamp": "2024-02-15T20:35:38.362421+00:00"}}, {"id": "1fa3f624-d766-45dd-9d14-6b34c61d1705", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.745599+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road.", "snapshot": {"id": "93f90b5d-d33d-4ee7-9e1c-92bd6edd8831", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/93f90b5d-d33d-4ee7-9e1c-92bd6edd8831.png", "timestamp": "2024-02-15T20:35:38.362421+00:00"}}, {"id": "67571e0b-40e5-482b-bfcc-41723d4b77c9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.555007+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and the right. There are several cars on the street, and the weather appears to be cloudy and wet.", "snapshot": {"id": "93f90b5d-d33d-4ee7-9e1c-92bd6edd8831", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/93f90b5d-d33d-4ee7-9e1c-92bd6edd8831.png", "timestamp": "2024-02-15T20:35:38.362421+00:00"}}, {"id": "b1c1d081-ab29-49aa-b23d-85e63b6dbf5e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:52.368938+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "93f90b5d-d33d-4ee7-9e1c-92bd6edd8831", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/93f90b5d-d33d-4ee7-9e1c-92bd6edd8831.png", "timestamp": "2024-02-15T20:35:38.362421+00:00"}}, {"id": "acabe640-3479-4d3e-a9d6-0935a83b04c1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.858875+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "e179fbf6-471c-44f5-b114-bb0ebf7562a2", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e179fbf6-471c-44f5-b114-bb0ebf7562a2.png", "timestamp": "2024-02-15T20:38:10.279923+00:00"}}, {"id": "3b0958cd-c9a3-409b-b316-90b8354a0e41", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.561371+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "e179fbf6-471c-44f5-b114-bb0ebf7562a2", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e179fbf6-471c-44f5-b114-bb0ebf7562a2.png", "timestamp": "2024-02-15T20:38:10.279923+00:00"}}, {"id": "4b9c6bc0-3c8c-48c6-838c-03a5a6981a06", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.333723+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "e179fbf6-471c-44f5-b114-bb0ebf7562a2", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e179fbf6-471c-44f5-b114-bb0ebf7562a2.png", "timestamp": "2024-02-15T20:38:10.279923+00:00"}}, {"id": "88ba5105-e8e7-4eac-bd9c-205c540803d4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.073330+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently raining.", "snapshot": {"id": "e179fbf6-471c-44f5-b114-bb0ebf7562a2", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e179fbf6-471c-44f5-b114-bb0ebf7562a2.png", "timestamp": "2024-02-15T20:38:10.279923+00:00"}}, {"id": "2b73c15b-d463-4989-94e7-503772a256bd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.863017+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and the right. It is daytime and the weather appears to be cloudy and possibly rainy.", "snapshot": {"id": "e179fbf6-471c-44f5-b114-bb0ebf7562a2", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e179fbf6-471c-44f5-b114-bb0ebf7562a2.png", "timestamp": "2024-02-15T20:38:10.279923+00:00"}}, {"id": "60c17590-8077-4548-a37c-778bc2a2accc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.649369+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e179fbf6-471c-44f5-b114-bb0ebf7562a2", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e179fbf6-471c-44f5-b114-bb0ebf7562a2.png", "timestamp": "2024-02-15T20:38:10.279923+00:00"}}, {"id": "f49705b6-5c77-4ebe-bf2f-36ad3e017cb1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.991090+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles and pedestrians.", "snapshot": {"id": "a90fc49a-8b3e-4194-9b76-6927c8d91be9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/a90fc49a-8b3e-4194-9b76-6927c8d91be9.png", "timestamp": "2024-02-15T20:40:37.395784+00:00"}}, {"id": "42596344-45d4-42fe-87c3-1b09593746f4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.144679+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "a90fc49a-8b3e-4194-9b76-6927c8d91be9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/a90fc49a-8b3e-4194-9b76-6927c8d91be9.png", "timestamp": "2024-02-15T20:40:37.395784+00:00"}}, {"id": "66f4ce8f-ee05-42d5-bc05-6e0513f5d821", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.632862+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move freely without any major delays.", "snapshot": {"id": "a90fc49a-8b3e-4194-9b76-6927c8d91be9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/a90fc49a-8b3e-4194-9b76-6927c8d91be9.png", "timestamp": "2024-02-15T20:40:37.395784+00:00"}}, {"id": "9894a93c-ff8a-4087-b07b-ca500ae9fd6e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.928309+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and the right. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars and a truck. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "a90fc49a-8b3e-4194-9b76-6927c8d91be9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/a90fc49a-8b3e-4194-9b76-6927c8d91be9.png", "timestamp": "2024-02-15T20:40:37.395784+00:00"}}, {"id": "f121d987-04b8-45a7-9c36-9978f2ef9f00", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.416325+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "a90fc49a-8b3e-4194-9b76-6927c8d91be9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/a90fc49a-8b3e-4194-9b76-6927c8d91be9.png", "timestamp": "2024-02-15T20:40:37.395784+00:00"}}, {"id": "398071bb-e793-432d-90dc-4a04fac88067", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.721165+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a90fc49a-8b3e-4194-9b76-6927c8d91be9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/a90fc49a-8b3e-4194-9b76-6927c8d91be9.png", "timestamp": "2024-02-15T20:40:37.395784+00:00"}}, {"id": "3a0b4791-b970-4aa9-b7fe-5bc96bc87821", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.683644+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a wide, straight road in the foreground. There are several cars parked on the side of the road, and a motorcycle is crossing the street in the foreground. The road is lined with trees, and buildings and cityscapes are visible in the background.", "snapshot": {"id": "94fbb390-033e-4edb-a71f-d7360c17e90f", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/94fbb390-033e-4edb-a71f-d7360c17e90f.png", "timestamp": "2024-02-15T20:45:24.023455+00:00"}}, {"id": "92992ed5-5b59-45ad-acf3-42e1f1fd232f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.423709+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "94fbb390-033e-4edb-a71f-d7360c17e90f", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/94fbb390-033e-4edb-a71f-d7360c17e90f.png", "timestamp": "2024-02-15T20:45:24.023455+00:00"}}, {"id": "1f93b0b6-c3c9-434b-b821-5fab502bf3fb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.126309+00:00", "label": "low", "label_explanation": "The road surface is completely dry, with no standing water.", "snapshot": {"id": "94fbb390-033e-4edb-a71f-d7360c17e90f", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/94fbb390-033e-4edb-a71f-d7360c17e90f.png", "timestamp": "2024-02-15T20:45:24.023455+00:00"}}, {"id": "143dc544-c5f1-4e78-b9e1-396d0d706bd7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.905180+00:00", "label": "false", "label_explanation": "The road surface is dry, with no visible signs of rain or water accumulation.", "snapshot": {"id": "94fbb390-033e-4edb-a71f-d7360c17e90f", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/94fbb390-033e-4edb-a71f-d7360c17e90f.png", "timestamp": "2024-02-15T20:45:24.023455+00:00"}}, {"id": "891713b2-5a7d-40c7-843c-26e77327d706", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.693125+00:00", "label": "free", "label_explanation": "The road is completely clear, with no visible obstructions or blockades.", "snapshot": {"id": "94fbb390-033e-4edb-a71f-d7360c17e90f", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/94fbb390-033e-4edb-a71f-d7360c17e90f.png", "timestamp": "2024-02-15T20:45:24.023455+00:00"}}, {"id": "6f04d856-97f5-4d57-80f3-213413b3151a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.406459+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion or obstructions.", "snapshot": {"id": "94fbb390-033e-4edb-a71f-d7360c17e90f", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/94fbb390-033e-4edb-a71f-d7360c17e90f.png", "timestamp": "2024-02-15T20:45:24.023455+00:00"}}, {"id": "0110d620-69ef-4127-8e0e-351972186d77", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.893592+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "23ec2cff-6c7a-4a7f-a421-a5e8cefa872a", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/23ec2cff-6c7a-4a7f-a421-a5e8cefa872a.png", "timestamp": "2024-02-15T20:47:49.197945+00:00"}}, {"id": "a404f16b-4784-4d5a-b21e-7efffeb78153", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.670763+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and the right. There are several cars on the road, and the weather appears to be clear.", "snapshot": {"id": "23ec2cff-6c7a-4a7f-a421-a5e8cefa872a", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/23ec2cff-6c7a-4a7f-a421-a5e8cefa872a.png", "timestamp": "2024-02-15T20:47:49.197945+00:00"}}, {"id": "75307b81-3a04-44e0-9892-beed88a1cfe6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.375181+00:00", "label": "easy", "label_explanation": "The traffic appears to be flowing smoothly, with no major congestion or obstacles.", "snapshot": {"id": "23ec2cff-6c7a-4a7f-a421-a5e8cefa872a", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/23ec2cff-6c7a-4a7f-a421-a5e8cefa872a.png", "timestamp": "2024-02-15T20:47:49.197945+00:00"}}, {"id": "dcf9dd07-5e39-4bfe-b68e-52cfd6553010", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.170701+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "23ec2cff-6c7a-4a7f-a421-a5e8cefa872a", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/23ec2cff-6c7a-4a7f-a421-a5e8cefa872a.png", "timestamp": "2024-02-15T20:47:49.197945+00:00"}}, {"id": "09e1d207-f16c-4c6f-821f-aab2a523e3d7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.646064+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "23ec2cff-6c7a-4a7f-a421-a5e8cefa872a", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/23ec2cff-6c7a-4a7f-a421-a5e8cefa872a.png", "timestamp": "2024-02-15T20:47:49.197945+00:00"}}, {"id": "67e39315-db0d-4fd0-95a9-3a205af69439", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.465720+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "23ec2cff-6c7a-4a7f-a421-a5e8cefa872a", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/23ec2cff-6c7a-4a7f-a421-a5e8cefa872a.png", "timestamp": "2024-02-15T20:47:49.197945+00:00"}}, {"id": "fb1ee543-0d0e-44cf-af32-aae32c7d5795", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.355126+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "e24ca423-6fb8-4ff2-8066-212405bca3f3", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e24ca423-6fb8-4ff2-8066-212405bca3f3.png", "timestamp": "2024-02-15T20:50:12.267511+00:00"}}, {"id": "e9c7ab28-2e5e-465b-8733-6b92ecb3d368", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.860340+00:00", "label": "low", "label_explanation": "The road surface is completely dry, with no water present.", "snapshot": {"id": "e24ca423-6fb8-4ff2-8066-212405bca3f3", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e24ca423-6fb8-4ff2-8066-212405bca3f3.png", "timestamp": "2024-02-15T20:50:12.267511+00:00"}}, {"id": "32362a5d-4e1e-48d2-b975-8054ad22909d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.631040+00:00", "label": "false", "label_explanation": "The road surface is dry, with no visible signs of rain or water accumulation.", "snapshot": {"id": "e24ca423-6fb8-4ff2-8066-212405bca3f3", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e24ca423-6fb8-4ff2-8066-212405bca3f3.png", "timestamp": "2024-02-15T20:50:12.267511+00:00"}}, {"id": "fc92a322-5e9b-4db3-860c-6371b911750e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.270739+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with a clear view of the road surface, buildings, and traffic.", "snapshot": {"id": "e24ca423-6fb8-4ff2-8066-212405bca3f3", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e24ca423-6fb8-4ff2-8066-212405bca3f3.png", "timestamp": "2024-02-15T20:50:12.267511+00:00"}}, {"id": "3de64792-ecb7-4f5e-b53a-5fedb4e629bc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.077592+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e24ca423-6fb8-4ff2-8066-212405bca3f3", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e24ca423-6fb8-4ff2-8066-212405bca3f3.png", "timestamp": "2024-02-15T20:50:12.267511+00:00"}}, {"id": "0b996822-e562-484c-8d8c-95894bb7f9e4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.065716+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly without any significant congestion or hazards.", "snapshot": {"id": "e24ca423-6fb8-4ff2-8066-212405bca3f3", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e24ca423-6fb8-4ff2-8066-212405bca3f3.png", "timestamp": "2024-02-15T20:50:12.267511+00:00"}}, {"id": "cc23599c-f9b1-411b-94a9-c1b903f879f1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.027025+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9.png", "timestamp": "2024-02-15T20:52:36.835370+00:00"}}, {"id": "de88707c-5d81-4ea2-862f-e3e1468a8c67", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.331230+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9.png", "timestamp": "2024-02-15T20:52:36.835370+00:00"}}, {"id": "870540bd-04c0-4968-b492-974370b466b8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.592404+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and foliage in the background. The weather appears to be overcast, and the road surface is wet from recent rain.", "snapshot": {"id": "e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9.png", "timestamp": "2024-02-15T20:52:36.835370+00:00"}}, {"id": "c8ee35f2-c4f0-4be2-a576-6f77cdd77c1a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.523533+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road, and traffic is able to flow freely.", "snapshot": {"id": "e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9.png", "timestamp": "2024-02-15T20:52:36.835370+00:00"}}, {"id": "53c6199a-2852-4a72-b09f-e3d6d1cb6e63", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.309777+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9.png", "timestamp": "2024-02-15T20:52:36.835370+00:00"}}, {"id": "8c344cd5-7546-409b-b496-93972588af40", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.840549+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/e2472f5b-6dc3-4f6a-b924-6e4c99ea6de9.png", "timestamp": "2024-02-15T20:52:36.835370+00:00"}}, {"id": "e7f7b400-29d5-4b04-b25f-be5af536b74c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.674321+00:00", "label": "free", "label_explanation": "There are no road blockades.", "snapshot": {"id": "d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b.png", "timestamp": "2024-02-15T20:55:04.308605+00:00"}}, {"id": "7891551d-bb2a-42db-986b-5bc5d24ac88b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.262069+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b.png", "timestamp": "2024-02-15T20:55:04.308605+00:00"}}, {"id": "3f84821e-0e9c-42a7-8db5-c33677ff97d3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.576541+00:00", "label": "false", "label_explanation": "The image is clear and not corrupted.", "snapshot": {"id": "d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b.png", "timestamp": "2024-02-15T20:55:04.308605+00:00"}}, {"id": "5bb1c461-f5a3-4657-bbaf-a816ea379c3f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.464054+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars moving slowly.", "snapshot": {"id": "d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b.png", "timestamp": "2024-02-15T20:55:04.308605+00:00"}}, {"id": "0e46814c-86fb-4c3e-8a14-c6301747c463", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.047545+00:00", "label": "true", "label_explanation": "The road surface is wet, but there is no standing water.", "snapshot": {"id": "d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b.png", "timestamp": "2024-02-15T20:55:04.308605+00:00"}}, {"id": "b88d0f8a-4338-43c9-9af2-71e55a8b67d7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.770005+00:00", "label": "null", "label_explanation": "The image shows a four-way intersection with a crosswalk. There are buildings on all sides of the intersection. There are several cars on the road, and the weather appears to be overcast.", "snapshot": {"id": "d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b", "camera_id": "001541", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001541/d0fb20ef-8f2b-41a4-ac43-dbfc9a896f2b.png", "timestamp": "2024-02-15T20:55:04.308605+00:00"}}]}, {"id": "001554", "name": "R. ISIDRO DE FIGUEIREDO X R. PROF. EURICO RABELO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91414, "longitude": -43.230735, "objects": ["image_description", "water_level", "traffic", "image_corrupted", "rain", "road_blockade"], "identifications": [{"id": "57f39fe0-ffa7-4a1c-a38d-e0bd53327818", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:47.071030+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "823ec2de-15af-4ec9-b9ac-8d16c7e0a38a", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/823ec2de-15af-4ec9-b9ac-8d16c7e0a38a.png", "timestamp": "2024-02-15T20:30:31.419643+00:00"}}, {"id": "3061666c-273b-46f8-a506-fdd812764ca2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.502262+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles of water present.", "snapshot": {"id": "823ec2de-15af-4ec9-b9ac-8d16c7e0a38a", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/823ec2de-15af-4ec9-b9ac-8d16c7e0a38a.png", "timestamp": "2024-02-15T20:30:31.419643+00:00"}}, {"id": "df54c58a-874f-4e66-ad7d-aade0e9c5eff", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.686361+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "823ec2de-15af-4ec9-b9ac-8d16c7e0a38a", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/823ec2de-15af-4ec9-b9ac-8d16c7e0a38a.png", "timestamp": "2024-02-15T20:30:31.419643+00:00"}}, {"id": "4d29f761-3377-4746-87a4-bc7d8c66cc3f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.775018+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars visible on the road.", "snapshot": {"id": "823ec2de-15af-4ec9-b9ac-8d16c7e0a38a", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/823ec2de-15af-4ec9-b9ac-8d16c7e0a38a.png", "timestamp": "2024-02-15T20:30:31.419643+00:00"}}, {"id": "ce556444-5d82-4c0f-a072-ed8810c79e57", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.220263+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are puddles of water on the road.", "snapshot": {"id": "823ec2de-15af-4ec9-b9ac-8d16c7e0a38a", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/823ec2de-15af-4ec9-b9ac-8d16c7e0a38a.png", "timestamp": "2024-02-15T20:30:31.419643+00:00"}}, {"id": "3fb9855f-b5b8-4f36-831f-e89ae1e3cdf6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.935957+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a wide median strip. There are trees on either side of the road, and buildings and other structures can be seen in the background. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "823ec2de-15af-4ec9-b9ac-8d16c7e0a38a", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/823ec2de-15af-4ec9-b9ac-8d16c7e0a38a.png", "timestamp": "2024-02-15T20:30:31.419643+00:00"}}, {"id": "2ee49b94-6178-4134-9245-a915fe161061", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.715974+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "5fcf6681-0463-4119-b1e8-6dae37b29dca", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/5fcf6681-0463-4119-b1e8-6dae37b29dca.png", "timestamp": "2024-02-15T20:45:22.262057+00:00"}}, {"id": "dd1187da-1f48-4d4e-bd8c-65ac484732a0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.440170+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "5fcf6681-0463-4119-b1e8-6dae37b29dca", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/5fcf6681-0463-4119-b1e8-6dae37b29dca.png", "timestamp": "2024-02-15T20:45:22.262057+00:00"}}, {"id": "2bfa2494-bb7a-4db5-ab0f-0a677b37c2aa", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.172401+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. The rain is not heavy, as the road is still visible and there is no standing water.", "snapshot": {"id": "5fcf6681-0463-4119-b1e8-6dae37b29dca", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/5fcf6681-0463-4119-b1e8-6dae37b29dca.png", "timestamp": "2024-02-15T20:45:22.262057+00:00"}}, {"id": "1f2943a0-a8ba-4281-b48c-a2a5f5494dc2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.988451+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, straight road with multiple lanes, bordered by trees and buildings. The road is wet from recent rain, and there are several vehicles on it, including cars and buses. There are also a few people walking on the sidewalks.", "snapshot": {"id": "5fcf6681-0463-4119-b1e8-6dae37b29dca", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/5fcf6681-0463-4119-b1e8-6dae37b29dca.png", "timestamp": "2024-02-15T20:45:22.262057+00:00"}}, {"id": "f6d1c03b-b368-4dab-9414-b05fe452f4ad", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.952996+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "5fcf6681-0463-4119-b1e8-6dae37b29dca", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/5fcf6681-0463-4119-b1e8-6dae37b29dca.png", "timestamp": "2024-02-15T20:45:22.262057+00:00"}}, {"id": "7d402525-9dab-4e97-8041-586238140b0d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.748854+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5fcf6681-0463-4119-b1e8-6dae37b29dca", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/5fcf6681-0463-4119-b1e8-6dae37b29dca.png", "timestamp": "2024-02-15T20:45:22.262057+00:00"}}, {"id": "85f349b4-2a2a-4ff0-b0fa-c25438226825", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:51.487687+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and passable in both directions.", "snapshot": {"id": "50534713-7fc5-446c-9ecf-176e8fd8196e", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/50534713-7fc5-446c-9ecf-176e8fd8196e.png", "timestamp": "2024-02-15T20:35:35.398965+00:00"}}, {"id": "2a6b48bb-dec0-423b-b5ce-a049af099cd4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:51.070985+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "50534713-7fc5-446c-9ecf-176e8fd8196e", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/50534713-7fc5-446c-9ecf-176e8fd8196e.png", "timestamp": "2024-02-15T20:35:35.398965+00:00"}}, {"id": "6e9ed777-aa09-4332-883e-8bb74fb6b397", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:50.792117+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, with small puddles scattered across the surface.", "snapshot": {"id": "50534713-7fc5-446c-9ecf-176e8fd8196e", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/50534713-7fc5-446c-9ecf-176e8fd8196e.png", "timestamp": "2024-02-15T20:35:35.398965+00:00"}}, {"id": "cd8e7c23-b1e5-43d4-a7d6-75dd8e838d93", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:50.584593+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, straight road with multiple lanes, bordered by trees and buildings. The road is wet from recent rain, with small puddles scattered across the surface. There are a few cars on the road, moving slowly due to the wet conditions.", "snapshot": {"id": "50534713-7fc5-446c-9ecf-176e8fd8196e", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/50534713-7fc5-446c-9ecf-176e8fd8196e.png", "timestamp": "2024-02-15T20:35:35.398965+00:00"}}, {"id": "66f55bac-bf9c-4219-b81c-a88f50aff806", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:50.379061+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "50534713-7fc5-446c-9ecf-176e8fd8196e", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/50534713-7fc5-446c-9ecf-176e8fd8196e.png", "timestamp": "2024-02-15T20:35:35.398965+00:00"}}, {"id": "16b856ae-d721-4f23-bb8a-46d9c327eade", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:51.306938+00:00", "label": "moderate", "label_explanation": "The traffic is moving slowly due to the wet conditions. There are a few cars on the road, all of which are driving cautiously.", "snapshot": {"id": "50534713-7fc5-446c-9ecf-176e8fd8196e", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/50534713-7fc5-446c-9ecf-176e8fd8196e.png", "timestamp": "2024-02-15T20:35:35.398965+00:00"}}, {"id": "ef028931-5270-4124-8a5d-d0f8c04fbb89", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.777599+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "64d95f23-955e-4e00-88f0-292baa4ef5b5", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/64d95f23-955e-4e00-88f0-292baa4ef5b5.png", "timestamp": "2024-02-15T20:38:09.395646+00:00"}}, {"id": "00cfc566-f848-4df5-8e8b-8f96fc8792a3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.669320+00:00", "label": "easy", "label_explanation": "The yellow taxi is driving on the road, and there are no other vehicles visible. Traffic appears to be light.", "snapshot": {"id": "64d95f23-955e-4e00-88f0-292baa4ef5b5", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/64d95f23-955e-4e00-88f0-292baa4ef5b5.png", "timestamp": "2024-02-15T20:38:09.395646+00:00"}}, {"id": "b1be1602-bc1e-4c2b-92ea-d401f1ba29ff", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.466800+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road, but the majority of the road surface is dry. The water level is low.", "snapshot": {"id": "64d95f23-955e-4e00-88f0-292baa4ef5b5", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/64d95f23-955e-4e00-88f0-292baa4ef5b5.png", "timestamp": "2024-02-15T20:38:09.395646+00:00"}}, {"id": "e892db77-869c-4668-b57d-915765988323", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.875728+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road. The road is clear for traffic.", "snapshot": {"id": "64d95f23-955e-4e00-88f0-292baa4ef5b5", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/64d95f23-955e-4e00-88f0-292baa4ef5b5.png", "timestamp": "2024-02-15T20:38:09.395646+00:00"}}, {"id": "f4567ac2-f270-4c8e-8807-d919adf035ab", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.257601+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "64d95f23-955e-4e00-88f0-292baa4ef5b5", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/64d95f23-955e-4e00-88f0-292baa4ef5b5.png", "timestamp": "2024-02-15T20:38:09.395646+00:00"}}, {"id": "6ff58510-aae8-4d32-a076-628ba83da980", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.021495+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a yellow taxi driving on the wet road. It is daytime and the weather appears to be cloudy. There are trees on either side of the road and buildings in the background.", "snapshot": {"id": "64d95f23-955e-4e00-88f0-292baa4ef5b5", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/64d95f23-955e-4e00-88f0-292baa4ef5b5.png", "timestamp": "2024-02-15T20:38:09.395646+00:00"}}, {"id": "2c99b260-9e16-45fb-b097-48c76d26f5cb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.442117+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be described.", "snapshot": {"id": "9b41d5c1-d906-4f3f-b022-fb41ffad3835", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/9b41d5c1-d906-4f3f-b022-fb41ffad3835.png", "timestamp": "2024-02-15T20:40:34.435370+00:00"}}, {"id": "b4b7259b-4679-4167-8828-ba51d3e898f2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.236341+00:00", "label": "true", "label_explanation": "The image is corrupted, with large areas of missing data. The road surface is not visible, and the image is unusable for traffic analysis.", "snapshot": {"id": "9b41d5c1-d906-4f3f-b022-fb41ffad3835", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/9b41d5c1-d906-4f3f-b022-fb41ffad3835.png", "timestamp": "2024-02-15T20:40:34.435370+00:00"}}, {"id": "ce5409fd-9b97-4f6c-b5f2-8d600143e3ba", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.193959+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars visible on the road.", "snapshot": {"id": "f6b8252d-0c65-4a6e-9e2d-53eab142d594", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/f6b8252d-0c65-4a6e-9e2d-53eab142d594.png", "timestamp": "2024-02-15T20:47:47.902032+00:00"}}, {"id": "af8db9ad-2e23-4063-9cad-ada9130cd411", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.498618+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a wide median strip in the center. The road is lined with mature trees, and there are buildings and other structures in the background.", "snapshot": {"id": "f6b8252d-0c65-4a6e-9e2d-53eab142d594", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/f6b8252d-0c65-4a6e-9e2d-53eab142d594.png", "timestamp": "2024-02-15T20:47:47.902032+00:00"}}, {"id": "e6eb426c-7d8b-49a6-9aae-6395513ceeff", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.401437+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "f6b8252d-0c65-4a6e-9e2d-53eab142d594", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/f6b8252d-0c65-4a6e-9e2d-53eab142d594.png", "timestamp": "2024-02-15T20:47:47.902032+00:00"}}, {"id": "eadebe51-c6bd-4090-a639-816c160e2cb1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.714865+00:00", "label": "true", "label_explanation": "There is light rain falling, and the road surface is wet but not flooded.", "snapshot": {"id": "f6b8252d-0c65-4a6e-9e2d-53eab142d594", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/f6b8252d-0c65-4a6e-9e2d-53eab142d594.png", "timestamp": "2024-02-15T20:47:47.902032+00:00"}}, {"id": "7b64c009-c32b-4f56-b25c-3d09d481b5c2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.004737+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few small puddles.", "snapshot": {"id": "f6b8252d-0c65-4a6e-9e2d-53eab142d594", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/f6b8252d-0c65-4a6e-9e2d-53eab142d594.png", "timestamp": "2024-02-15T20:47:47.902032+00:00"}}, {"id": "969e2b32-2531-47ee-8a44-9e6c1d796bac", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.281998+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f6b8252d-0c65-4a6e-9e2d-53eab142d594", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/f6b8252d-0c65-4a6e-9e2d-53eab142d594.png", "timestamp": "2024-02-15T20:47:47.902032+00:00"}}, {"id": "fa68c9e8-7b18-4d12-878a-7ff4c1273709", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:16.822340+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, so traffic is able to flow freely.", "snapshot": {"id": "3c1cb33e-35c7-4661-844c-6c60e7988bda", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/3c1cb33e-35c7-4661-844c-6c60e7988bda.png", "timestamp": "2024-02-15T20:43:00.520043+00:00"}}, {"id": "3b79cc34-d1f5-42de-b138-48a53114da61", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:16.614513+00:00", "label": "easy", "label_explanation": "The traffic is light and flowing smoothly.", "snapshot": {"id": "3c1cb33e-35c7-4661-844c-6c60e7988bda", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/3c1cb33e-35c7-4661-844c-6c60e7988bda.png", "timestamp": "2024-02-15T20:43:00.520043+00:00"}}, {"id": "a339bb9d-6220-4973-968d-745ba310a7da", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:16.414487+00:00", "label": "low", "label_explanation": "There are some small puddles of water on the road, but they are not causing any significant traffic disruptions.", "snapshot": {"id": "3c1cb33e-35c7-4661-844c-6c60e7988bda", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/3c1cb33e-35c7-4661-844c-6c60e7988bda.png", "timestamp": "2024-02-15T20:43:00.520043+00:00"}}, {"id": "d6b63a1a-24e5-4406-9b56-0d6565f1e696", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:16.123074+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "3c1cb33e-35c7-4661-844c-6c60e7988bda", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/3c1cb33e-35c7-4661-844c-6c60e7988bda.png", "timestamp": "2024-02-15T20:43:00.520043+00:00"}}, {"id": "74f93fa9-4a01-4bd2-b772-ab7314d1b5fa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:15.906712+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few cars on it. It is daytime and the weather appears to be cloudy and wet. There are trees on either side of the road and buildings in the background.", "snapshot": {"id": "3c1cb33e-35c7-4661-844c-6c60e7988bda", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/3c1cb33e-35c7-4661-844c-6c60e7988bda.png", "timestamp": "2024-02-15T20:43:00.520043+00:00"}}, {"id": "e3051679-7edc-4ee1-ad57-f2ba734363e3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:15.645290+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3c1cb33e-35c7-4661-844c-6c60e7988bda", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/3c1cb33e-35c7-4661-844c-6c60e7988bda.png", "timestamp": "2024-02-15T20:43:00.520043+00:00"}}, {"id": "68635a3c-e6c3-4f06-9d9c-d1f6617b008a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.909796+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "1ed29b35-4127-4ba0-9c20-c0aa30b3d56c", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/1ed29b35-4127-4ba0-9c20-c0aa30b3d56c.png", "timestamp": "2024-02-15T20:33:09.505987+00:00"}}, {"id": "b7fd5db1-e482-4ef4-9002-479efd9314b9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.729356+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a wide median strip. Trees are present on either side of the road, and buildings and other structures can be seen in the background. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "1ed29b35-4127-4ba0-9c20-c0aa30b3d56c", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/1ed29b35-4127-4ba0-9c20-c0aa30b3d56c.png", "timestamp": "2024-02-15T20:33:09.505987+00:00"}}, {"id": "22ee6906-f836-4ccc-a67b-9b57c727ad4d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:24.484078+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "1ed29b35-4127-4ba0-9c20-c0aa30b3d56c", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/1ed29b35-4127-4ba0-9c20-c0aa30b3d56c.png", "timestamp": "2024-02-15T20:33:09.505987+00:00"}}, {"id": "3c2a2913-d9ef-402b-8989-87b8f1971ff7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:24.257918+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars visible on the road. The cars are able to move freely without any hindrance.", "snapshot": {"id": "1ed29b35-4127-4ba0-9c20-c0aa30b3d56c", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/1ed29b35-4127-4ba0-9c20-c0aa30b3d56c.png", "timestamp": "2024-02-15T20:33:09.505987+00:00"}}, {"id": "9869c026-1e61-4faa-be97-0e2a029a62d1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:24.086820+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and the road surface is still visible.", "snapshot": {"id": "1ed29b35-4127-4ba0-9c20-c0aa30b3d56c", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/1ed29b35-4127-4ba0-9c20-c0aa30b3d56c.png", "timestamp": "2024-02-15T20:33:09.505987+00:00"}}, {"id": "5c1d376b-cce3-4faf-9d4f-37ed2b907e2c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.284300+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1ed29b35-4127-4ba0-9c20-c0aa30b3d56c", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/1ed29b35-4127-4ba0-9c20-c0aa30b3d56c.png", "timestamp": "2024-02-15T20:33:09.505987+00:00"}}, {"id": "b33a9a36-46ed-4806-8ab8-b2f1fa97fa40", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.119477+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road.", "snapshot": {"id": "639278b5-6dda-4886-bed7-416ab5b0bdc4", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/639278b5-6dda-4886-bed7-416ab5b0bdc4.png", "timestamp": "2024-02-15T20:50:10.151039+00:00"}}, {"id": "de5cedc5-1ed2-43fe-a2db-5fa509694976", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.858501+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion.", "snapshot": {"id": "639278b5-6dda-4886-bed7-416ab5b0bdc4", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/639278b5-6dda-4886-bed7-416ab5b0bdc4.png", "timestamp": "2024-02-15T20:50:10.151039+00:00"}}, {"id": "6d09bd34-cedb-43a9-8d93-a04e3b7fc6ae", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.516145+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water.", "snapshot": {"id": "639278b5-6dda-4886-bed7-416ab5b0bdc4", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/639278b5-6dda-4886-bed7-416ab5b0bdc4.png", "timestamp": "2024-02-15T20:50:10.151039+00:00"}}, {"id": "ec641418-104e-411c-bbd4-7d6343592c25", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.319420+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "639278b5-6dda-4886-bed7-416ab5b0bdc4", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/639278b5-6dda-4886-bed7-416ab5b0bdc4.png", "timestamp": "2024-02-15T20:50:10.151039+00:00"}}, {"id": "36e9f1fb-ffcf-4df7-bced-e5a55c83e0ee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.013952+00:00", "label": "null", "label_explanation": "The image captures a wide, urban road with a bus stop and a few trees on either side. There are several cars parked on the side of the road, and the weather appears to be clear.", "snapshot": {"id": "639278b5-6dda-4886-bed7-416ab5b0bdc4", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/639278b5-6dda-4886-bed7-416ab5b0bdc4.png", "timestamp": "2024-02-15T20:50:10.151039+00:00"}}, {"id": "04b5882a-7032-4cc2-a069-b59064d91881", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.815115+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "639278b5-6dda-4886-bed7-416ab5b0bdc4", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/639278b5-6dda-4886-bed7-416ab5b0bdc4.png", "timestamp": "2024-02-15T20:50:10.151039+00:00"}}, {"id": "79d45707-4cb6-4dd9-88d1-c3fcf29e3496", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.493709+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8bbecbac-2e4e-4114-87be-df5f946d3534", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/8bbecbac-2e4e-4114-87be-df5f946d3534.png", "timestamp": "2024-02-15T20:55:03.147206+00:00"}}, {"id": "dadd0e49-0850-41da-9c8c-7b078c7014b7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.689800+00:00", "label": "free", "label_explanation": "There are no obstructions visible in the image, so the road is clear for traffic.", "snapshot": {"id": "8bbecbac-2e4e-4114-87be-df5f946d3534", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/8bbecbac-2e4e-4114-87be-df5f946d3534.png", "timestamp": "2024-02-15T20:55:03.147206+00:00"}}, {"id": "5fc34a80-fa8f-4373-bb52-3e0268e5881a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.729059+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, straight road with multiple lanes, bordered by trees and buildings. The road is wet from recent rain, and there are a few puddles on the surface. There are no vehicles visible in the image.", "snapshot": {"id": "8bbecbac-2e4e-4114-87be-df5f946d3534", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/8bbecbac-2e4e-4114-87be-df5f946d3534.png", "timestamp": "2024-02-15T20:55:03.147206+00:00"}}, {"id": "9e25d63d-b88b-49a3-afc3-f315f7ddbe44", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.201610+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they do not cover a significant portion of the road surface.", "snapshot": {"id": "8bbecbac-2e4e-4114-87be-df5f946d3534", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/8bbecbac-2e4e-4114-87be-df5f946d3534.png", "timestamp": "2024-02-15T20:55:03.147206+00:00"}}, {"id": "68405301-eb20-4119-bbbd-6e345b4041a3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.977543+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are puddles on the surface. This indicates that it has been raining recently.", "snapshot": {"id": "8bbecbac-2e4e-4114-87be-df5f946d3534", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/8bbecbac-2e4e-4114-87be-df5f946d3534.png", "timestamp": "2024-02-15T20:55:03.147206+00:00"}}, {"id": "16985864-f30f-4437-96f6-8568e5b33d4e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.069516+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water on the road.", "snapshot": {"id": "463ebe8e-d4d9-46ef-8c7a-5689a72c95d9", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/463ebe8e-d4d9-46ef-8c7a-5689a72c95d9.png", "timestamp": "2024-02-15T20:52:36.380770+00:00"}}, {"id": "3ebe9b87-6067-4763-93b3-48f0e0236535", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.845381+00:00", "label": "null", "label_explanation": "The image captures an urban road scene. It is daytime, and the weather appears to be clear. There are several vehicles on the road, including cars and trucks. The road is wide and has multiple lanes. There are trees and buildings on either side of the road.", "snapshot": {"id": "463ebe8e-d4d9-46ef-8c7a-5689a72c95d9", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/463ebe8e-d4d9-46ef-8c7a-5689a72c95d9.png", "timestamp": "2024-02-15T20:52:36.380770+00:00"}}, {"id": "5d77b282-3482-4b9f-b2ee-9ab1c1495aed", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.312880+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no visible signs of water on the road surface.", "snapshot": {"id": "463ebe8e-d4d9-46ef-8c7a-5689a72c95d9", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/463ebe8e-d4d9-46ef-8c7a-5689a72c95d9.png", "timestamp": "2024-02-15T20:52:36.380770+00:00"}}, {"id": "6b04a2bc-2723-4752-bbef-e709d2549690", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.616953+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions, and the image appears intact.", "snapshot": {"id": "463ebe8e-d4d9-46ef-8c7a-5689a72c95d9", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/463ebe8e-d4d9-46ef-8c7a-5689a72c95d9.png", "timestamp": "2024-02-15T20:52:36.380770+00:00"}}, {"id": "8909599d-52c8-4a0f-880a-b1684afa8642", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.732340+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and free of any obstructions.", "snapshot": {"id": "463ebe8e-d4d9-46ef-8c7a-5689a72c95d9", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/463ebe8e-d4d9-46ef-8c7a-5689a72c95d9.png", "timestamp": "2024-02-15T20:52:36.380770+00:00"}}, {"id": "8dbd46c0-c5db-4cb1-8ba7-8e825fde9d88", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.528582+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are several vehicles on the road, but they are all moving at a steady pace. There are no visible signs of congestion or delays.", "snapshot": {"id": "463ebe8e-d4d9-46ef-8c7a-5689a72c95d9", "camera_id": "001554", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001554/463ebe8e-d4d9-46ef-8c7a-5689a72c95d9.png", "timestamp": "2024-02-15T20:52:36.380770+00:00"}}]}, {"id": "000869", "name": "R. SARGENTO JO\u00c3O DE FARIA X AV. MINISTRO IVAN LINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.013308, "longitude": -43.297607, "objects": ["image_corrupted", "image_description", "road_blockade", "traffic", "water_level", "rain"], "identifications": [{"id": "6a78bb53-d543-4768-9108-e0a8327fa7b9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.107956+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few puddles on the surface.", "snapshot": {"id": "d1ab7fc0-d7f4-4326-b88e-f95d68764530", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d1ab7fc0-d7f4-4326-b88e-f95d68764530.png", "timestamp": "2024-02-15T20:30:05.570785+00:00"}}, {"id": "47e8bca6-d5ba-4a5b-b476-130ad5670efe", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:20.854356+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are a few puddles on the surface.", "snapshot": {"id": "d1ab7fc0-d7f4-4326-b88e-f95d68764530", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d1ab7fc0-d7f4-4326-b88e-f95d68764530.png", "timestamp": "2024-02-15T20:30:05.570785+00:00"}}, {"id": "584ea27a-d109-438e-a818-6d3efff9596a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:20.627467+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, straight road with a few trees on either side. The road is wet from recent rain, and there are a few puddles on the surface. There is moderate traffic on the road, with cars and motorbikes moving in both directions.", "snapshot": {"id": "d1ab7fc0-d7f4-4326-b88e-f95d68764530", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d1ab7fc0-d7f4-4326-b88e-f95d68764530.png", "timestamp": "2024-02-15T20:30:05.570785+00:00"}}, {"id": "01c3d35b-92bd-4811-b2fe-983588ddfc22", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:20.316668+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d1ab7fc0-d7f4-4326-b88e-f95d68764530", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d1ab7fc0-d7f4-4326-b88e-f95d68764530.png", "timestamp": "2024-02-15T20:30:05.570785+00:00"}}, {"id": "fc424790-2257-496f-8135-6f34f82427af", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.828845+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "d1ab7fc0-d7f4-4326-b88e-f95d68764530", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d1ab7fc0-d7f4-4326-b88e-f95d68764530.png", "timestamp": "2024-02-15T20:30:05.570785+00:00"}}, {"id": "b368516f-68ed-47af-a9d3-f4412679f0a0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.411659+00:00", "label": "moderate", "label_explanation": "There is moderate traffic on the road, with cars and motorbikes moving in both directions.", "snapshot": {"id": "d1ab7fc0-d7f4-4326-b88e-f95d68764530", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d1ab7fc0-d7f4-4326-b88e-f95d68764530.png", "timestamp": "2024-02-15T20:30:05.570785+00:00"}}, {"id": "a5ab47f6-627e-44f5-9956-e48bd4ac365f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.080137+00:00", "label": "false", "label_explanation": "Although there are a few small puddles on the road surface, the overall road condition is dry. There is no visible rain or water on the road.", "snapshot": {"id": "078c320b-7734-49e9-ba2f-5cf82bea43ac", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/078c320b-7734-49e9-ba2f-5cf82bea43ac.png", "timestamp": "2024-02-15T20:45:00.888540+00:00"}}, {"id": "7822209a-22fb-4a98-863a-cce553afa39f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.192531+00:00", "label": "free", "label_explanation": "The road is completely free of any obstructions, allowing for smooth traffic flow.", "snapshot": {"id": "078c320b-7734-49e9-ba2f-5cf82bea43ac", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/078c320b-7734-49e9-ba2f-5cf82bea43ac.png", "timestamp": "2024-02-15T20:45:00.888540+00:00"}}, {"id": "71db0c88-0d97-48e6-a173-b529c4f568c7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.536768+00:00", "label": "low", "label_explanation": "The road surface is mostly dry, with only a few small puddles scattered around. The water level is low, and it does not pose any significant hindrance to traffic.", "snapshot": {"id": "078c320b-7734-49e9-ba2f-5cf82bea43ac", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/078c320b-7734-49e9-ba2f-5cf82bea43ac.png", "timestamp": "2024-02-15T20:45:00.888540+00:00"}}, {"id": "da25cf1f-4baa-4e12-9fd0-c98c0aa17de5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.802336+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is mostly dry, with a few small puddles scattered around. There are several parked cars on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "078c320b-7734-49e9-ba2f-5cf82bea43ac", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/078c320b-7734-49e9-ba2f-5cf82bea43ac.png", "timestamp": "2024-02-15T20:45:00.888540+00:00"}}, {"id": "ecf6f715-d982-48f7-8ee5-cdaa2416ec33", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.624811+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "078c320b-7734-49e9-ba2f-5cf82bea43ac", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/078c320b-7734-49e9-ba2f-5cf82bea43ac.png", "timestamp": "2024-02-15T20:45:00.888540+00:00"}}, {"id": "181333e9-a415-4384-9f65-f107aef3dcff", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.844450+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions. Traffic is flowing smoothly, and there are no delays or hazards.", "snapshot": {"id": "078c320b-7734-49e9-ba2f-5cf82bea43ac", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/078c320b-7734-49e9-ba2f-5cf82bea43ac.png", "timestamp": "2024-02-15T20:45:00.888540+00:00"}}, {"id": "5b45eb29-1f8e-43d9-9877-59bce1bacbab", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:51.342536+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "548ab490-ee09-4056-b4a0-5b726ed0aae9", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/548ab490-ee09-4056-b4a0-5b726ed0aae9.png", "timestamp": "2024-02-15T20:37:37.940081+00:00"}}, {"id": "ac4ffbaa-6d23-43b0-bc09-4311372e0078", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:50.721335+00:00", "label": "null", "label_explanation": "The image captures an urban road scene. It is daytime, and the weather appears to be clear. There are a few trees on either side of the road, and buildings and houses can be seen in the background. There is a person walking on the left side of the road, and a parked truck is on the right side.", "snapshot": {"id": "548ab490-ee09-4056-b4a0-5b726ed0aae9", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/548ab490-ee09-4056-b4a0-5b726ed0aae9.png", "timestamp": "2024-02-15T20:37:37.940081+00:00"}}, {"id": "e16f8a83-74e2-47d6-ba32-82fe2115c412", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.307112+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is completely clear.", "snapshot": {"id": "548ab490-ee09-4056-b4a0-5b726ed0aae9", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/548ab490-ee09-4056-b4a0-5b726ed0aae9.png", "timestamp": "2024-02-15T20:37:37.940081+00:00"}}, {"id": "22d11baa-9ee0-4761-8b79-5e7bf4f9f4a3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:51.916151+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "548ab490-ee09-4056-b4a0-5b726ed0aae9", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/548ab490-ee09-4056-b4a0-5b726ed0aae9.png", "timestamp": "2024-02-15T20:37:37.940081+00:00"}}, {"id": "743910d0-fce0-4ea1-903f-6075fbeb1994", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:50.182871+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "548ab490-ee09-4056-b4a0-5b726ed0aae9", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/548ab490-ee09-4056-b4a0-5b726ed0aae9.png", "timestamp": "2024-02-15T20:37:37.940081+00:00"}}, {"id": "4e77c6d8-d6ec-41e5-aeb3-2c66eafaa9e3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:52.817698+00:00", "label": "easy", "label_explanation": "The road is clear, with no obstructions or traffic congestion. Traffic is flowing smoothly.", "snapshot": {"id": "548ab490-ee09-4056-b4a0-5b726ed0aae9", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/548ab490-ee09-4056-b4a0-5b726ed0aae9.png", "timestamp": "2024-02-15T20:37:37.940081+00:00"}}, {"id": "14f8c7e0-3300-4aae-8c2f-1f198cb2cdcb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.655744+00:00", "label": "easy", "label_explanation": "It is not possible to tell the traffic level from the image.", "snapshot": {"id": "4f9e1754-d696-4b04-8c98-832b5322cfe5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/4f9e1754-d696-4b04-8c98-832b5322cfe5.png", "timestamp": "2024-02-15T20:35:04.850901+00:00"}}, {"id": "2aa5dcf8-a7e4-4324-be17-d4239d80f7df", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.130678+00:00", "label": "null", "label_explanation": "The image is a CCTV image of an urban road.", "snapshot": {"id": "4f9e1754-d696-4b04-8c98-832b5322cfe5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/4f9e1754-d696-4b04-8c98-832b5322cfe5.png", "timestamp": "2024-02-15T20:35:04.850901+00:00"}}, {"id": "3d0d67ff-983d-4f34-b3e5-c7b8eb28e62c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:19.294632+00:00", "label": "free", "label_explanation": "It is not possible to tell if there is a road blockade from the image.", "snapshot": {"id": "4f9e1754-d696-4b04-8c98-832b5322cfe5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/4f9e1754-d696-4b04-8c98-832b5322cfe5.png", "timestamp": "2024-02-15T20:35:04.850901+00:00"}}, {"id": "750ff9ee-dfb2-49da-9f49-a3c9a2e23765", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.512746+00:00", "label": "false", "label_explanation": "It is not possible to tell if it is raining from the image.", "snapshot": {"id": "4f9e1754-d696-4b04-8c98-832b5322cfe5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/4f9e1754-d696-4b04-8c98-832b5322cfe5.png", "timestamp": "2024-02-15T20:35:04.850901+00:00"}}, {"id": "1102be6b-3a28-4470-87ae-ad9b8ba89c13", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.704736+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "4f9e1754-d696-4b04-8c98-832b5322cfe5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/4f9e1754-d696-4b04-8c98-832b5322cfe5.png", "timestamp": "2024-02-15T20:35:04.850901+00:00"}}, {"id": "65270b27-62cb-4679-8030-18704f955b33", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.053068+00:00", "label": "low", "label_explanation": "It is not possible to tell the water level from the image.", "snapshot": {"id": "4f9e1754-d696-4b04-8c98-832b5322cfe5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/4f9e1754-d696-4b04-8c98-832b5322cfe5.png", "timestamp": "2024-02-15T20:35:04.850901+00:00"}}, {"id": "075e68e2-6c00-4987-9156-ad38af43af7a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:09.256215+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "32dee6ba-033d-4531-9bff-f82fde3cea90", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/32dee6ba-033d-4531-9bff-f82fde3cea90.png", "timestamp": "2024-02-15T20:40:00.801090+00:00"}}, {"id": "870c0e5c-0efa-45a3-86bf-085444694296", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:09.080441+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "32dee6ba-033d-4531-9bff-f82fde3cea90", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/32dee6ba-033d-4531-9bff-f82fde3cea90.png", "timestamp": "2024-02-15T20:40:00.801090+00:00"}}, {"id": "785703df-9aed-4ef6-abe8-60263f02a66c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.757679+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is completely clear, and traffic can flow freely.", "snapshot": {"id": "d68f4397-9d33-4a58-a30e-1dc86e531d9a", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d68f4397-9d33-4a58-a30e-1dc86e531d9a.png", "timestamp": "2024-02-15T20:47:24.619016+00:00"}}, {"id": "e1e6f5ff-2691-4b45-802a-0573e6ea2a0d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.144242+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "d68f4397-9d33-4a58-a30e-1dc86e531d9a", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d68f4397-9d33-4a58-a30e-1dc86e531d9a.png", "timestamp": "2024-02-15T20:47:24.619016+00:00"}}, {"id": "8f1762c3-971c-44eb-bf43-d1ad66706b1d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.403867+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion. Vehicles are moving smoothly in both directions.", "snapshot": {"id": "d68f4397-9d33-4a58-a30e-1dc86e531d9a", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d68f4397-9d33-4a58-a30e-1dc86e531d9a.png", "timestamp": "2024-02-15T20:47:24.619016+00:00"}}, {"id": "bd534e6f-0464-4371-9eb9-52a3308a5bfb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.382400+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d68f4397-9d33-4a58-a30e-1dc86e531d9a", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d68f4397-9d33-4a58-a30e-1dc86e531d9a.png", "timestamp": "2024-02-15T20:47:24.619016+00:00"}}, {"id": "ae515d22-cf71-4902-be62-6bb8043aa83e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.907469+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water accumulation.", "snapshot": {"id": "d68f4397-9d33-4a58-a30e-1dc86e531d9a", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d68f4397-9d33-4a58-a30e-1dc86e531d9a.png", "timestamp": "2024-02-15T20:47:24.619016+00:00"}}, {"id": "7766c2a6-8856-41e4-b8da-cbe1dffae06c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.587851+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for vehicle movement. The road surface is paved and in good condition, with no visible cracks or potholes. There are trees on either side of the road, and buildings and other structures can be seen in the background.", "snapshot": {"id": "d68f4397-9d33-4a58-a30e-1dc86e531d9a", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/d68f4397-9d33-4a58-a30e-1dc86e531d9a.png", "timestamp": "2024-02-15T20:47:24.619016+00:00"}}, {"id": "01f719e6-891c-4ee8-a067-ed39fbd8fdac", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:41.969450+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "dffee361-bfbe-4a69-8cee-663a819af930", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/dffee361-bfbe-4a69-8cee-663a819af930.png", "timestamp": "2024-02-15T20:42:32.353575+00:00"}}, {"id": "a5161022-d922-49f6-930b-2afd6d88926f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:41.725319+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "dffee361-bfbe-4a69-8cee-663a819af930", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/dffee361-bfbe-4a69-8cee-663a819af930.png", "timestamp": "2024-02-15T20:42:32.353575+00:00"}}, {"id": "9a545304-d4ce-485a-9e2d-5f9291647994", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.109424+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some puddles, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "af51a489-84e1-4ec2-b804-8bb4331a3b44", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/af51a489-84e1-4ec2-b804-8bb4331a3b44.png", "timestamp": "2024-02-15T20:32:32.955614+00:00"}}, {"id": "77758605-9c11-4ded-a39a-780be58124e2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:49.514422+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "af51a489-84e1-4ec2-b804-8bb4331a3b44", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/af51a489-84e1-4ec2-b804-8bb4331a3b44.png", "timestamp": "2024-02-15T20:32:32.955614+00:00"}}, {"id": "45ffe234-24d0-4327-aca7-a45994de1dd9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.712923+00:00", "label": "easy", "label_explanation": "The traffic is light, and there are no major obstructions on the road. Vehicles can move freely without any difficulty.", "snapshot": {"id": "af51a489-84e1-4ec2-b804-8bb4331a3b44", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/af51a489-84e1-4ec2-b804-8bb4331a3b44.png", "timestamp": "2024-02-15T20:32:32.955614+00:00"}}, {"id": "af591258-0fd1-400d-8718-f702cff86399", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.387864+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "af51a489-84e1-4ec2-b804-8bb4331a3b44", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/af51a489-84e1-4ec2-b804-8bb4331a3b44.png", "timestamp": "2024-02-15T20:32:32.955614+00:00"}}, {"id": "389e3f61-81e0-4d0c-9d89-6d97db0c07a6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:47.203801+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "af51a489-84e1-4ec2-b804-8bb4331a3b44", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/af51a489-84e1-4ec2-b804-8bb4331a3b44.png", "timestamp": "2024-02-15T20:32:32.955614+00:00"}}, {"id": "7e335fa9-0098-44b0-ac7b-3dfd95e6c417", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:46.225413+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rainfall. There are several parked cars on the side of the road, and the street is lined with trees.", "snapshot": {"id": "af51a489-84e1-4ec2-b804-8bb4331a3b44", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/af51a489-84e1-4ec2-b804-8bb4331a3b44.png", "timestamp": "2024-02-15T20:32:32.955614+00:00"}}, {"id": "8801beb3-f275-407c-ad1a-a4052d4cb1b3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:00.152722+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. The entire road surface is clear, allowing for normal traffic flow.", "snapshot": {"id": "8aff3fab-a477-450d-9bcf-3b8743a02b33", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/8aff3fab-a477-450d-9bcf-3b8743a02b33.png", "timestamp": "2024-02-15T20:49:47.536992+00:00"}}, {"id": "487fbace-1d22-46ad-a7fd-4e1d9e825963", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.343702+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining or there was rain recently.", "snapshot": {"id": "8aff3fab-a477-450d-9bcf-3b8743a02b33", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/8aff3fab-a477-450d-9bcf-3b8743a02b33.png", "timestamp": "2024-02-15T20:49:47.536992+00:00"}}, {"id": "838fb8f0-0056-4f73-9f4d-0b70545037e5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.904108+00:00", "label": "moderate", "label_explanation": "The traffic flow appears to be moderate, with a few cars visible on the road. The wet road conditions may cause some minor traffic disruptions, but overall, the traffic is still able to move smoothly.", "snapshot": {"id": "8aff3fab-a477-450d-9bcf-3b8743a02b33", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/8aff3fab-a477-450d-9bcf-3b8743a02b33.png", "timestamp": "2024-02-15T20:49:47.536992+00:00"}}, {"id": "80cbcaf1-90ff-48a1-b73f-fcfbf2600899", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.127273+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate lighting conditions. It is daytime, and the weather appears to be cloudy or overcast. The road surface is wet, with small puddles scattered across the road. There are several parked cars on the side of the road, and a few trees can be seen lining the street.", "snapshot": {"id": "8aff3fab-a477-450d-9bcf-3b8743a02b33", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/8aff3fab-a477-450d-9bcf-3b8743a02b33.png", "timestamp": "2024-02-15T20:49:47.536992+00:00"}}, {"id": "2e72a2f5-1aa5-415f-98b4-ab4094c24fa5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.814038+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8aff3fab-a477-450d-9bcf-3b8743a02b33", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/8aff3fab-a477-450d-9bcf-3b8743a02b33.png", "timestamp": "2024-02-15T20:49:47.536992+00:00"}}, {"id": "02e8aa9e-5ac5-43d8-9b6a-0cbd73a8b50d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.571882+00:00", "label": "low", "label_explanation": "The water level on the road is relatively low, with only small puddles scattered across the surface. The majority of the road surface is still visible and dry.", "snapshot": {"id": "8aff3fab-a477-450d-9bcf-3b8743a02b33", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/8aff3fab-a477-450d-9bcf-3b8743a02b33.png", "timestamp": "2024-02-15T20:49:47.536992+00:00"}}, {"id": "f2df1777-37ee-4703-ad84-c3868ea848aa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.292586+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is completely clear.", "snapshot": {"id": "63489f58-9ca4-4e55-82a3-83615c40baa5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/63489f58-9ca4-4e55-82a3-83615c40baa5.png", "timestamp": "2024-02-15T20:52:13.535919+00:00"}}, {"id": "180a6a8a-9a6b-4a15-862d-d700fee73d98", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.296024+00:00", "label": "false", "label_explanation": "The image is clear with no visible signs of corruption or data loss.", "snapshot": {"id": "63489f58-9ca4-4e55-82a3-83615c40baa5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/63489f58-9ca4-4e55-82a3-83615c40baa5.png", "timestamp": "2024-02-15T20:52:13.535919+00:00"}}, {"id": "1cbdefef-c5a7-4f1b-b67f-1434c9efa896", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.529947+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime and the road is moderately wide, with two lanes separated by a central median. The road surface is paved and in good condition, with no visible potholes or cracks. There are trees on either side of the road and buildings in the background.", "snapshot": {"id": "63489f58-9ca4-4e55-82a3-83615c40baa5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/63489f58-9ca4-4e55-82a3-83615c40baa5.png", "timestamp": "2024-02-15T20:52:13.535919+00:00"}}, {"id": "9dd6ea69-3107-4899-8a27-a1ce7a2509ba", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.644543+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "63489f58-9ca4-4e55-82a3-83615c40baa5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/63489f58-9ca4-4e55-82a3-83615c40baa5.png", "timestamp": "2024-02-15T20:52:13.535919+00:00"}}, {"id": "8cbfd158-e83c-46dd-9231-c61cb4a8e317", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.977484+00:00", "label": "easy", "label_explanation": "The road is clear and there are no obstructions to traffic flow. Traffic is moving smoothly in both directions.", "snapshot": {"id": "63489f58-9ca4-4e55-82a3-83615c40baa5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/63489f58-9ca4-4e55-82a3-83615c40baa5.png", "timestamp": "2024-02-15T20:52:13.535919+00:00"}}, {"id": "c2895542-5cc1-4d0c-b1e7-e3d44e65d34f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.184318+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry and there are no visible signs of water.", "snapshot": {"id": "63489f58-9ca4-4e55-82a3-83615c40baa5", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/63489f58-9ca4-4e55-82a3-83615c40baa5.png", "timestamp": "2024-02-15T20:52:13.535919+00:00"}}, {"id": "3da1d587-1e34-4b37-b4a6-847097e485e9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:42.318016+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "21edf0fc-7ac2-4b7b-b519-f015b3fb328d", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/21edf0fc-7ac2-4b7b-b519-f015b3fb328d.png", "timestamp": "2024-02-15T20:54:29.879681+00:00"}}, {"id": "57518aa5-ba59-40bd-bfa3-7df266dc78fd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:42.069931+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars moving slowly in both directions.", "snapshot": {"id": "21edf0fc-7ac2-4b7b-b519-f015b3fb328d", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/21edf0fc-7ac2-4b7b-b519-f015b3fb328d.png", "timestamp": "2024-02-15T20:54:29.879681+00:00"}}, {"id": "9249597a-3d74-4993-9906-ea32c3f51e06", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.949359+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with multiple lanes in each direction. The road is lined with trees and buildings, and there are cars parked on either side of the street. The weather appears to be clear, and the road is dry.", "snapshot": {"id": "21edf0fc-7ac2-4b7b-b519-f015b3fb328d", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/21edf0fc-7ac2-4b7b-b519-f015b3fb328d.png", "timestamp": "2024-02-15T20:54:29.879681+00:00"}}, {"id": "55d5f59e-38fd-4a4f-b45f-b0dd77cbee21", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:41.487371+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "21edf0fc-7ac2-4b7b-b519-f015b3fb328d", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/21edf0fc-7ac2-4b7b-b519-f015b3fb328d.png", "timestamp": "2024-02-15T20:54:29.879681+00:00"}}, {"id": "eb0a930d-fa4b-415c-bbfd-82c00a35db15", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:41.252535+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "21edf0fc-7ac2-4b7b-b519-f015b3fb328d", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/21edf0fc-7ac2-4b7b-b519-f015b3fb328d.png", "timestamp": "2024-02-15T20:54:29.879681+00:00"}}, {"id": "9cbca4ca-c766-41a7-8ef2-fce8312def00", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.644749+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "21edf0fc-7ac2-4b7b-b519-f015b3fb328d", "camera_id": "000869", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000869/21edf0fc-7ac2-4b7b-b519-f015b3fb328d.png", "timestamp": "2024-02-15T20:54:29.879681+00:00"}}]}, {"id": "001557", "name": "AV. PRES. VARGAS, 3107 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90971, "longitude": -43.204042, "objects": ["image_corrupted", "image_description", "rain", "water_level", "road_blockade", "traffic"], "identifications": [{"id": "b7df89a3-7aac-4332-b330-7677614f84a8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:17.829225+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free and uninterrupted traffic flow.", "snapshot": {"id": "5c3215fc-0957-42ae-be77-d9c172709612", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5c3215fc-0957-42ae-be77-d9c172709612.png", "timestamp": "2024-02-15T20:28:01.817943+00:00"}}, {"id": "20cef2f0-cc40-4dda-93a5-afddcaf61e9f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:17.572565+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "5c3215fc-0957-42ae-be77-d9c172709612", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5c3215fc-0957-42ae-be77-d9c172709612.png", "timestamp": "2024-02-15T20:28:01.817943+00:00"}}, {"id": "deb87b4d-7aab-4edb-b51c-adf1405975cb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:17.444186+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "5c3215fc-0957-42ae-be77-d9c172709612", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5c3215fc-0957-42ae-be77-d9c172709612.png", "timestamp": "2024-02-15T20:28:01.817943+00:00"}}, {"id": "0391d943-c311-43e3-be4e-77552defdcb2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:17.219149+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "5c3215fc-0957-42ae-be77-d9c172709612", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5c3215fc-0957-42ae-be77-d9c172709612.png", "timestamp": "2024-02-15T20:28:01.817943+00:00"}}, {"id": "4c272c5a-73c0-402c-9b27-7d91f3c13620", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:16.988719+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars, buses, and trucks. The road is lined with trees and buildings.", "snapshot": {"id": "5c3215fc-0957-42ae-be77-d9c172709612", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5c3215fc-0957-42ae-be77-d9c172709612.png", "timestamp": "2024-02-15T20:28:01.817943+00:00"}}, {"id": "36adcf42-6c07-4415-a898-8ef962c2bf83", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:16.732205+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5c3215fc-0957-42ae-be77-d9c172709612", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5c3215fc-0957-42ae-be77-d9c172709612.png", "timestamp": "2024-02-15T20:28:01.817943+00:00"}}, {"id": "a426b042-b7ec-4169-a0eb-9d2abae61d2a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.612840+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles on the road.", "snapshot": {"id": "2be616f3-5954-433b-a37c-039141964926", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/2be616f3-5954-433b-a37c-039141964926.png", "timestamp": "2024-02-15T20:30:28.665475+00:00"}}, {"id": "8bdf0d09-3283-4374-a679-ef6b65c44e24", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.677957+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2be616f3-5954-433b-a37c-039141964926", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/2be616f3-5954-433b-a37c-039141964926.png", "timestamp": "2024-02-15T20:30:28.665475+00:00"}}, {"id": "4bb25824-59ba-4209-a93b-c22b2bedec10", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.065365+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "2be616f3-5954-433b-a37c-039141964926", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/2be616f3-5954-433b-a37c-039141964926.png", "timestamp": "2024-02-15T20:30:28.665475+00:00"}}, {"id": "31accb89-7d48-4e26-a9cd-17fd98ceb1a8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.860500+00:00", "label": "moderate", "label_explanation": "Traffic is moving slowly due to the wet conditions.", "snapshot": {"id": "2be616f3-5954-433b-a37c-039141964926", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/2be616f3-5954-433b-a37c-039141964926.png", "timestamp": "2024-02-15T20:30:28.665475+00:00"}}, {"id": "3f105312-876e-468a-8603-9bd29d1f1865", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.324569+00:00", "label": "true", "label_explanation": "The road is wet, and there is water on the surface.", "snapshot": {"id": "2be616f3-5954-433b-a37c-039141964926", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/2be616f3-5954-433b-a37c-039141964926.png", "timestamp": "2024-02-15T20:30:28.665475+00:00"}}, {"id": "e56effc7-6c37-4482-9795-ad8d3772b599", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:44.969666+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is raining, and the road is wet. There are several vehicles on the road, including cars and buses. The road is lined with trees, and there are buildings and other structures in the background.", "snapshot": {"id": "2be616f3-5954-433b-a37c-039141964926", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/2be616f3-5954-433b-a37c-039141964926.png", "timestamp": "2024-02-15T20:30:28.665475+00:00"}}, {"id": "2f17a246-c382-4779-9004-ec8e0270f63b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.640386+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars, buses, and motorcycles. The road is lined with trees, buildings, and other urban infrastructure.", "snapshot": {"id": "d4202e51-3873-4a3d-bc55-11ba97270411", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d4202e51-3873-4a3d-bc55-11ba97270411.png", "timestamp": "2024-02-15T20:33:06.174085+00:00"}}, {"id": "3153514d-ac61-4ea2-9a11-db544f4fda1a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.285465+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is clear and passable in both directions.", "snapshot": {"id": "d4202e51-3873-4a3d-bc55-11ba97270411", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d4202e51-3873-4a3d-bc55-11ba97270411.png", "timestamp": "2024-02-15T20:33:06.174085+00:00"}}, {"id": "391efa93-a452-45f2-aeeb-1d164ca20d7a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.043149+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. The rain is not heavy, as the vehicles on the road are still able to move at a reasonable speed.", "snapshot": {"id": "d4202e51-3873-4a3d-bc55-11ba97270411", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d4202e51-3873-4a3d-bc55-11ba97270411.png", "timestamp": "2024-02-15T20:33:06.174085+00:00"}}, {"id": "79ba8e56-14a5-49e3-bb72-3f48c2b9615a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.708148+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "d4202e51-3873-4a3d-bc55-11ba97270411", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d4202e51-3873-4a3d-bc55-11ba97270411.png", "timestamp": "2024-02-15T20:33:06.174085+00:00"}}, {"id": "3482540a-92a2-4825-8469-536cbeeb8588", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.927636+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "d4202e51-3873-4a3d-bc55-11ba97270411", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d4202e51-3873-4a3d-bc55-11ba97270411.png", "timestamp": "2024-02-15T20:33:06.174085+00:00"}}, {"id": "4f5a2633-ad45-4681-9bdc-0fa2e5cfdae3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.080864+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d4202e51-3873-4a3d-bc55-11ba97270411", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d4202e51-3873-4a3d-bc55-11ba97270411.png", "timestamp": "2024-02-15T20:33:06.174085+00:00"}}, {"id": "bd6bdde2-00d0-4883-951f-bf243f737c2a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.733474+00:00", "label": "easy", "label_explanation": "There is moderate traffic on the road, but it is moving smoothly.", "snapshot": {"id": "8278e6f6-9b5e-42ab-9f18-402cc6f3325e", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8278e6f6-9b5e-42ab-9f18-402cc6f3325e.png", "timestamp": "2024-02-15T20:42:57.384645+00:00"}}, {"id": "7ed24ab5-4f68-4a00-89de-7ff53438506c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.175748+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "8278e6f6-9b5e-42ab-9f18-402cc6f3325e", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8278e6f6-9b5e-42ab-9f18-402cc6f3325e.png", "timestamp": "2024-02-15T20:42:57.384645+00:00"}}, {"id": "5bd3479e-9651-4320-8767-cb5d1f97a0da", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.971278+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is rush hour, and there is moderate traffic on the road. The road is wet from recent rain, but there are no major obstructions.", "snapshot": {"id": "8278e6f6-9b5e-42ab-9f18-402cc6f3325e", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8278e6f6-9b5e-42ab-9f18-402cc6f3325e.png", "timestamp": "2024-02-15T20:42:57.384645+00:00"}}, {"id": "02c595dc-abd1-441c-bce1-6555303a7ff8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.941464+00:00", "label": "free", "label_explanation": "There are no obstructions on the road.", "snapshot": {"id": "8278e6f6-9b5e-42ab-9f18-402cc6f3325e", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8278e6f6-9b5e-42ab-9f18-402cc6f3325e.png", "timestamp": "2024-02-15T20:42:57.384645+00:00"}}, {"id": "c9791801-ba63-486c-9791-5cbe5c60a3bf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.698260+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8278e6f6-9b5e-42ab-9f18-402cc6f3325e", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8278e6f6-9b5e-42ab-9f18-402cc6f3325e.png", "timestamp": "2024-02-15T20:42:57.384645+00:00"}}, {"id": "717175f0-e3e7-4c50-917b-d0c7ac206402", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.367990+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "8278e6f6-9b5e-42ab-9f18-402cc6f3325e", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8278e6f6-9b5e-42ab-9f18-402cc6f3325e.png", "timestamp": "2024-02-15T20:42:57.384645+00:00"}}, {"id": "1f6d1ce8-fce1-4725-9e1d-7d19b0570fa1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.025890+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "9c45ec53-c4f1-44e8-9970-7ebdf5f118d6", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/9c45ec53-c4f1-44e8-9970-7ebdf5f118d6.png", "timestamp": "2024-02-15T20:45:20.962507+00:00"}}, {"id": "0e141e89-ec03-4ab8-b3df-ec4c53c27650", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.748431+00:00", "label": "low", "label_explanation": "There is a low level of water on the road surface, with some small puddles visible. The road is still passable for vehicles.", "snapshot": {"id": "9c45ec53-c4f1-44e8-9970-7ebdf5f118d6", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/9c45ec53-c4f1-44e8-9970-7ebdf5f118d6.png", "timestamp": "2024-02-15T20:45:20.962507+00:00"}}, {"id": "19b0d801-189c-418f-98b6-04671b73c54e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.233090+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "9c45ec53-c4f1-44e8-9970-7ebdf5f118d6", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/9c45ec53-c4f1-44e8-9970-7ebdf5f118d6.png", "timestamp": "2024-02-15T20:45:20.962507+00:00"}}, {"id": "bf2c1148-4b89-4de7-856f-360d3009c5c8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.515864+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "9c45ec53-c4f1-44e8-9970-7ebdf5f118d6", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/9c45ec53-c4f1-44e8-9970-7ebdf5f118d6.png", "timestamp": "2024-02-15T20:45:20.962507+00:00"}}, {"id": "8ae42f41-dca4-43fb-a470-c5389521bb0a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.232429+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars and buses, and trees on either side of the road.", "snapshot": {"id": "9c45ec53-c4f1-44e8-9970-7ebdf5f118d6", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/9c45ec53-c4f1-44e8-9970-7ebdf5f118d6.png", "timestamp": "2024-02-15T20:45:20.962507+00:00"}}, {"id": "2997810f-0aba-456c-9b86-ca543e50bbef", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.015828+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9c45ec53-c4f1-44e8-9970-7ebdf5f118d6", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/9c45ec53-c4f1-44e8-9970-7ebdf5f118d6.png", "timestamp": "2024-02-15T20:45:20.962507+00:00"}}, {"id": "c1c93f4e-b200-4a0b-b3d9-8f2576b6b5a5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.117591+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "8ad8f104-34ba-4571-9d2c-42cc0fe4aa61", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8ad8f104-34ba-4571-9d2c-42cc0fe4aa61.png", "timestamp": "2024-02-15T20:35:33.163534+00:00"}}, {"id": "a781be91-03b6-440a-84c2-d5c4b35ebaa0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.833460+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "8ad8f104-34ba-4571-9d2c-42cc0fe4aa61", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8ad8f104-34ba-4571-9d2c-42cc0fe4aa61.png", "timestamp": "2024-02-15T20:35:33.163534+00:00"}}, {"id": "c231c85a-ea51-4b20-bc3d-a8637d03e5fc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.663501+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is a four-lane road with a bus lane on the leftmost side. Trees are present on both sides of the road, and buildings can be seen in the background. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "8ad8f104-34ba-4571-9d2c-42cc0fe4aa61", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8ad8f104-34ba-4571-9d2c-42cc0fe4aa61.png", "timestamp": "2024-02-15T20:35:33.163534+00:00"}}, {"id": "6f48ade0-b20d-4bf4-9c6d-2765ce0deb90", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.407847+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8ad8f104-34ba-4571-9d2c-42cc0fe4aa61", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8ad8f104-34ba-4571-9d2c-42cc0fe4aa61.png", "timestamp": "2024-02-15T20:35:33.163534+00:00"}}, {"id": "dc953f8d-bd77-4545-83b9-b880573dbcf8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.525271+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "8ad8f104-34ba-4571-9d2c-42cc0fe4aa61", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8ad8f104-34ba-4571-9d2c-42cc0fe4aa61.png", "timestamp": "2024-02-15T20:35:33.163534+00:00"}}, {"id": "b1f0bd07-631b-4cb0-b7b5-2ecb6b01e052", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.325566+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "8ad8f104-34ba-4571-9d2c-42cc0fe4aa61", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/8ad8f104-34ba-4571-9d2c-42cc0fe4aa61.png", "timestamp": "2024-02-15T20:35:33.163534+00:00"}}, {"id": "26b78782-444b-4804-add2-37d1c6840a77", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.601368+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "313b4ed0-412e-479f-8f85-48f5c2332253", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/313b4ed0-412e-479f-8f85-48f5c2332253.png", "timestamp": "2024-02-15T20:38:04.891299+00:00"}}, {"id": "9c52b16d-3dfe-40c5-aac8-5571dc340e61", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.214454+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "313b4ed0-412e-479f-8f85-48f5c2332253", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/313b4ed0-412e-479f-8f85-48f5c2332253.png", "timestamp": "2024-02-15T20:38:04.891299+00:00"}}, {"id": "ee73d8df-8310-41a1-baac-303853acbc89", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.993856+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water on the road.", "snapshot": {"id": "313b4ed0-412e-479f-8f85-48f5c2332253", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/313b4ed0-412e-479f-8f85-48f5c2332253.png", "timestamp": "2024-02-15T20:38:04.891299+00:00"}}, {"id": "0c1bd3e3-5071-48f2-b659-c5fdcc13b5b0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.673058+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic in both directions.", "snapshot": {"id": "313b4ed0-412e-479f-8f85-48f5c2332253", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/313b4ed0-412e-479f-8f85-48f5c2332253.png", "timestamp": "2024-02-15T20:38:04.891299+00:00"}}, {"id": "f6eea723-ce49-4a54-a03a-ea4b3bb4bcd1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.414498+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "313b4ed0-412e-479f-8f85-48f5c2332253", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/313b4ed0-412e-479f-8f85-48f5c2332253.png", "timestamp": "2024-02-15T20:38:04.891299+00:00"}}, {"id": "1c4e7e45-ed99-4834-ae21-fe1a303d1832", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.810434+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with multiple lanes in each direction. The road is paved and in good condition, with visible lane markings and street signs. There are several trees on either side of the road, and buildings and other structures in the background.", "snapshot": {"id": "313b4ed0-412e-479f-8f85-48f5c2332253", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/313b4ed0-412e-479f-8f85-48f5c2332253.png", "timestamp": "2024-02-15T20:38:04.891299+00:00"}}, {"id": "375c5b8d-10de-47cc-9a4c-605f2f52d448", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:46.070648+00:00", "label": "low", "label_explanation": "The water level on the road is low. While the road is wet, there are no significant accumulations of water that could pose a hazard to vehicles or pedestrians.", "snapshot": {"id": "5a08777b-60f7-47fa-ae46-c42cb43ae148", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5a08777b-60f7-47fa-ae46-c42cb43ae148.png", "timestamp": "2024-02-15T20:40:33.473421+00:00"}}, {"id": "336466f2-9669-4387-bf12-70b37387479a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.380796+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5a08777b-60f7-47fa-ae46-c42cb43ae148", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5a08777b-60f7-47fa-ae46-c42cb43ae148.png", "timestamp": "2024-02-15T20:40:33.473421+00:00"}}, {"id": "501b65e0-0b3f-4ee9-a648-455e8b5a7a16", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:46.472554+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "5a08777b-60f7-47fa-ae46-c42cb43ae148", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5a08777b-60f7-47fa-ae46-c42cb43ae148.png", "timestamp": "2024-02-15T20:40:33.473421+00:00"}}, {"id": "106ab09e-6d04-419c-a8d1-78753c046977", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:46.258703+00:00", "label": "moderate", "label_explanation": "The traffic on the road appears to be moderate. There is a steady flow of vehicles, but no congestion or significant delays are visible.", "snapshot": {"id": "5a08777b-60f7-47fa-ae46-c42cb43ae148", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5a08777b-60f7-47fa-ae46-c42cb43ae148.png", "timestamp": "2024-02-15T20:40:33.473421+00:00"}}, {"id": "da7be9b4-bded-4708-82a7-6e0df35ee30a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.791053+00:00", "label": "true", "label_explanation": "As mentioned earlier, the road surface is wet, indicating recent rainfall. However, the rain does not appear to be heavy, as there are no significant puddles or standing water on the road.", "snapshot": {"id": "5a08777b-60f7-47fa-ae46-c42cb43ae148", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5a08777b-60f7-47fa-ae46-c42cb43ae148.png", "timestamp": "2024-02-15T20:40:33.473421+00:00"}}, {"id": "645b1892-cb4f-4dbc-8334-59aee4122882", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:45.578575+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a bus lane on the leftmost side. Trees can be seen lining the road on both sides, and buildings and other structures are visible in the background. The weather appears to be overcast, and the road surface is wet from recent rain.", "snapshot": {"id": "5a08777b-60f7-47fa-ae46-c42cb43ae148", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/5a08777b-60f7-47fa-ae46-c42cb43ae148.png", "timestamp": "2024-02-15T20:40:33.473421+00:00"}}, {"id": "e28c9bb7-d0ec-4d4b-b07c-7d1847ac72bd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.161434+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are not causing any significant hindrance to traffic.", "snapshot": {"id": "d1ed5e56-33d0-44f4-8183-c48c60196850", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d1ed5e56-33d0-44f4-8183-c48c60196850.png", "timestamp": "2024-02-15T20:47:45.795641+00:00"}}, {"id": "eff02158-a1df-40a8-83d7-4c7ac73ab5be", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.960725+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the bus.", "snapshot": {"id": "d1ed5e56-33d0-44f4-8183-c48c60196850", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d1ed5e56-33d0-44f4-8183-c48c60196850.png", "timestamp": "2024-02-15T20:47:45.795641+00:00"}}, {"id": "3ff1f123-7c1c-44f5-8e77-4ec7fbadce88", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.479685+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d1ed5e56-33d0-44f4-8183-c48c60196850", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d1ed5e56-33d0-44f4-8183-c48c60196850.png", "timestamp": "2024-02-15T20:47:45.795641+00:00"}}, {"id": "e15c7962-e4d8-4915-871c-0e9e9924c763", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.383221+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "d1ed5e56-33d0-44f4-8183-c48c60196850", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d1ed5e56-33d0-44f4-8183-c48c60196850.png", "timestamp": "2024-02-15T20:47:45.795641+00:00"}}, {"id": "e48cca16-1e30-4c89-a324-d8174e1375a8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.691657+00:00", "label": "null", "label_explanation": "The image captures a six-lane urban road with moderate traffic during daytime. It is raining, and the road surface is wet. There are trees on either side of the road, and buildings and other structures in the background.", "snapshot": {"id": "d1ed5e56-33d0-44f4-8183-c48c60196850", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d1ed5e56-33d0-44f4-8183-c48c60196850.png", "timestamp": "2024-02-15T20:47:45.795641+00:00"}}, {"id": "f11b030a-cf68-4877-8ba2-5951bbae013f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.715772+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "d1ed5e56-33d0-44f4-8183-c48c60196850", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/d1ed5e56-33d0-44f4-8183-c48c60196850.png", "timestamp": "2024-02-15T20:47:45.795641+00:00"}}, {"id": "32b28212-e8ad-484a-8252-4cedf56ab71a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.494075+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "fc4b705e-e825-4bb9-9add-c3262c222034", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/fc4b705e-e825-4bb9-9add-c3262c222034.png", "timestamp": "2024-02-15T20:52:32.076836+00:00"}}, {"id": "90b5cb47-a196-4d9d-9c15-178542e230ea", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.001625+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles of water present.", "snapshot": {"id": "fc4b705e-e825-4bb9-9add-c3262c222034", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/fc4b705e-e825-4bb9-9add-c3262c222034.png", "timestamp": "2024-02-15T20:52:32.076836+00:00"}}, {"id": "7e911918-eb3f-4214-a2bb-1b7b8e911982", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.805373+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road.", "snapshot": {"id": "fc4b705e-e825-4bb9-9add-c3262c222034", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/fc4b705e-e825-4bb9-9add-c3262c222034.png", "timestamp": "2024-02-15T20:52:32.076836+00:00"}}, {"id": "f1bdcaea-66b3-4301-8d1c-b5fe22ba6b9f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.595098+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a bus lane on the leftmost side. Trees can be seen on both sides of the road, and buildings can be seen in the background. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "fc4b705e-e825-4bb9-9add-c3262c222034", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/fc4b705e-e825-4bb9-9add-c3262c222034.png", "timestamp": "2024-02-15T20:52:32.076836+00:00"}}, {"id": "97992313-2809-4a18-a20a-9ece4e7de72a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:45.318406+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars and buses moving slowly due to the wet road conditions.", "snapshot": {"id": "fc4b705e-e825-4bb9-9add-c3262c222034", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/fc4b705e-e825-4bb9-9add-c3262c222034.png", "timestamp": "2024-02-15T20:52:32.076836+00:00"}}, {"id": "5820d7ce-21f5-48e2-8953-67e3a44c9cf9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.391165+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fc4b705e-e825-4bb9-9add-c3262c222034", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/fc4b705e-e825-4bb9-9add-c3262c222034.png", "timestamp": "2024-02-15T20:52:32.076836+00:00"}}, {"id": "1622f73c-4d7b-470f-a409-e5c144e70304", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.828767+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a steady flow of vehicles, including buses and cars. Traffic appears to be moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "838b7dec-07e0-4e9b-a356-bed43a182369", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/838b7dec-07e0-4e9b-a356-bed43a182369.png", "timestamp": "2024-02-15T20:50:08.803660+00:00"}}, {"id": "d73f77b7-4310-4897-842f-78f37583ab25", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:20.097886+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "838b7dec-07e0-4e9b-a356-bed43a182369", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/838b7dec-07e0-4e9b-a356-bed43a182369.png", "timestamp": "2024-02-15T20:50:08.803660+00:00"}}, {"id": "959fb90b-ee7a-4d23-b57a-7d880694d287", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.634199+00:00", "label": "low", "label_explanation": "As mentioned earlier, the road surface is wet but there are no substantial accumulations of water. Therefore, the water level can be classified as 'low'.", "snapshot": {"id": "838b7dec-07e0-4e9b-a356-bed43a182369", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/838b7dec-07e0-4e9b-a356-bed43a182369.png", "timestamp": "2024-02-15T20:50:08.803660+00:00"}}, {"id": "0b02beb4-8e68-4bf5-b62d-1756bcb2333f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.181850+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is a four-lane road with a bus lane on the leftmost side. Trees can be seen on both sides of the road, along with buildings and other urban structures in the background. The weather appears to be overcast, as there is no direct sunlight visible.", "snapshot": {"id": "838b7dec-07e0-4e9b-a356-bed43a182369", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/838b7dec-07e0-4e9b-a356-bed43a182369.png", "timestamp": "2024-02-15T20:50:08.803660+00:00"}}, {"id": "96b2dd14-8e0c-4904-82d9-63d994a65562", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.413614+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, there are no significant puddles or standing water visible on the road.", "snapshot": {"id": "838b7dec-07e0-4e9b-a356-bed43a182369", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/838b7dec-07e0-4e9b-a356-bed43a182369.png", "timestamp": "2024-02-15T20:50:08.803660+00:00"}}, {"id": "6f57d84a-a07d-4cc4-ab23-28d456cfe821", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:18.923966+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "838b7dec-07e0-4e9b-a356-bed43a182369", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/838b7dec-07e0-4e9b-a356-bed43a182369.png", "timestamp": "2024-02-15T20:50:08.803660+00:00"}}, {"id": "7b1002ec-cbcf-4754-b428-596380890fa0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.007280+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades. Traffic is able to flow freely without any restrictions.", "snapshot": {"id": "1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8.png", "timestamp": "2024-02-15T20:55:01.293222+00:00"}}, {"id": "a0c00d45-8595-404c-a664-ab4d240282a9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.499867+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While the road is wet, the water is not at a level that would impact traffic or be considered a hazard.", "snapshot": {"id": "1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8.png", "timestamp": "2024-02-15T20:55:01.293222+00:00"}}, {"id": "cffaa654-7370-422e-a344-bbd7078fdc0d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:12.809080+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8.png", "timestamp": "2024-02-15T20:55:01.293222+00:00"}}, {"id": "8f9f3099-a3e6-4d1c-9aba-a4c6074e8ce5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.283590+00:00", "label": "false", "label_explanation": "Although the road surface is wet, there are no signs of active rainfall. The wetness is likely due to previous rain or water from other sources, such as sprinklers or washing.", "snapshot": {"id": "1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8.png", "timestamp": "2024-02-15T20:55:01.293222+00:00"}}, {"id": "f40b5a7c-196f-4f3d-b0e6-6e35eb241452", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.037355+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a bus lane on the leftmost side. Trees are present on both sides of the road, and buildings can be seen in the background. The weather appears to be overcast, and there are no visible signs of rain.", "snapshot": {"id": "1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8.png", "timestamp": "2024-02-15T20:55:01.293222+00:00"}}, {"id": "23f3ee9b-9832-435c-bac9-ecce504f68bf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.709454+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no visible obstructions or incidents that would impede traffic flow.", "snapshot": {"id": "1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8", "camera_id": "001557", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001557/1abe89c0-f0b3-4d6c-9a45-2a220b2b08d8.png", "timestamp": "2024-02-15T20:55:01.293222+00:00"}}]}, {"id": "001535", "name": "R. MORAIS E SILVA, 83 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911939, "longitude": -43.222126, "objects": ["image_description", "rain", "water_level", "traffic", "image_corrupted", "road_blockade"], "identifications": [{"id": "8910c03e-f864-4a79-bb8b-5f0909e79be3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:50.579852+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear, and traffic is able to flow freely.", "snapshot": {"id": "91c20bc7-ee4e-4882-94dc-be6888f5bf30", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/91c20bc7-ee4e-4882-94dc-be6888f5bf30.png", "timestamp": "2024-02-15T20:30:32.764824+00:00"}}, {"id": "f2fe63a2-ad33-485e-94d6-5780c2ab056f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:50.089517+00:00", "label": "low", "label_explanation": "There is no standing water on the road. The road surface is visible, and there are no signs of flooding.", "snapshot": {"id": "91c20bc7-ee4e-4882-94dc-be6888f5bf30", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/91c20bc7-ee4e-4882-94dc-be6888f5bf30.png", "timestamp": "2024-02-15T20:30:32.764824+00:00"}}, {"id": "8d4ee422-af08-415f-b4fe-611029d19885", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:50.349185+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several cars on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "91c20bc7-ee4e-4882-94dc-be6888f5bf30", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/91c20bc7-ee4e-4882-94dc-be6888f5bf30.png", "timestamp": "2024-02-15T20:30:32.764824+00:00"}}, {"id": "195cec51-2eae-40ae-b132-cbeb44bd1748", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.889151+00:00", "label": "true", "label_explanation": "The road is wet, and there are water droplets visible on the camera lens.", "snapshot": {"id": "91c20bc7-ee4e-4882-94dc-be6888f5bf30", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/91c20bc7-ee4e-4882-94dc-be6888f5bf30.png", "timestamp": "2024-02-15T20:30:32.764824+00:00"}}, {"id": "3274970f-9021-4dd3-8140-9295cfef82d3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.636437+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is raining, and the road is wet. There are several cars on the road, and people are walking on the sidewalk.", "snapshot": {"id": "91c20bc7-ee4e-4882-94dc-be6888f5bf30", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/91c20bc7-ee4e-4882-94dc-be6888f5bf30.png", "timestamp": "2024-02-15T20:30:32.764824+00:00"}}, {"id": "6ed4a0b6-ffd4-4f69-b248-6540e5287eac", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.314198+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "91c20bc7-ee4e-4882-94dc-be6888f5bf30", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/91c20bc7-ee4e-4882-94dc-be6888f5bf30.png", "timestamp": "2024-02-15T20:30:32.764824+00:00"}}, {"id": "fdcb7eb0-ad55-4f92-8caa-41d47141d90e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.219410+00:00", "label": "free", "label_explanation": "The road is completely free of obstructions, and there are no visible barriers or blockades that would impede traffic flow.", "snapshot": {"id": "7c978499-a66c-4833-9db7-490f6f74bab9", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/7c978499-a66c-4833-9db7-490f6f74bab9.png", "timestamp": "2024-02-15T20:35:38.543447+00:00"}}, {"id": "9ccb0256-3764-4269-a20b-4cd3dcd6bd75", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.030935+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible obstructions or hazards. Traffic is flowing smoothly, and there are no apparent disruptions or delays.", "snapshot": {"id": "7c978499-a66c-4833-9db7-490f6f74bab9", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/7c978499-a66c-4833-9db7-490f6f74bab9.png", "timestamp": "2024-02-15T20:35:38.543447+00:00"}}, {"id": "5e8e1023-78d7-45c2-abfe-f19b9a21df28", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:53.506907+00:00", "label": "false", "label_explanation": "As mentioned earlier, there are no visible signs of rain or other adverse weather conditions in the image.", "snapshot": {"id": "7c978499-a66c-4833-9db7-490f6f74bab9", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/7c978499-a66c-4833-9db7-490f6f74bab9.png", "timestamp": "2024-02-15T20:35:38.543447+00:00"}}, {"id": "470c8d0c-6c42-451e-adba-ba71ad383e72", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:53.784094+00:00", "label": "low", "label_explanation": "The road surface is completely dry, with no visible signs of water accumulation or flooding.", "snapshot": {"id": "7c978499-a66c-4833-9db7-490f6f74bab9", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/7c978499-a66c-4833-9db7-490f6f74bab9.png", "timestamp": "2024-02-15T20:35:38.543447+00:00"}}, {"id": "39751f20-9d25-464c-98cd-80e0cf76982d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:53.329047+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate lighting conditions. It is daytime, and the weather appears to be clear, with no visible signs of rain or other adverse weather conditions. The road surface is dry, and there are no visible obstructions or hazards on the road.", "snapshot": {"id": "7c978499-a66c-4833-9db7-490f6f74bab9", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/7c978499-a66c-4833-9db7-490f6f74bab9.png", "timestamp": "2024-02-15T20:35:38.543447+00:00"}}, {"id": "b74df81e-ed1a-47a8-9b6a-564bf831c4c2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:53.057382+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7c978499-a66c-4833-9db7-490f6f74bab9", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/7c978499-a66c-4833-9db7-490f6f74bab9.png", "timestamp": "2024-02-15T20:35:38.543447+00:00"}}, {"id": "13492ea5-b7a9-41b7-b6dd-3bb3708264d4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.562889+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate lighting conditions. It is daytime, and the weather appears to be cloudy. The road surface is wet, but there are no significant puddles or standing water. There are several vehicles on the road, including cars, buses, and motorcycles. The vehicles are moving slowly due to the wet conditions. There are also a few pedestrians on the sidewalk, walking with umbrellas. The buildings along the road are tall and modern, and there are trees on either side of the road.", "snapshot": {"id": "9f358878-8906-4473-8f67-4f19eb64d037", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/9f358878-8906-4473-8f67-4f19eb64d037.png", "timestamp": "2024-02-15T20:38:10.247357+00:00"}}, {"id": "60e3fd9b-7cbb-4c16-bfb8-5b702e080467", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.450383+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly. The road is free of any blockades.", "snapshot": {"id": "9f358878-8906-4473-8f67-4f19eb64d037", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/9f358878-8906-4473-8f67-4f19eb64d037.png", "timestamp": "2024-02-15T20:38:10.247357+00:00"}}, {"id": "bc70e3c7-b59e-45c4-bd17-cf0c73cc5056", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.991403+00:00", "label": "low", "label_explanation": "The road surface is wet, but there are no significant puddles or standing water. The water level is low.", "snapshot": {"id": "9f358878-8906-4473-8f67-4f19eb64d037", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/9f358878-8906-4473-8f67-4f19eb64d037.png", "timestamp": "2024-02-15T20:38:10.247357+00:00"}}, {"id": "b2c2d99f-b330-4441-a639-1e74dcc9631c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.322718+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9f358878-8906-4473-8f67-4f19eb64d037", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/9f358878-8906-4473-8f67-4f19eb64d037.png", "timestamp": "2024-02-15T20:38:10.247357+00:00"}}, {"id": "d8afb577-35cf-42e8-ad4a-c049b8601e48", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.227989+00:00", "label": "moderate", "label_explanation": "The vehicles are moving slowly due to the wet conditions. Traffic is moderate, with a few vehicles on the road.", "snapshot": {"id": "9f358878-8906-4473-8f67-4f19eb64d037", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/9f358878-8906-4473-8f67-4f19eb64d037.png", "timestamp": "2024-02-15T20:38:10.247357+00:00"}}, {"id": "b5ac0514-6592-42a4-8c19-e26b8626673f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.755938+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are no significant puddles or standing water. It is likely that it has been raining recently, but the rain has stopped by the time the image was captured.", "snapshot": {"id": "9f358878-8906-4473-8f67-4f19eb64d037", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/9f358878-8906-4473-8f67-4f19eb64d037.png", "timestamp": "2024-02-15T20:38:10.247357+00:00"}}, {"id": "5b09b905-ec99-4337-bf24-ad7fa7a3ec4c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.414878+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "e414694b-df5d-49c0-8911-2e798c42f6ae", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/e414694b-df5d-49c0-8911-2e798c42f6ae.png", "timestamp": "2024-02-15T20:40:36.762070+00:00"}}, {"id": "a41bb7a6-8b42-40d7-ba0d-7c033232b558", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.173358+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly in both directions.", "snapshot": {"id": "e414694b-df5d-49c0-8911-2e798c42f6ae", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/e414694b-df5d-49c0-8911-2e798c42f6ae.png", "timestamp": "2024-02-15T20:40:36.762070+00:00"}}, {"id": "76ab156d-9654-4800-ae9b-b78030ab2961", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.564360+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "e414694b-df5d-49c0-8911-2e798c42f6ae", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/e414694b-df5d-49c0-8911-2e798c42f6ae.png", "timestamp": "2024-02-15T20:40:36.762070+00:00"}}, {"id": "38b8dd85-7ff1-4439-a12e-1fda9fbe624a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.893474+00:00", "label": "low", "label_explanation": "There is no visible water on the road surface.", "snapshot": {"id": "e414694b-df5d-49c0-8911-2e798c42f6ae", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/e414694b-df5d-49c0-8911-2e798c42f6ae.png", "timestamp": "2024-02-15T20:40:36.762070+00:00"}}, {"id": "e7baeff8-3766-49bd-a372-cd5029f0ffdd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.335965+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear, with no visible signs of rain or water on the road surface. The road is in good condition, with no visible potholes or cracks. There are trees on either side of the road and buildings in the background.", "snapshot": {"id": "e414694b-df5d-49c0-8911-2e798c42f6ae", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/e414694b-df5d-49c0-8911-2e798c42f6ae.png", "timestamp": "2024-02-15T20:40:36.762070+00:00"}}, {"id": "a53a2ecf-971c-4be4-a003-9a42b8ff5945", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.121693+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e414694b-df5d-49c0-8911-2e798c42f6ae", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/e414694b-df5d-49c0-8911-2e798c42f6ae.png", "timestamp": "2024-02-15T20:40:36.762070+00:00"}}, {"id": "89196b62-6d9c-4946-9174-982249006c42", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.202536+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable in both directions.", "snapshot": {"id": "c327a4bf-8318-4ea7-ab22-d0e7ba1b9655", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/c327a4bf-8318-4ea7-ab22-d0e7ba1b9655.png", "timestamp": "2024-02-15T20:47:48.439188+00:00"}}, {"id": "ce1d24e2-4b89-4dcb-8885-37af5bfa5852", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.435132+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "c327a4bf-8318-4ea7-ab22-d0e7ba1b9655", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/c327a4bf-8318-4ea7-ab22-d0e7ba1b9655.png", "timestamp": "2024-02-15T20:47:48.439188+00:00"}}, {"id": "abe3d63d-1fff-4fb7-a4f9-78fbd0a3d275", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.219153+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a traffic light at the intersection. There are several cars, a motorcycle, and pedestrians on the road. The road is lined with trees and buildings.", "snapshot": {"id": "c327a4bf-8318-4ea7-ab22-d0e7ba1b9655", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/c327a4bf-8318-4ea7-ab22-d0e7ba1b9655.png", "timestamp": "2024-02-15T20:47:48.439188+00:00"}}, {"id": "48acf908-ce51-4671-a9ff-27ea0a226049", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.964429+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several cars and a motorcycle on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "c327a4bf-8318-4ea7-ab22-d0e7ba1b9655", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/c327a4bf-8318-4ea7-ab22-d0e7ba1b9655.png", "timestamp": "2024-02-15T20:47:48.439188+00:00"}}, {"id": "fc42e053-0156-4967-8572-221a01901ec5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.627194+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not cover a significant portion of the road surface.", "snapshot": {"id": "c327a4bf-8318-4ea7-ab22-d0e7ba1b9655", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/c327a4bf-8318-4ea7-ab22-d0e7ba1b9655.png", "timestamp": "2024-02-15T20:47:48.439188+00:00"}}, {"id": "13b4cb1b-49de-4e2c-8c2f-d8cd842b3639", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.022197+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c327a4bf-8318-4ea7-ab22-d0e7ba1b9655", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/c327a4bf-8318-4ea7-ab22-d0e7ba1b9655.png", "timestamp": "2024-02-15T20:47:48.439188+00:00"}}, {"id": "30a1c4a6-5896-4653-bf78-3a010031cef8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.126410+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "b528c4b3-c631-44bf-ad4d-5c8c56579654", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/b528c4b3-c631-44bf-ad4d-5c8c56579654.png", "timestamp": "2024-02-15T20:43:02.044483+00:00"}}, {"id": "35f75dbd-6f26-4934-aea6-a284f1584f46", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.393691+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a pedestrian crossing. There are several cars on the road, as well as a few pedestrians and cyclists. The weather appears to be clear, with no visible rain or flooding.", "snapshot": {"id": "b528c4b3-c631-44bf-ad4d-5c8c56579654", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/b528c4b3-c631-44bf-ad4d-5c8c56579654.png", "timestamp": "2024-02-15T20:43:02.044483+00:00"}}, {"id": "9305bf9a-0d69-4a55-a2ba-0e0b73d6476a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.895666+00:00", "label": "low", "label_explanation": "There is no visible water on the road surface.", "snapshot": {"id": "b528c4b3-c631-44bf-ad4d-5c8c56579654", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/b528c4b3-c631-44bf-ad4d-5c8c56579654.png", "timestamp": "2024-02-15T20:43:02.044483+00:00"}}, {"id": "fd3fa620-2d54-4729-abcf-8e2376545bf8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.664581+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "b528c4b3-c631-44bf-ad4d-5c8c56579654", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/b528c4b3-c631-44bf-ad4d-5c8c56579654.png", "timestamp": "2024-02-15T20:43:02.044483+00:00"}}, {"id": "dbf79251-6e00-4531-a040-41801d211348", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.321341+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "b528c4b3-c631-44bf-ad4d-5c8c56579654", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/b528c4b3-c631-44bf-ad4d-5c8c56579654.png", "timestamp": "2024-02-15T20:43:02.044483+00:00"}}, {"id": "9136a4da-07d5-41ca-800d-b7b30fdfe255", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.214019+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b528c4b3-c631-44bf-ad4d-5c8c56579654", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/b528c4b3-c631-44bf-ad4d-5c8c56579654.png", "timestamp": "2024-02-15T20:43:02.044483+00:00"}}, {"id": "299f27e3-d225-4c13-8ad7-667453be14d2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.244581+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d.png", "timestamp": "2024-02-15T20:45:23.594427+00:00"}}, {"id": "d785f536-6b4d-42d8-a220-c12ab076c920", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:35.061524+00:00", "label": "easy", "label_explanation": "The traffic flow is moderate. There are a few cars on the road, but they are able to move without any significant delays.", "snapshot": {"id": "0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d.png", "timestamp": "2024-02-15T20:45:23.594427+00:00"}}, {"id": "2f1446f7-21d1-4883-8d8e-04e1b90820b7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.835630+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of flooding or significant water accumulation.", "snapshot": {"id": "0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d.png", "timestamp": "2024-02-15T20:45:23.594427+00:00"}}, {"id": "89964eb1-56f0-41b8-902a-b8b6ef6e6d2a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.547211+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several cars on the road, as well as a few pedestrians on the sidewalk.", "snapshot": {"id": "0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d.png", "timestamp": "2024-02-15T20:45:23.594427+00:00"}}, {"id": "039fe613-fcc5-45c7-8a65-3a0904f666c6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.421757+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d.png", "timestamp": "2024-02-15T20:45:23.594427+00:00"}}, {"id": "549628c2-69af-406f-b944-3d11f1f70427", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:34.657596+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry and there are no signs of water accumulation.", "snapshot": {"id": "0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/0ab6ca0b-0ef8-494a-9bbc-31ee0126c52d.png", "timestamp": "2024-02-15T20:45:23.594427+00:00"}}, {"id": "cc17331a-748c-4551-a454-c8a1c6c66980", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:27.399855+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions. The road is clear and passable in both directions.", "snapshot": {"id": "ff80fd90-6c91-43d5-b337-384fc82db717", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ff80fd90-6c91-43d5-b337-384fc82db717.png", "timestamp": "2024-02-15T20:33:11.425199+00:00"}}, {"id": "00e0f6be-823f-41f4-8ae3-51b67b106b68", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:27.103132+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move freely. There are no major traffic jams or delays.", "snapshot": {"id": "ff80fd90-6c91-43d5-b337-384fc82db717", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ff80fd90-6c91-43d5-b337-384fc82db717.png", "timestamp": "2024-02-15T20:33:11.425199+00:00"}}, {"id": "cfd44b60-ac6e-4034-b61b-9bf7a9936fd5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:26.885157+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not pose a hazard to vehicles or pedestrians.", "snapshot": {"id": "ff80fd90-6c91-43d5-b337-384fc82db717", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ff80fd90-6c91-43d5-b337-384fc82db717.png", "timestamp": "2024-02-15T20:33:11.425199+00:00"}}, {"id": "14c1cf65-18ed-4cf9-bd74-a5fedcc12245", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:26.639144+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road. The rain is not heavy, and it is not causing any significant traffic disruptions.", "snapshot": {"id": "ff80fd90-6c91-43d5-b337-384fc82db717", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ff80fd90-6c91-43d5-b337-384fc82db717.png", "timestamp": "2024-02-15T20:33:11.425199+00:00"}}, {"id": "7d86a004-e4db-41f5-a4e9-d99382dbba10", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:26.297645+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars, buses, and motorcycles. The road is lined with trees, and there are buildings and other structures in the background.", "snapshot": {"id": "ff80fd90-6c91-43d5-b337-384fc82db717", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ff80fd90-6c91-43d5-b337-384fc82db717.png", "timestamp": "2024-02-15T20:33:11.425199+00:00"}}, {"id": "77e11282-5f0d-46b3-9d3a-04db2915b430", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:26.097392+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ff80fd90-6c91-43d5-b337-384fc82db717", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ff80fd90-6c91-43d5-b337-384fc82db717.png", "timestamp": "2024-02-15T20:33:11.425199+00:00"}}, {"id": "0f2fe933-be27-4e16-8838-211264826165", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.540543+00:00", "label": "moderate", "label_explanation": "The traffic flow is moderate. While there are a significant number of vehicles on the road, they are able to move at a reasonable speed. There are no major congestion or delays visible in the image.", "snapshot": {"id": "ecb5ef90-6782-4179-91f5-73d1ffc0b9f7", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ecb5ef90-6782-4179-91f5-73d1ffc0b9f7.png", "timestamp": "2024-02-15T20:50:11.659859+00:00"}}, {"id": "302c7f61-b4c2-4f00-91da-1769c0b0d2c9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.048570+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation or reflection.", "snapshot": {"id": "ecb5ef90-6782-4179-91f5-73d1ffc0b9f7", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ecb5ef90-6782-4179-91f5-73d1ffc0b9f7.png", "timestamp": "2024-02-15T20:50:11.659859+00:00"}}, {"id": "fbbf7fbd-c40b-4ff8-aa28-09a2cea4c5f8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.746228+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The entire road surface is clear, allowing vehicles and pedestrians to move freely.", "snapshot": {"id": "ecb5ef90-6782-4179-91f5-73d1ffc0b9f7", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ecb5ef90-6782-4179-91f5-73d1ffc0b9f7.png", "timestamp": "2024-02-15T20:50:11.659859+00:00"}}, {"id": "1a4639ce-0a98-4afc-9077-c49affb7e812", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.260021+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of water accumulation or flooding. The road surface is clearly visible, with no obstructions or hazards caused by water.", "snapshot": {"id": "ecb5ef90-6782-4179-91f5-73d1ffc0b9f7", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ecb5ef90-6782-4179-91f5-73d1ffc0b9f7.png", "timestamp": "2024-02-15T20:50:11.659859+00:00"}}, {"id": "66f614ba-2639-4c6c-a2a4-13e4e3c1041f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.859134+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with several lanes, surrounded by buildings, trees, and other urban infrastructure. The road is relatively straight, with a slight bend to the right. It is a busy scene, with numerous vehicles, including cars, buses, and motorcycles, moving in both directions. Pedestrians are also present, walking on the sidewalks and crossing the street. The weather appears to be clear, with no visible rain or other adverse conditions.", "snapshot": {"id": "ecb5ef90-6782-4179-91f5-73d1ffc0b9f7", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ecb5ef90-6782-4179-91f5-73d1ffc0b9f7.png", "timestamp": "2024-02-15T20:50:11.659859+00:00"}}, {"id": "c00cfa85-8da3-4744-99b4-3fc5d4e268e0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:23.647161+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ecb5ef90-6782-4179-91f5-73d1ffc0b9f7", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/ecb5ef90-6782-4179-91f5-73d1ffc0b9f7.png", "timestamp": "2024-02-15T20:50:11.659859+00:00"}}, {"id": "beaae248-121a-400e-954a-109973e2b3fb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.765957+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars visible on the road. The cars are able to move freely, and there are no major obstructions or delays.", "snapshot": {"id": "aae8484d-d139-4a68-8c74-51f4d6296e4e", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/aae8484d-d139-4a68-8c74-51f4d6296e4e.png", "timestamp": "2024-02-15T20:52:37.148653+00:00"}}, {"id": "c3926c4f-c58e-453c-a53f-3c1acf205687", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.607179+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away.", "snapshot": {"id": "aae8484d-d139-4a68-8c74-51f4d6296e4e", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/aae8484d-d139-4a68-8c74-51f4d6296e4e.png", "timestamp": "2024-02-15T20:52:37.148653+00:00"}}, {"id": "0c811dc5-e805-4e3a-a039-e11a4d68603b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.368116+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain has stopped and the road is no longer actively wet.", "snapshot": {"id": "aae8484d-d139-4a68-8c74-51f4d6296e4e", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/aae8484d-d139-4a68-8c74-51f4d6296e4e.png", "timestamp": "2024-02-15T20:52:37.148653+00:00"}}, {"id": "39a03998-8351-4e31-87b4-041767307694", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.146974+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are a few trees on either side of the road, and buildings and other structures in the background.", "snapshot": {"id": "aae8484d-d139-4a68-8c74-51f4d6296e4e", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/aae8484d-d139-4a68-8c74-51f4d6296e4e.png", "timestamp": "2024-02-15T20:52:37.148653+00:00"}}, {"id": "5639aabb-235c-4f64-ae3f-0960b81bc982", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.968931+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "aae8484d-d139-4a68-8c74-51f4d6296e4e", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/aae8484d-d139-4a68-8c74-51f4d6296e4e.png", "timestamp": "2024-02-15T20:52:37.148653+00:00"}}, {"id": "3fd9a880-fceb-442a-9863-6f46b87fa09d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.959084+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "aae8484d-d139-4a68-8c74-51f4d6296e4e", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/aae8484d-d139-4a68-8c74-51f4d6296e4e.png", "timestamp": "2024-02-15T20:52:37.148653+00:00"}}, {"id": "ddadf35f-9731-4275-a2f8-592d5bddc8c2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.591527+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with several vehicles on the road. However, the vehicles are able to move freely, and there are no significant delays.", "snapshot": {"id": "23569041-fb34-4d9c-b1f8-30fa7042e3ed", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/23569041-fb34-4d9c-b1f8-30fa7042e3ed.png", "timestamp": "2024-02-15T20:55:03.611119+00:00"}}, {"id": "9a8974bf-2dad-475b-b35d-1b7c515a007b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.399324+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away.", "snapshot": {"id": "23569041-fb34-4d9c-b1f8-30fa7042e3ed", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/23569041-fb34-4d9c-b1f8-30fa7042e3ed.png", "timestamp": "2024-02-15T20:55:03.611119+00:00"}}, {"id": "2ab576c1-6354-4a89-9d91-8d54a92fff19", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.049654+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate lighting conditions. It is daytime, and the weather appears to be cloudy. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are several vehicles on the road, including cars and buses, as well as a few pedestrians on the sidewalk.", "snapshot": {"id": "23569041-fb34-4d9c-b1f8-30fa7042e3ed", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/23569041-fb34-4d9c-b1f8-30fa7042e3ed.png", "timestamp": "2024-02-15T20:55:03.611119+00:00"}}, {"id": "7f3ddc05-cd52-4aa2-b068-ec61e445186c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.209718+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain appears to have stopped, as there are no visible raindrops in the image.", "snapshot": {"id": "23569041-fb34-4d9c-b1f8-30fa7042e3ed", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/23569041-fb34-4d9c-b1f8-30fa7042e3ed.png", "timestamp": "2024-02-15T20:55:03.611119+00:00"}}, {"id": "b745c338-7d78-4c9e-888b-178f68fe45ef", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.833482+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "23569041-fb34-4d9c-b1f8-30fa7042e3ed", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/23569041-fb34-4d9c-b1f8-30fa7042e3ed.png", "timestamp": "2024-02-15T20:55:03.611119+00:00"}}, {"id": "e9ced6e5-dde4-4009-9634-f86c1c5df920", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.826910+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "23569041-fb34-4d9c-b1f8-30fa7042e3ed", "camera_id": "001535", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001535/23569041-fb34-4d9c-b1f8-30fa7042e3ed.png", "timestamp": "2024-02-15T20:55:03.611119+00:00"}}]}, {"id": "001381", "name": "R. DEODATO DE MORAES X AV MIN IVAN LINS. FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.010987, "longitude": -43.301528, "objects": ["image_corrupted", "image_description", "traffic", "rain", "road_blockade", "water_level"], "identifications": [{"id": "c50e624f-433e-4b60-9b59-fdd755d8c347", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:13.978070+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "06558e0f-4d4b-4303-b455-ad535b121cbd", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/06558e0f-4d4b-4303-b455-ad535b121cbd.png", "timestamp": "2024-02-15T20:29:59.134997+00:00"}}, {"id": "83ba2ce3-b2c3-4435-97a1-e820e48dba1f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:13.433058+00:00", "label": "moderate", "label_explanation": "There is some traffic on the road, but it is moving slowly due to the wet conditions.", "snapshot": {"id": "06558e0f-4d4b-4303-b455-ad535b121cbd", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/06558e0f-4d4b-4303-b455-ad535b121cbd.png", "timestamp": "2024-02-15T20:29:59.134997+00:00"}}, {"id": "4a1715ba-75b6-4ee6-9d98-ca9cdfcef03d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.966284+00:00", "label": "low", "label_explanation": "There are some small puddles on the road surface, but the water level is generally low.", "snapshot": {"id": "06558e0f-4d4b-4303-b455-ad535b121cbd", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/06558e0f-4d4b-4303-b455-ad535b121cbd.png", "timestamp": "2024-02-15T20:29:59.134997+00:00"}}, {"id": "83378464-a54c-4320-a3b9-fdb6ce754a4d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.703398+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "06558e0f-4d4b-4303-b455-ad535b121cbd", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/06558e0f-4d4b-4303-b455-ad535b121cbd.png", "timestamp": "2024-02-15T20:29:59.134997+00:00"}}, {"id": "b4f278ac-56da-4d24-8a7e-fc3bdd4ed156", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.305586+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime and the weather appears overcast. There are a few trees on either side of the road, and buildings and structures in the background. The road surface is wet from recent rain, with some small puddles visible.", "snapshot": {"id": "06558e0f-4d4b-4303-b455-ad535b121cbd", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/06558e0f-4d4b-4303-b455-ad535b121cbd.png", "timestamp": "2024-02-15T20:29:59.134997+00:00"}}, {"id": "2535951a-d921-4c4d-8137-87df0c9b752e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:11.787539+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "06558e0f-4d4b-4303-b455-ad535b121cbd", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/06558e0f-4d4b-4303-b455-ad535b121cbd.png", "timestamp": "2024-02-15T20:29:59.134997+00:00"}}, {"id": "0c7b706a-18af-4f66-b178-ea2738322c3e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.068174+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1.png", "timestamp": "2024-02-15T20:32:27.381731+00:00"}}, {"id": "9bd9b4f2-3505-489b-8b52-bba86dd3ea14", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:44.349088+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly with no major disruptions or congestion.", "snapshot": {"id": "e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1.png", "timestamp": "2024-02-15T20:32:27.381731+00:00"}}, {"id": "93db88d7-c182-4d3a-92e1-3f946f258d72", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:43.601310+00:00", "label": "low", "label_explanation": "The water level is low, as the road surface is mostly visible with only a few puddles.", "snapshot": {"id": "e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1.png", "timestamp": "2024-02-15T20:32:27.381731+00:00"}}, {"id": "33ddbe82-ab87-4d9e-9f11-42e180efa5f0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:42.860834+00:00", "label": "true", "label_explanation": "There is some rain present, as indicated by the wet road surface and the reflections on the road.", "snapshot": {"id": "e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1.png", "timestamp": "2024-02-15T20:32:27.381731+00:00"}}, {"id": "63050648-3b6e-4bd0-9632-6df75cfdab0c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:41.984797+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a few puddles of water.", "snapshot": {"id": "e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1.png", "timestamp": "2024-02-15T20:32:27.381731+00:00"}}, {"id": "b0885c01-e968-4713-9d0f-df0878a55fe0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:41.548077+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no major distortions or data loss.", "snapshot": {"id": "e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e139bd2e-3f12-40f2-9ea8-c9ed334bd1c1.png", "timestamp": "2024-02-15T20:32:27.381731+00:00"}}, {"id": "e3a62e8f-454c-477a-a03f-040ca311db5a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:53.706393+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free passage of vehicles.", "snapshot": {"id": "c6f1d286-c741-46d5-84f5-9b3f5fd233da", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c6f1d286-c741-46d5-84f5-9b3f5fd233da.png", "timestamp": "2024-02-15T20:49:42.754059+00:00"}}, {"id": "18afb070-d943-4962-aa81-a278b11e8063", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:53.479391+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "c6f1d286-c741-46d5-84f5-9b3f5fd233da", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c6f1d286-c741-46d5-84f5-9b3f5fd233da.png", "timestamp": "2024-02-15T20:49:42.754059+00:00"}}, {"id": "a207266f-2212-415a-9440-c8ee9e0c408c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:53.202445+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "c6f1d286-c741-46d5-84f5-9b3f5fd233da", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c6f1d286-c741-46d5-84f5-9b3f5fd233da.png", "timestamp": "2024-02-15T20:49:42.754059+00:00"}}, {"id": "53e298d1-baf9-4b7a-82a2-47a26e672b1b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.808426+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "c6f1d286-c741-46d5-84f5-9b3f5fd233da", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c6f1d286-c741-46d5-84f5-9b3f5fd233da.png", "timestamp": "2024-02-15T20:49:42.754059+00:00"}}, {"id": "718906b8-50e5-4131-bbe2-09172aca509c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.589052+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a few cars and a motorcycle in view. The road is surrounded by buildings and vegetation, and the weather appears to be overcast.", "snapshot": {"id": "c6f1d286-c741-46d5-84f5-9b3f5fd233da", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c6f1d286-c741-46d5-84f5-9b3f5fd233da.png", "timestamp": "2024-02-15T20:49:42.754059+00:00"}}, {"id": "2f3a95ec-9fef-4942-999b-061ae352ca88", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.366784+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c6f1d286-c741-46d5-84f5-9b3f5fd233da", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c6f1d286-c741-46d5-84f5-9b3f5fd233da.png", "timestamp": "2024-02-15T20:49:42.754059+00:00"}}, {"id": "7e77e53f-55be-4b23-a7ea-0bb425fa0880", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:19.357406+00:00", "label": "easy", "label_explanation": "The traffic is light, with a few cars visible in both directions.", "snapshot": {"id": "2547b5b5-7ab9-445d-a07a-4e42bc6fe952", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2547b5b5-7ab9-445d-a07a-4e42bc6fe952.png", "timestamp": "2024-02-15T20:35:04.307835+00:00"}}, {"id": "44dbd094-09f2-4c60-aa03-7e171dd4d806", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.778251+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a slight bend to the right. It is daytime and the weather is cloudy with some light rain. There are trees and buildings on either side of the road, and cars are visible in both directions.", "snapshot": {"id": "2547b5b5-7ab9-445d-a07a-4e42bc6fe952", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2547b5b5-7ab9-445d-a07a-4e42bc6fe952.png", "timestamp": "2024-02-15T20:35:04.307835+00:00"}}, {"id": "8fed1e8b-55c9-4d13-8bac-d6a7f088b75e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.145534+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2547b5b5-7ab9-445d-a07a-4e42bc6fe952", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2547b5b5-7ab9-445d-a07a-4e42bc6fe952.png", "timestamp": "2024-02-15T20:35:04.307835+00:00"}}, {"id": "34d06822-bdc6-4368-80e2-8d55734e4f79", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.033795+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "2547b5b5-7ab9-445d-a07a-4e42bc6fe952", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2547b5b5-7ab9-445d-a07a-4e42bc6fe952.png", "timestamp": "2024-02-15T20:35:04.307835+00:00"}}, {"id": "41841b91-6f92-4792-a1da-466a5f332dd6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.807200+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few small puddles.", "snapshot": {"id": "2547b5b5-7ab9-445d-a07a-4e42bc6fe952", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2547b5b5-7ab9-445d-a07a-4e42bc6fe952.png", "timestamp": "2024-02-15T20:35:04.307835+00:00"}}, {"id": "770527f5-3567-442c-8366-96a5265cbda3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.161685+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles of water on the road.", "snapshot": {"id": "2547b5b5-7ab9-445d-a07a-4e42bc6fe952", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2547b5b5-7ab9-445d-a07a-4e42bc6fe952.png", "timestamp": "2024-02-15T20:35:04.307835+00:00"}}, {"id": "70be6b34-2d54-4e92-b6f0-65b41716b53b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:42.902262+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles on the road.", "snapshot": {"id": "330937a3-6e74-441e-bb6f-c4f8a475ef2e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/330937a3-6e74-441e-bb6f-c4f8a475ef2e.png", "timestamp": "2024-02-15T20:37:30.181572+00:00"}}, {"id": "bf794106-4d42-4f27-b1ff-0e5d3108e9a5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:43.475435+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no visible congestion.", "snapshot": {"id": "330937a3-6e74-441e-bb6f-c4f8a475ef2e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/330937a3-6e74-441e-bb6f-c4f8a475ef2e.png", "timestamp": "2024-02-15T20:37:30.181572+00:00"}}, {"id": "cc4d9082-0546-4b1e-8fff-dc2f39c1b980", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:43.949497+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "330937a3-6e74-441e-bb6f-c4f8a475ef2e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/330937a3-6e74-441e-bb6f-c4f8a475ef2e.png", "timestamp": "2024-02-15T20:37:30.181572+00:00"}}, {"id": "4747bc2f-9b87-450e-91a1-58fc118e7ec6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:40.721953+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a slight bend to the right. It is daytime and the weather is cloudy. There are trees and buildings on either side of the road, and cars are visible in both directions.", "snapshot": {"id": "330937a3-6e74-441e-bb6f-c4f8a475ef2e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/330937a3-6e74-441e-bb6f-c4f8a475ef2e.png", "timestamp": "2024-02-15T20:37:30.181572+00:00"}}, {"id": "1d8a5d5f-dfd3-4bae-8dd6-a1a8cdb8eed1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:42.177108+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road.", "snapshot": {"id": "330937a3-6e74-441e-bb6f-c4f8a475ef2e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/330937a3-6e74-441e-bb6f-c4f8a475ef2e.png", "timestamp": "2024-02-15T20:37:30.181572+00:00"}}, {"id": "3465c857-a013-4909-8823-85261a1adfb3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:40.005383+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "330937a3-6e74-441e-bb6f-c4f8a475ef2e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/330937a3-6e74-441e-bb6f-c4f8a475ef2e.png", "timestamp": "2024-02-15T20:37:30.181572+00:00"}}, {"id": "8f2687a3-81f9-4017-a7af-a38e38c3ee44", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:20.339387+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is still visible and dry.", "snapshot": {"id": "a691810d-73ab-42bf-b5da-d0d8e323e7ce", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/a691810d-73ab-42bf-b5da-d0d8e323e7ce.png", "timestamp": "2024-02-15T20:40:02.327749+00:00"}}, {"id": "1c7ce75a-3a22-4c61-a373-001bdc91909d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:17.700105+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a691810d-73ab-42bf-b5da-d0d8e323e7ce", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/a691810d-73ab-42bf-b5da-d0d8e323e7ce.png", "timestamp": "2024-02-15T20:40:02.327749+00:00"}}, {"id": "c3969a1c-70b3-4a62-8f6c-15c34e410f4f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:19.335682+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also puddles of water on the road, which are reflecting the light from the streetlights.", "snapshot": {"id": "a691810d-73ab-42bf-b5da-d0d8e323e7ce", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/a691810d-73ab-42bf-b5da-d0d8e323e7ce.png", "timestamp": "2024-02-15T20:40:02.327749+00:00"}}, {"id": "0c6c3694-82a1-4ef7-9486-e255809cb1be", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.636506+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "a691810d-73ab-42bf-b5da-d0d8e323e7ce", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/a691810d-73ab-42bf-b5da-d0d8e323e7ce.png", "timestamp": "2024-02-15T20:40:02.327749+00:00"}}, {"id": "7d7b58a3-9ff6-4789-9ae6-337cc66eb549", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.355283+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "a691810d-73ab-42bf-b5da-d0d8e323e7ce", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/a691810d-73ab-42bf-b5da-d0d8e323e7ce.png", "timestamp": "2024-02-15T20:40:02.327749+00:00"}}, {"id": "dd5cb86d-656f-46e3-8378-ee16079cb34a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:18.550968+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with cars, buses, and motorbikes present. The weather appears to be overcast, with dark clouds covering the sky. There are trees on either side of the road, and buildings and structures in the background.", "snapshot": {"id": "a691810d-73ab-42bf-b5da-d0d8e323e7ce", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/a691810d-73ab-42bf-b5da-d0d8e323e7ce.png", "timestamp": "2024-02-15T20:40:02.327749+00:00"}}, {"id": "758c4c28-d97c-437b-85ee-f5d017aa4551", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.295925+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and free of any obstructions.", "snapshot": {"id": "b6312a50-f42d-4410-a6d9-2d104880ba0e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/b6312a50-f42d-4410-a6d9-2d104880ba0e.png", "timestamp": "2024-02-15T20:47:18.846141+00:00"}}, {"id": "59f6a87a-e7db-48dd-832d-e2a3449ba70d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:31.011139+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a reasonable speed. The wet road conditions may cause some vehicles to slow down, but overall the traffic is flowing smoothly.", "snapshot": {"id": "b6312a50-f42d-4410-a6d9-2d104880ba0e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/b6312a50-f42d-4410-a6d9-2d104880ba0e.png", "timestamp": "2024-02-15T20:47:18.846141+00:00"}}, {"id": "b1a77a25-706e-44bd-b527-cdfc5e4507d0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:30.461087+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles of water on the road. The sky is overcast with dark clouds, suggesting that it is raining or has recently rained.", "snapshot": {"id": "b6312a50-f42d-4410-a6d9-2d104880ba0e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/b6312a50-f42d-4410-a6d9-2d104880ba0e.png", "timestamp": "2024-02-15T20:47:18.846141+00:00"}}, {"id": "61d72d44-d459-4835-9044-f6c9409bab0a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:30.204572+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a slight bend to the right. It is daytime, and the weather appears overcast with dark clouds covering the sky. There are several vehicles on the road, including cars, buses, and trucks. The road surface is wet, and there are some small puddles of water on the road.", "snapshot": {"id": "b6312a50-f42d-4410-a6d9-2d104880ba0e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/b6312a50-f42d-4410-a6d9-2d104880ba0e.png", "timestamp": "2024-02-15T20:47:18.846141+00:00"}}, {"id": "1218596f-01da-470d-9e39-6afc4faae97c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:29.892535+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b6312a50-f42d-4410-a6d9-2d104880ba0e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/b6312a50-f42d-4410-a6d9-2d104880ba0e.png", "timestamp": "2024-02-15T20:47:18.846141+00:00"}}, {"id": "34e0072f-5d15-4826-849d-d7e5bd76f9c3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:30.667339+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some small puddles of water on the road, but they are not deep and do not pose a significant hazard to vehicles.", "snapshot": {"id": "b6312a50-f42d-4410-a6d9-2d104880ba0e", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/b6312a50-f42d-4410-a6d9-2d104880ba0e.png", "timestamp": "2024-02-15T20:47:18.846141+00:00"}}, {"id": "11329336-4423-4f3c-83e7-7bfaee5d9361", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:44.578588+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae.png", "timestamp": "2024-02-15T20:42:32.566303+00:00"}}, {"id": "48796719-d301-4aab-b80e-20214b2a586c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:44.321860+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae.png", "timestamp": "2024-02-15T20:42:32.566303+00:00"}}, {"id": "2784b5df-85c9-4b3a-8e0d-8db0ff8d142d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:44.845198+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae.png", "timestamp": "2024-02-15T20:42:32.566303+00:00"}}, {"id": "84a0f73f-72bd-4a8b-ba03-e0b93120173f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:43.594826+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy and rainy.", "snapshot": {"id": "e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae.png", "timestamp": "2024-02-15T20:42:32.566303+00:00"}}, {"id": "4c081515-2516-4b55-b0fe-71afcb0d9419", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:43.088036+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae.png", "timestamp": "2024-02-15T20:42:32.566303+00:00"}}, {"id": "061cd95f-c876-4320-9c33-73a2ae29e3a6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:43.875330+00:00", "label": "true", "label_explanation": "The road surface is wet and there are visible signs of rain.", "snapshot": {"id": "e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/e779aeb7-0dc0-4f39-a4d0-e84e5506f8ae.png", "timestamp": "2024-02-15T20:42:32.566303+00:00"}}, {"id": "c0030717-8691-49e6-8a62-7518a3edb124", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:05.757158+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no major distortions or data loss.", "snapshot": {"id": "2bc22840-8c70-4a1e-ab3f-8660145607be", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2bc22840-8c70-4a1e-ab3f-8660145607be.png", "timestamp": "2024-02-15T20:44:55.794790+00:00"}}, {"id": "1be86ff9-cb29-47f5-a590-61c22c9d2966", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:07.200347+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades.", "snapshot": {"id": "2bc22840-8c70-4a1e-ab3f-8660145607be", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2bc22840-8c70-4a1e-ab3f-8660145607be.png", "timestamp": "2024-02-15T20:44:55.794790+00:00"}}, {"id": "e4f42ec6-4e1d-443f-b1c5-671be3850260", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:06.944631+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "2bc22840-8c70-4a1e-ab3f-8660145607be", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2bc22840-8c70-4a1e-ab3f-8660145607be.png", "timestamp": "2024-02-15T20:44:55.794790+00:00"}}, {"id": "04bd1790-a533-4f65-af0f-b6ddb1cd52a5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:06.525395+00:00", "label": "low", "label_explanation": "The road surface is mostly dry, with only a few small puddles scattered around.", "snapshot": {"id": "2bc22840-8c70-4a1e-ab3f-8660145607be", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2bc22840-8c70-4a1e-ab3f-8660145607be.png", "timestamp": "2024-02-15T20:44:55.794790+00:00"}}, {"id": "d4be3c02-93fa-4867-9801-0de59bedfa62", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:06.253141+00:00", "label": "true", "label_explanation": "There is a light drizzle on the road, with small water droplets visible on the windshield.", "snapshot": {"id": "2bc22840-8c70-4a1e-ab3f-8660145607be", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2bc22840-8c70-4a1e-ab3f-8660145607be.png", "timestamp": "2024-02-15T20:44:55.794790+00:00"}}, {"id": "bcbae008-8da0-4258-97a6-1ad03b21fa33", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:06.003849+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with cars, buses, and a few pedestrians. It is daytime and the weather appears cloudy with a hint of rain.", "snapshot": {"id": "2bc22840-8c70-4a1e-ab3f-8660145607be", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/2bc22840-8c70-4a1e-ab3f-8660145607be.png", "timestamp": "2024-02-15T20:44:55.794790+00:00"}}, {"id": "83e41514-a34a-4d60-88d8-2e7293d93298", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:17.253384+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a slight curve to the right. It is daytime and the weather appears overcast. There are trees and buildings on either side of the road, with a mountain range visible in the background. The road is wet from recent rain, with some small puddles visible.", "snapshot": {"id": "1aac844e-b899-4268-9c1e-a6af9c71a565", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/1aac844e-b899-4268-9c1e-a6af9c71a565.png", "timestamp": "2024-02-15T20:52:07.299210+00:00"}}, {"id": "67433981-a28a-45b6-8ba0-af729bc7279e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:17.054641+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1aac844e-b899-4268-9c1e-a6af9c71a565", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/1aac844e-b899-4268-9c1e-a6af9c71a565.png", "timestamp": "2024-02-15T20:52:07.299210+00:00"}}, {"id": "b2d59c9f-d055-4674-ab48-ab6fd3788bf8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:17.954523+00:00", "label": "low", "label_explanation": "There are some small puddles on the road, but the majority of the road surface is not submerged.", "snapshot": {"id": "1aac844e-b899-4268-9c1e-a6af9c71a565", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/1aac844e-b899-4268-9c1e-a6af9c71a565.png", "timestamp": "2024-02-15T20:52:07.299210+00:00"}}, {"id": "4477435c-ed86-4486-9562-9def3b0b957d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:17.705387+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "1aac844e-b899-4268-9c1e-a6af9c71a565", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/1aac844e-b899-4268-9c1e-a6af9c71a565.png", "timestamp": "2024-02-15T20:52:07.299210+00:00"}}, {"id": "aad44928-b963-4487-945a-fe886483bee4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:18.196254+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with cars, trucks, and buses visible. Traffic is moving slowly due to the wet conditions.", "snapshot": {"id": "1aac844e-b899-4268-9c1e-a6af9c71a565", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/1aac844e-b899-4268-9c1e-a6af9c71a565.png", "timestamp": "2024-02-15T20:52:07.299210+00:00"}}, {"id": "62e2c622-78c6-4943-9482-f93837fa9e85", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:18.484142+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is able to flow freely.", "snapshot": {"id": "1aac844e-b899-4268-9c1e-a6af9c71a565", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/1aac844e-b899-4268-9c1e-a6af9c71a565.png", "timestamp": "2024-02-15T20:52:07.299210+00:00"}}, {"id": "38203394-54f5-4bc9-8008-7b7a28e91f63", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:43.048909+00:00", "label": "free", "label_explanation": "There are no road blockades present, and the road is clear for traffic.", "snapshot": {"id": "c9f91298-fdac-40ab-bc1b-aef5477539e3", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c9f91298-fdac-40ab-bc1b-aef5477539e3.png", "timestamp": "2024-02-15T20:54:31.834920+00:00"}}, {"id": "e32408a9-6954-48f2-bf5f-dd832ea60ad3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:42.837214+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars, buses, and motorbikes moving at a steady pace.", "snapshot": {"id": "c9f91298-fdac-40ab-bc1b-aef5477539e3", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c9f91298-fdac-40ab-bc1b-aef5477539e3.png", "timestamp": "2024-02-15T20:54:31.834920+00:00"}}, {"id": "e1f98e3d-1e8f-41d5-83a3-86300d7e2d95", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:42.596690+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present.", "snapshot": {"id": "c9f91298-fdac-40ab-bc1b-aef5477539e3", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c9f91298-fdac-40ab-bc1b-aef5477539e3.png", "timestamp": "2024-02-15T20:54:31.834920+00:00"}}, {"id": "e87169e2-b52a-4d03-87ec-edc26a22b21a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:42.358257+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, with small puddles scattered across the surface.", "snapshot": {"id": "c9f91298-fdac-40ab-bc1b-aef5477539e3", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c9f91298-fdac-40ab-bc1b-aef5477539e3.png", "timestamp": "2024-02-15T20:54:31.834920+00:00"}}, {"id": "c443cf08-aa74-4386-a206-852c9fe41241", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:42.098521+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with cars, buses, and motorbikes. The road is wet from recent rain, with small puddles scattered across the surface. On the left side of the road, there are several shops and restaurants, while the right side is dominated by a large grassy area with trees.", "snapshot": {"id": "c9f91298-fdac-40ab-bc1b-aef5477539e3", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c9f91298-fdac-40ab-bc1b-aef5477539e3.png", "timestamp": "2024-02-15T20:54:31.834920+00:00"}}, {"id": "b1ef4821-55bd-459f-b554-04d522ad8eeb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:41.909709+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c9f91298-fdac-40ab-bc1b-aef5477539e3", "camera_id": "001381", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001381/c9f91298-fdac-40ab-bc1b-aef5477539e3.png", "timestamp": "2024-02-15T20:54:31.834920+00:00"}}]}, {"id": "000221", "name": "R. BENEDITO HIP\u00d3LITO X R. CARMO NETO", "rtsp_url": "rtsp://admin:7LANMSTR@10.52.19.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909147, "longitude": -43.200377, "objects": ["image_description", "image_corrupted", "water_level", "rain", "road_blockade", "traffic"], "identifications": []}, {"id": "001499", "name": "R. VISCONDE DE SANTA ISABEL X R. ALEXANDRE CALAZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91696776, "longitude": -43.25990721, "objects": ["image_corrupted", "water_level", "image_description", "rain", "road_blockade", "traffic"], "identifications": [{"id": "a044c387-381d-4817-9e18-4d187cf73cb1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.169261+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "f209ee3b-3028-42a4-9bae-8ee96ffae666", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/f209ee3b-3028-42a4-9bae-8ee96ffae666.png", "timestamp": "2024-02-15T20:30:09.488532+00:00"}}, {"id": "135c10c5-2ee2-4ec6-8daf-e6c5fe7d4fae", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:27.856970+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "f209ee3b-3028-42a4-9bae-8ee96ffae666", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/f209ee3b-3028-42a4-9bae-8ee96ffae666.png", "timestamp": "2024-02-15T20:30:09.488532+00:00"}}, {"id": "c2e1b972-158a-4d99-b3dc-3f1d38816b58", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:27.055819+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including a bus, cars, and motorcycles. The road is lined with trees and buildings.", "snapshot": {"id": "f209ee3b-3028-42a4-9bae-8ee96ffae666", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/f209ee3b-3028-42a4-9bae-8ee96ffae666.png", "timestamp": "2024-02-15T20:30:09.488532+00:00"}}, {"id": "d2d38784-4aad-4268-bbf7-f82218ec8d10", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.463132+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "f209ee3b-3028-42a4-9bae-8ee96ffae666", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/f209ee3b-3028-42a4-9bae-8ee96ffae666.png", "timestamp": "2024-02-15T20:30:09.488532+00:00"}}, {"id": "9af01159-0e99-4e34-b06a-896f8b4f2845", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:26.649456+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f209ee3b-3028-42a4-9bae-8ee96ffae666", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/f209ee3b-3028-42a4-9bae-8ee96ffae666.png", "timestamp": "2024-02-15T20:30:09.488532+00:00"}}, {"id": "e12d76cc-4ebc-46a4-9a28-5e2407523359", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:27.367979+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "f209ee3b-3028-42a4-9bae-8ee96ffae666", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/f209ee3b-3028-42a4-9bae-8ee96ffae666.png", "timestamp": "2024-02-15T20:30:09.488532+00:00"}}, {"id": "61ca9f70-311b-44f6-b3aa-0c55dc8d8eb9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.200376+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "227159bf-a98b-4b5e-a35a-2ee55b0576af", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/227159bf-a98b-4b5e-a35a-2ee55b0576af.png", "timestamp": "2024-02-15T20:32:34.735742+00:00"}}, {"id": "b05b5d05-7125-413f-95e5-1f789ed59678", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.124295+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "227159bf-a98b-4b5e-a35a-2ee55b0576af", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/227159bf-a98b-4b5e-a35a-2ee55b0576af.png", "timestamp": "2024-02-15T20:32:34.735742+00:00"}}, {"id": "f45c54ec-3d2b-40f1-b8d5-77e37f06bad9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:51.368419+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "227159bf-a98b-4b5e-a35a-2ee55b0576af", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/227159bf-a98b-4b5e-a35a-2ee55b0576af.png", "timestamp": "2024-02-15T20:32:34.735742+00:00"}}, {"id": "b57bd101-b869-44e6-a1dd-29106a0c8572", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.767898+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "227159bf-a98b-4b5e-a35a-2ee55b0576af", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/227159bf-a98b-4b5e-a35a-2ee55b0576af.png", "timestamp": "2024-02-15T20:32:34.735742+00:00"}}, {"id": "4fd04c50-f0f1-41ff-b891-16170842256f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.844799+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars and buses, and a few trees on either side of the road.", "snapshot": {"id": "227159bf-a98b-4b5e-a35a-2ee55b0576af", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/227159bf-a98b-4b5e-a35a-2ee55b0576af.png", "timestamp": "2024-02-15T20:32:34.735742+00:00"}}, {"id": "021e406a-a35e-41ce-b39a-0a49aa6e214b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:49.589527+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "227159bf-a98b-4b5e-a35a-2ee55b0576af", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/227159bf-a98b-4b5e-a35a-2ee55b0576af.png", "timestamp": "2024-02-15T20:32:34.735742+00:00"}}, {"id": "5d80acea-8a6e-41ec-892d-5a003ccf2bf7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.441134+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "5688bd91-0315-4365-bb2e-07914e7649b4", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/5688bd91-0315-4365-bb2e-07914e7649b4.png", "timestamp": "2024-02-15T20:45:02.066412+00:00"}}, {"id": "b4a38609-0d6d-4cdc-bc77-46ebdf6691ed", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.996519+00:00", "label": "low", "label_explanation": "There is no standing water on the road, but the road surface is wet.", "snapshot": {"id": "5688bd91-0315-4365-bb2e-07914e7649b4", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/5688bd91-0315-4365-bb2e-07914e7649b4.png", "timestamp": "2024-02-15T20:45:02.066412+00:00"}}, {"id": "0fb95e92-ddb7-4543-a146-376812e6222d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.407224+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are water droplets on the camera lens.", "snapshot": {"id": "5688bd91-0315-4365-bb2e-07914e7649b4", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/5688bd91-0315-4365-bb2e-07914e7649b4.png", "timestamp": "2024-02-15T20:45:02.066412+00:00"}}, {"id": "94fceed7-80b3-47a4-b9e3-38d81c8111d4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:17.689354+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with several cars on the road.", "snapshot": {"id": "5688bd91-0315-4365-bb2e-07914e7649b4", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/5688bd91-0315-4365-bb2e-07914e7649b4.png", "timestamp": "2024-02-15T20:45:02.066412+00:00"}}, {"id": "44491a36-c568-4f84-aa3b-a55bb8811b9b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.022105+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is raining, and the road is wet but not flooded. There are several cars on the road, and the traffic appears to be moderate.", "snapshot": {"id": "5688bd91-0315-4365-bb2e-07914e7649b4", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/5688bd91-0315-4365-bb2e-07914e7649b4.png", "timestamp": "2024-02-15T20:45:02.066412+00:00"}}, {"id": "3c2603c2-9d34-4879-861c-47ca92fef6c4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.768435+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5688bd91-0315-4365-bb2e-07914e7649b4", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/5688bd91-0315-4365-bb2e-07914e7649b4.png", "timestamp": "2024-02-15T20:45:02.066412+00:00"}}, {"id": "a250e5b7-ff6e-45e8-b428-7cbbdba2ec0b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:11.771929+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "ece5b559-1711-42ae-82bd-50070e5021e1", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/ece5b559-1711-42ae-82bd-50070e5021e1.png", "timestamp": "2024-02-15T20:35:01.939745+00:00"}}, {"id": "941e6d46-3c99-489d-82d1-f297cbd86da9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:11.292338+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "ece5b559-1711-42ae-82bd-50070e5021e1", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/ece5b559-1711-42ae-82bd-50070e5021e1.png", "timestamp": "2024-02-15T20:35:01.939745+00:00"}}, {"id": "446842dd-6442-4dba-b25c-4f7115eaeaac", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.935315+00:00", "label": "true", "label_explanation": "The road surface is partially wet, with some dry patches visible. There are also small puddles of water on the road, indicating that it has been raining recently.", "snapshot": {"id": "023ff0ae-20fe-4784-9ff0-5af9d2bc165a", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/023ff0ae-20fe-4784-9ff0-5af9d2bc165a.png", "timestamp": "2024-02-15T20:37:38.067297+00:00"}}, {"id": "1f2ac834-3a5c-4876-8e85-52c5db79b4b7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.585436+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for vehicle movement. The road surface is partially wet, with some dry patches visible. There are trees on either side of the road, and buildings and other structures can be seen in the background. The image is clear and provides a good view of the road and its surroundings.", "snapshot": {"id": "023ff0ae-20fe-4784-9ff0-5af9d2bc165a", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/023ff0ae-20fe-4784-9ff0-5af9d2bc165a.png", "timestamp": "2024-02-15T20:37:38.067297+00:00"}}, {"id": "5bf7dbc8-a33e-472a-8fa9-54f6331352d4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.501360+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry, and vehicles can navigate the road without difficulty.", "snapshot": {"id": "023ff0ae-20fe-4784-9ff0-5af9d2bc165a", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/023ff0ae-20fe-4784-9ff0-5af9d2bc165a.png", "timestamp": "2024-02-15T20:37:38.067297+00:00"}}, {"id": "b5bf92d2-b3eb-4222-8be0-d791338f3b30", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.982645+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "023ff0ae-20fe-4784-9ff0-5af9d2bc165a", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/023ff0ae-20fe-4784-9ff0-5af9d2bc165a.png", "timestamp": "2024-02-15T20:37:38.067297+00:00"}}, {"id": "984f8ad9-0c58-4afc-a447-c9098c921e5e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.748825+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "023ff0ae-20fe-4784-9ff0-5af9d2bc165a", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/023ff0ae-20fe-4784-9ff0-5af9d2bc165a.png", "timestamp": "2024-02-15T20:37:38.067297+00:00"}}, {"id": "0bb174f0-5c7e-41f6-ad82-1c94c2ec211d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.340562+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate, with a few vehicles visible in the image. The vehicles are able to move freely, and there are no significant delays or obstructions.", "snapshot": {"id": "023ff0ae-20fe-4784-9ff0-5af9d2bc165a", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/023ff0ae-20fe-4784-9ff0-5af9d2bc165a.png", "timestamp": "2024-02-15T20:37:38.067297+00:00"}}, {"id": "d11a77da-e6e9-48d8-8fe2-7dae5f1cb3b2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.239637+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "953205d4-077c-45ce-ab64-a2b21cbbc02d", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/953205d4-077c-45ce-ab64-a2b21cbbc02d.png", "timestamp": "2024-02-15T20:40:10.615908+00:00"}}, {"id": "beb5e2e2-7ecc-4e0e-88e6-68e74e211ac9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.789747+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "953205d4-077c-45ce-ab64-a2b21cbbc02d", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/953205d4-077c-45ce-ab64-a2b21cbbc02d.png", "timestamp": "2024-02-15T20:40:10.615908+00:00"}}, {"id": "8f8bc182-ff56-44ad-a0dd-7b9696b0e9b2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.938286+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "953205d4-077c-45ce-ab64-a2b21cbbc02d", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/953205d4-077c-45ce-ab64-a2b21cbbc02d.png", "timestamp": "2024-02-15T20:40:10.615908+00:00"}}, {"id": "00e6be83-1ed4-4a01-9ee2-a4c9746fdb43", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.537141+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rainfall. There are several parked cars on the side of the road, and a few trees on either side of the road.", "snapshot": {"id": "953205d4-077c-45ce-ab64-a2b21cbbc02d", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/953205d4-077c-45ce-ab64-a2b21cbbc02d.png", "timestamp": "2024-02-15T20:40:10.615908+00:00"}}, {"id": "415559a5-7f88-4141-95f7-6545334fba69", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:25.524153+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a few cars driving in both directions. Traffic is able to flow smoothly, as the water on the road surface is not causing any major disruptions.", "snapshot": {"id": "953205d4-077c-45ce-ab64-a2b21cbbc02d", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/953205d4-077c-45ce-ab64-a2b21cbbc02d.png", "timestamp": "2024-02-15T20:40:10.615908+00:00"}}, {"id": "8bf93b8a-3d71-4593-9143-6d80453d1990", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.508227+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "953205d4-077c-45ce-ab64-a2b21cbbc02d", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/953205d4-077c-45ce-ab64-a2b21cbbc02d.png", "timestamp": "2024-02-15T20:40:10.615908+00:00"}}, {"id": "d59249fb-7352-46c8-8db5-dcd0876d2495", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.865516+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "29edc993-f579-42eb-9a74-4f100942657e", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/29edc993-f579-42eb-9a74-4f100942657e.png", "timestamp": "2024-02-15T20:42:38.184404+00:00"}}, {"id": "afbf5412-2484-46af-953e-6f299bbc2daa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.375559+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rainfall. There are several parked cars on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "29edc993-f579-42eb-9a74-4f100942657e", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/29edc993-f579-42eb-9a74-4f100942657e.png", "timestamp": "2024-02-15T20:42:38.184404+00:00"}}, {"id": "9a01ca8e-fa25-40b2-928f-7d995aa6ac4e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.595647+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "29edc993-f579-42eb-9a74-4f100942657e", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/29edc993-f579-42eb-9a74-4f100942657e.png", "timestamp": "2024-02-15T20:42:38.184404+00:00"}}, {"id": "4aa3297e-94a3-44bb-9810-1f1abc769d33", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.359395+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a few cars driving in both directions. Traffic is able to flow smoothly, as the water on the road is not causing any major disruptions.", "snapshot": {"id": "29edc993-f579-42eb-9a74-4f100942657e", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/29edc993-f579-42eb-9a74-4f100942657e.png", "timestamp": "2024-02-15T20:42:38.184404+00:00"}}, {"id": "ba524513-694d-41a6-a6eb-8eeb037958db", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.090569+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "29edc993-f579-42eb-9a74-4f100942657e", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/29edc993-f579-42eb-9a74-4f100942657e.png", "timestamp": "2024-02-15T20:42:38.184404+00:00"}}, {"id": "ee5e6e7a-6bed-45d2-8f2d-986f0260e04b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.972143+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "29edc993-f579-42eb-9a74-4f100942657e", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/29edc993-f579-42eb-9a74-4f100942657e.png", "timestamp": "2024-02-15T20:42:38.184404+00:00"}}, {"id": "cbeae63d-4682-4e34-8238-fc2254c362b8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.864816+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road.", "snapshot": {"id": "3bb6a442-a483-47bd-9388-9d2818c9c796", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/3bb6a442-a483-47bd-9388-9d2818c9c796.png", "timestamp": "2024-02-15T20:47:26.030237+00:00"}}, {"id": "9da52693-bd83-4c4c-8704-b0d1250ed8a7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.216251+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both vehicular and pedestrian traffic. The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "3bb6a442-a483-47bd-9388-9d2818c9c796", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/3bb6a442-a483-47bd-9388-9d2818c9c796.png", "timestamp": "2024-02-15T20:47:26.030237+00:00"}}, {"id": "20669aa9-3556-4e6a-aebd-b7496c55a930", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.336914+00:00", "label": "low", "label_explanation": "There is no standing water or puddles on the road surface.", "snapshot": {"id": "3bb6a442-a483-47bd-9388-9d2818c9c796", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/3bb6a442-a483-47bd-9388-9d2818c9c796.png", "timestamp": "2024-02-15T20:47:26.030237+00:00"}}, {"id": "8309f974-3179-434f-9e9c-0b4d3b8cfae0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.591516+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "3bb6a442-a483-47bd-9388-9d2818c9c796", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/3bb6a442-a483-47bd-9388-9d2818c9c796.png", "timestamp": "2024-02-15T20:47:26.030237+00:00"}}, {"id": "635fc9c3-782a-45f7-81c1-edcdbc3d2e54", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.524339+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions.", "snapshot": {"id": "3bb6a442-a483-47bd-9388-9d2818c9c796", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/3bb6a442-a483-47bd-9388-9d2818c9c796.png", "timestamp": "2024-02-15T20:47:26.030237+00:00"}}, {"id": "81c0050b-be8c-44a0-970c-b2035676d4d4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.014357+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3bb6a442-a483-47bd-9388-9d2818c9c796", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/3bb6a442-a483-47bd-9388-9d2818c9c796.png", "timestamp": "2024-02-15T20:47:26.030237+00:00"}}, {"id": "6ed83252-bdef-423d-aa81-89e637e60091", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.634994+00:00", "label": "low", "label_explanation": "While the road is wet, there are no significant puddles or water accumulation observed.", "snapshot": {"id": "4787cd4b-ecfc-4cc2-abfc-e848098bdeae", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/4787cd4b-ecfc-4cc2-abfc-e848098bdeae.png", "timestamp": "2024-02-15T20:54:42.214010+00:00"}}, {"id": "755792d7-4585-4ff5-8a17-1c2cc9b085f2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.284250+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "4787cd4b-ecfc-4cc2-abfc-e848098bdeae", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/4787cd4b-ecfc-4cc2-abfc-e848098bdeae.png", "timestamp": "2024-02-15T20:54:42.214010+00:00"}}, {"id": "4c92270f-a255-4c28-8650-1676a02210dd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:52.808783+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4787cd4b-ecfc-4cc2-abfc-e848098bdeae", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/4787cd4b-ecfc-4cc2-abfc-e848098bdeae.png", "timestamp": "2024-02-15T20:54:42.214010+00:00"}}, {"id": "ec2e1251-76f2-49bd-aab8-95ed6c0b6450", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.411782+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions hindering traffic flow.", "snapshot": {"id": "4787cd4b-ecfc-4cc2-abfc-e848098bdeae", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/4787cd4b-ecfc-4cc2-abfc-e848098bdeae.png", "timestamp": "2024-02-15T20:54:42.214010+00:00"}}, {"id": "7e1c0d30-34f7-42c2-ae21-35f1c94c28c4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.014494+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road with various vehicles, including buses and cars, navigating through a park. Trees line the sidewalk, and buildings can be seen in the background.", "snapshot": {"id": "4787cd4b-ecfc-4cc2-abfc-e848098bdeae", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/4787cd4b-ecfc-4cc2-abfc-e848098bdeae.png", "timestamp": "2024-02-15T20:54:42.214010+00:00"}}, {"id": "88109520-b58b-4fe2-89a2-15881d856184", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.886053+00:00", "label": "moderate", "label_explanation": "Traffic appears to be moderate, with vehicles moving steadily without major congestion.", "snapshot": {"id": "4787cd4b-ecfc-4cc2-abfc-e848098bdeae", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/4787cd4b-ecfc-4cc2-abfc-e848098bdeae.png", "timestamp": "2024-02-15T20:54:42.214010+00:00"}}, {"id": "bc144429-6523-4a60-bb1e-00d7a0e29eff", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.285549+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "7f125729-69af-4ac3-9314-a955d71cc160", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/7f125729-69af-4ac3-9314-a955d71cc160.png", "timestamp": "2024-02-15T20:49:50.391112+00:00"}}, {"id": "88857b83-8f3a-4d9e-bec4-f136ff4f4fa2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.981055+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for each direction separated by a painted median. The road surface is in good condition, with no visible cracks or potholes. There are several trees on either side of the road, and the surrounding buildings are a mix of residential and commercial properties. The traffic is moderate, with a few cars visible in both directions. There is a bus stop on the right side of the road, and a park with a playground can be seen on the left side.", "snapshot": {"id": "7f125729-69af-4ac3-9314-a955d71cc160", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/7f125729-69af-4ac3-9314-a955d71cc160.png", "timestamp": "2024-02-15T20:49:50.391112+00:00"}}, {"id": "8a636957-17aa-463f-aec5-268bd180bec9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.663005+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7f125729-69af-4ac3-9314-a955d71cc160", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/7f125729-69af-4ac3-9314-a955d71cc160.png", "timestamp": "2024-02-15T20:49:50.391112+00:00"}}, {"id": "4d6738db-e16c-49fd-82c4-2b50e12af4f4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.655398+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "7f125729-69af-4ac3-9314-a955d71cc160", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/7f125729-69af-4ac3-9314-a955d71cc160.png", "timestamp": "2024-02-15T20:49:50.391112+00:00"}}, {"id": "5fc0966d-6e9c-41c9-8719-30b6e5f8dc25", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.901264+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars visible in both directions. The vehicles are able to move freely, and there are no visible signs of congestion.", "snapshot": {"id": "7f125729-69af-4ac3-9314-a955d71cc160", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/7f125729-69af-4ac3-9314-a955d71cc160.png", "timestamp": "2024-02-15T20:49:50.391112+00:00"}}, {"id": "836c6c1a-6560-4fd8-8ab2-022530d3980a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.152208+00:00", "label": "free", "label_explanation": "There are no road blockades present in the image. The road is completely clear, and there are no obstructions to traffic.", "snapshot": {"id": "7f125729-69af-4ac3-9314-a955d71cc160", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/7f125729-69af-4ac3-9314-a955d71cc160.png", "timestamp": "2024-02-15T20:49:50.391112+00:00"}}, {"id": "4a022d01-e977-4e8e-a358-0b2c8bd60d42", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.572612+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and it is completely clear for traffic.", "snapshot": {"id": "050bf800-4913-42cb-835d-fcf6ca070137", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/050bf800-4913-42cb-835d-fcf6ca070137.png", "timestamp": "2024-02-15T20:52:12.989011+00:00"}}, {"id": "bd6d25b1-3c0b-458c-93c1-73ea6cfbf6c3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.197603+00:00", "label": "easy", "label_explanation": "The road is clear and free of traffic, with only a few parked cars on the side of the road.", "snapshot": {"id": "050bf800-4913-42cb-835d-fcf6ca070137", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/050bf800-4913-42cb-835d-fcf6ca070137.png", "timestamp": "2024-02-15T20:52:12.989011+00:00"}}, {"id": "dd9d1ecb-9bff-405c-80e5-ff7fdb251220", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.968154+00:00", "label": "low", "label_explanation": "There is no standing water on the road, only a thin layer of water that has not yet evaporated.", "snapshot": {"id": "050bf800-4913-42cb-835d-fcf6ca070137", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/050bf800-4913-42cb-835d-fcf6ca070137.png", "timestamp": "2024-02-15T20:52:12.989011+00:00"}}, {"id": "f651ded8-1de7-461b-bc2e-43190196fb6d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.251816+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, straight road with two lanes separated by a painted median. The road is lined with trees and buildings, and there are a few parked cars on the side of the road. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "050bf800-4913-42cb-835d-fcf6ca070137", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/050bf800-4913-42cb-835d-fcf6ca070137.png", "timestamp": "2024-02-15T20:52:12.989011+00:00"}}, {"id": "f1d38b11-adff-49d6-aa2c-5b86b13081c5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.689113+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "050bf800-4913-42cb-835d-fcf6ca070137", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/050bf800-4913-42cb-835d-fcf6ca070137.png", "timestamp": "2024-02-15T20:52:12.989011+00:00"}}, {"id": "24e23178-9594-4d33-8069-dcb5732e7ad0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.685238+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "050bf800-4913-42cb-835d-fcf6ca070137", "camera_id": "001499", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001499/050bf800-4913-42cb-835d-fcf6ca070137.png", "timestamp": "2024-02-15T20:52:12.989011+00:00"}}]}, {"id": "001391", "name": "ESTRADA DA BARRA DA TIJUCA - ITANHANG\u00c1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.71/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0031209, "longitude": -43.30464303, "objects": ["image_description", "image_corrupted", "road_blockade", "rain", "traffic", "water_level"], "identifications": [{"id": "052c60bf-fe95-431d-bfea-e56afa26721f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:26.737763+00:00", "label": "easy", "label_explanation": "The road is relatively clear, with only a few vehicles visible. Traffic appears to be flowing smoothly, with no major disruptions.", "snapshot": {"id": "e7773358-4005-4727-b8ac-6b27247a3bce", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/e7773358-4005-4727-b8ac-6b27247a3bce.png", "timestamp": "2024-02-15T20:30:08.995244+00:00"}}, {"id": "5a484fb7-fc6d-45e1-8bd6-34fcd0cc1ecd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:26.972643+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road, allowing for free passage of vehicles.", "snapshot": {"id": "e7773358-4005-4727-b8ac-6b27247a3bce", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/e7773358-4005-4727-b8ac-6b27247a3bce.png", "timestamp": "2024-02-15T20:30:08.995244+00:00"}}, {"id": "c6ad799f-f637-466b-ba6f-50d7ff03fea3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:26.288778+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles visible. The majority of the road surface is still dry.", "snapshot": {"id": "e7773358-4005-4727-b8ac-6b27247a3bce", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/e7773358-4005-4727-b8ac-6b27247a3bce.png", "timestamp": "2024-02-15T20:30:08.995244+00:00"}}, {"id": "1d586206-4622-481e-8de8-1c44915c4ff8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:26.027331+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining.", "snapshot": {"id": "e7773358-4005-4727-b8ac-6b27247a3bce", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/e7773358-4005-4727-b8ac-6b27247a3bce.png", "timestamp": "2024-02-15T20:30:08.995244+00:00"}}, {"id": "06f9745b-14c2-4185-a0ac-cb37a2e62364", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.781158+00:00", "label": "null", "label_explanation": "The image captures a two-lane road with a white car driving in the left lane. The road is surrounded by vegetation, including trees and shrubs. The weather appears to be overcast, with dark clouds covering the sky. The road surface is wet, with small puddles of water visible.", "snapshot": {"id": "e7773358-4005-4727-b8ac-6b27247a3bce", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/e7773358-4005-4727-b8ac-6b27247a3bce.png", "timestamp": "2024-02-15T20:30:08.995244+00:00"}}, {"id": "c4f3fc87-9d1a-4165-884c-c6d7be79125f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.393173+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e7773358-4005-4727-b8ac-6b27247a3bce", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/e7773358-4005-4727-b8ac-6b27247a3bce.png", "timestamp": "2024-02-15T20:30:08.995244+00:00"}}, {"id": "3a92d5e1-85da-4d56-9e30-4fce70d2a730", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:55.240268+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "d5b5aa36-4e9b-4c78-a96c-1bb1421d8ffc", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/d5b5aa36-4e9b-4c78-a96c-1bb1421d8ffc.png", "timestamp": "2024-02-15T20:49:44.430312+00:00"}}, {"id": "edc85d31-5479-4c10-91ec-90165330906d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:55.427282+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be described.", "snapshot": {"id": "d5b5aa36-4e9b-4c78-a96c-1bb1421d8ffc", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/d5b5aa36-4e9b-4c78-a96c-1bb1421d8ffc.png", "timestamp": "2024-02-15T20:49:44.430312+00:00"}}, {"id": "ee15eb60-3496-4184-81ac-eee925532825", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:27.676474+00:00", "label": "totally", "label_explanation": "N/A", "snapshot": {"id": "eeb35601-753c-43f0-9578-7d7e3d13eeae", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/eeb35601-753c-43f0-9578-7d7e3d13eeae.png", "timestamp": "2024-02-15T20:47:17.046487+00:00"}}, {"id": "0aa81146-1427-45b3-abe9-8b9837147548", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:26.381515+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "eeb35601-753c-43f0-9578-7d7e3d13eeae", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/eeb35601-753c-43f0-9578-7d7e3d13eeae.png", "timestamp": "2024-02-15T20:47:17.046487+00:00"}}, {"id": "7df12dd0-c033-4aac-b115-53d33525ff8a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:25.972005+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no visible details.", "snapshot": {"id": "eeb35601-753c-43f0-9578-7d7e3d13eeae", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/eeb35601-753c-43f0-9578-7d7e3d13eeae.png", "timestamp": "2024-02-15T20:47:17.046487+00:00"}}, {"id": "d71fd8c6-48c3-4305-aa2c-8b9ab4f7b8ca", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:26.663084+00:00", "label": "false", "label_explanation": "N/A", "snapshot": {"id": "eeb35601-753c-43f0-9578-7d7e3d13eeae", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/eeb35601-753c-43f0-9578-7d7e3d13eeae.png", "timestamp": "2024-02-15T20:47:17.046487+00:00"}}, {"id": "bbf1764d-7a95-4ec3-8495-916d0cac626a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:26.951259+00:00", "label": "low", "label_explanation": "N/A", "snapshot": {"id": "eeb35601-753c-43f0-9578-7d7e3d13eeae", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/eeb35601-753c-43f0-9578-7d7e3d13eeae.png", "timestamp": "2024-02-15T20:47:17.046487+00:00"}}, {"id": "1b108c1f-4640-499e-9744-57f8d6dd5576", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.000083+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "7f42be12-76d6-463f-90c3-869e456d23ee", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/7f42be12-76d6-463f-90c3-869e456d23ee.png", "timestamp": "2024-02-15T20:35:07.470794+00:00"}}, {"id": "cbf15c74-21f5-46fd-8281-bd09bdf9bd90", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.100979+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "7f42be12-76d6-463f-90c3-869e456d23ee", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/7f42be12-76d6-463f-90c3-869e456d23ee.png", "timestamp": "2024-02-15T20:35:07.470794+00:00"}}, {"id": "095cb535-bf4e-4a5f-a1f4-751876e70be5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.602084+00:00", "label": "null", "label_explanation": "The image shows a two-lane road with a slight bend to the right. It is surrounded by greenery, with trees and shrubs lining both sides of the road. The road is wet from recent rain, but there is no standing water. There are no vehicles visible in the image.", "snapshot": {"id": "7f42be12-76d6-463f-90c3-869e456d23ee", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/7f42be12-76d6-463f-90c3-869e456d23ee.png", "timestamp": "2024-02-15T20:35:07.470794+00:00"}}, {"id": "144ff031-76e0-4529-a5be-b0f65a8072a3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.798874+00:00", "label": "free", "label_explanation": "There are no obstructions visible in the image, so the road is clear.", "snapshot": {"id": "7f42be12-76d6-463f-90c3-869e456d23ee", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/7f42be12-76d6-463f-90c3-869e456d23ee.png", "timestamp": "2024-02-15T20:35:07.470794+00:00"}}, {"id": "936609e4-889b-46e8-8728-2b0cf43e38ee", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.050137+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7f42be12-76d6-463f-90c3-869e456d23ee", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/7f42be12-76d6-463f-90c3-869e456d23ee.png", "timestamp": "2024-02-15T20:35:07.470794+00:00"}}, {"id": "e95b0dee-3a1e-43d6-a16f-6d674f90ca3c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:43.916274+00:00", "label": "true", "label_explanation": "The image is corrupted and has a uniform green color, making it impossible to analyze.", "snapshot": {"id": "59e75c96-5ebc-4874-ae10-b38eaeafdf69", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/59e75c96-5ebc-4874-ae10-b38eaeafdf69.png", "timestamp": "2024-02-15T20:37:32.482346+00:00"}}, {"id": "7c01b359-0db5-46c1-ab7d-85edd5a86b23", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:44.343850+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "59e75c96-5ebc-4874-ae10-b38eaeafdf69", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/59e75c96-5ebc-4874-ae10-b38eaeafdf69.png", "timestamp": "2024-02-15T20:37:32.482346+00:00"}}, {"id": "cd5f82ab-59e1-4f00-abd5-99244bf08c27", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:15.549752+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear, dry road surface. There are trees on either side of the road, and the weather appears to be bright and sunny.", "snapshot": {"id": "939a3ba7-f61b-470d-93f3-97ff90068336", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/939a3ba7-f61b-470d-93f3-97ff90068336.png", "timestamp": "2024-02-15T20:40:01.747418+00:00"}}, {"id": "ea5689ec-269e-49db-a4a7-0afce98d6832", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:17.788410+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "939a3ba7-f61b-470d-93f3-97ff90068336", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/939a3ba7-f61b-470d-93f3-97ff90068336.png", "timestamp": "2024-02-15T20:40:01.747418+00:00"}}, {"id": "d2612f39-26c6-48d0-97ff-ee54aa51686c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:14.980052+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "939a3ba7-f61b-470d-93f3-97ff90068336", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/939a3ba7-f61b-470d-93f3-97ff90068336.png", "timestamp": "2024-02-15T20:40:01.747418+00:00"}}, {"id": "c4a8d1f0-c126-4732-a795-f835d117972e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:17.319019+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "939a3ba7-f61b-470d-93f3-97ff90068336", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/939a3ba7-f61b-470d-93f3-97ff90068336.png", "timestamp": "2024-02-15T20:40:01.747418+00:00"}}, {"id": "a81f3fd0-e042-4eb5-9416-053b3ab959b8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:16.577496+00:00", "label": "low", "label_explanation": "The road surface is completely dry, with no visible water accumulation.", "snapshot": {"id": "939a3ba7-f61b-470d-93f3-97ff90068336", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/939a3ba7-f61b-470d-93f3-97ff90068336.png", "timestamp": "2024-02-15T20:40:01.747418+00:00"}}, {"id": "9baa83c4-23b1-4154-8d32-072aa4d0f376", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:16.098216+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "939a3ba7-f61b-470d-93f3-97ff90068336", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/939a3ba7-f61b-470d-93f3-97ff90068336.png", "timestamp": "2024-02-15T20:40:01.747418+00:00"}}, {"id": "2ec94e14-2898-40c0-9039-d2ba8178f0c2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.568628+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "9afdb3aa-49a9-4bce-8fe6-17f73b95a16b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/9afdb3aa-49a9-4bce-8fe6-17f73b95a16b.png", "timestamp": "2024-02-15T20:42:39.771214+00:00"}}, {"id": "92d77608-ae2a-4801-bef9-636b46953206", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.063945+00:00", "label": "easy", "label_explanation": "There is no traffic visible on the road, possibly due to the wet conditions.", "snapshot": {"id": "9afdb3aa-49a9-4bce-8fe6-17f73b95a16b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/9afdb3aa-49a9-4bce-8fe6-17f73b95a16b.png", "timestamp": "2024-02-15T20:42:39.771214+00:00"}}, {"id": "ccec6306-4f15-4914-b9ba-f01bf9b0b343", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.382809+00:00", "label": "null", "label_explanation": "The image captures a two-lane road with a slight bend to the right. It is daytime, and the weather appears overcast with dense vegetation on either side of the road.", "snapshot": {"id": "9afdb3aa-49a9-4bce-8fe6-17f73b95a16b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/9afdb3aa-49a9-4bce-8fe6-17f73b95a16b.png", "timestamp": "2024-02-15T20:42:39.771214+00:00"}}, {"id": "a79a1554-af07-4728-aab4-e5b15f97d2eb", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.529784+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and it is clear for\u901a\u884c.", "snapshot": {"id": "9afdb3aa-49a9-4bce-8fe6-17f73b95a16b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/9afdb3aa-49a9-4bce-8fe6-17f73b95a16b.png", "timestamp": "2024-02-15T20:42:39.771214+00:00"}}, {"id": "5aff327c-ce3d-458c-924f-d6e6bb275648", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.866204+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, only a thin layer of water that is likely the result of recent rain.", "snapshot": {"id": "9afdb3aa-49a9-4bce-8fe6-17f73b95a16b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/9afdb3aa-49a9-4bce-8fe6-17f73b95a16b.png", "timestamp": "2024-02-15T20:42:39.771214+00:00"}}, {"id": "04754a8b-0f4c-436a-b0cc-66dd9029cee7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.172579+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9afdb3aa-49a9-4bce-8fe6-17f73b95a16b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/9afdb3aa-49a9-4bce-8fe6-17f73b95a16b.png", "timestamp": "2024-02-15T20:42:39.771214+00:00"}}, {"id": "8abdfaa3-ce9f-43f2-98a3-6e8c3d8a68af", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:07.499105+00:00", "label": "true", "label_explanation": "The image is corrupted, with green and grey color distortions indicating data loss.", "snapshot": {"id": "fed5476f-e5ee-4b01-819b-d9d7f177cd03", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/fed5476f-e5ee-4b01-819b-d9d7f177cd03.png", "timestamp": "2024-02-15T20:44:56.290189+00:00"}}, {"id": "7ac261f2-f17d-41ce-91d7-2e849d31be42", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:07.868832+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "fed5476f-e5ee-4b01-819b-d9d7f177cd03", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/fed5476f-e5ee-4b01-819b-d9d7f177cd03.png", "timestamp": "2024-02-15T20:44:56.290189+00:00"}}, {"id": "2e37891d-3d14-4d9a-a131-b8a7fcd9f0fe", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:34.857788+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "f1a05062-3884-4bd3-abec-7cd5b319938f", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/f1a05062-3884-4bd3-abec-7cd5b319938f.png", "timestamp": "2024-02-15T20:32:25.849190+00:00"}}, {"id": "00b242e8-6d7c-4896-83fd-caa7384b1a42", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:34.532647+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no visible details.", "snapshot": {"id": "f1a05062-3884-4bd3-abec-7cd5b319938f", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/f1a05062-3884-4bd3-abec-7cd5b319938f.png", "timestamp": "2024-02-15T20:32:25.849190+00:00"}}, {"id": "5e976172-f73a-4def-98b4-716f6a6e2224", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.970039+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable.", "snapshot": {"id": "c1b15385-b65e-4492-881b-08530292b417", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/c1b15385-b65e-4492-881b-08530292b417.png", "timestamp": "2024-02-15T20:52:12.863232+00:00"}}, {"id": "54317ef0-45c9-4c33-abc2-201caebc12e0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.688796+00:00", "label": "easy", "label_explanation": "The traffic is light, as there are only a few cars visible on the road. The cars are able to drive through the puddles without difficulty.", "snapshot": {"id": "c1b15385-b65e-4492-881b-08530292b417", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/c1b15385-b65e-4492-881b-08530292b417.png", "timestamp": "2024-02-15T20:52:12.863232+00:00"}}, {"id": "f72a4d72-6f51-40c5-958a-8c0688684bbb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.839276+00:00", "label": "true", "label_explanation": "The road is wet, and there are small puddles scattered across the surface. The rain is not heavy, as the parked cars are not obscured by the water.", "snapshot": {"id": "c1b15385-b65e-4492-881b-08530292b417", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/c1b15385-b65e-4492-881b-08530292b417.png", "timestamp": "2024-02-15T20:52:12.863232+00:00"}}, {"id": "794a5c32-571c-4547-85ff-a8d025b9ce50", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.254123+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c1b15385-b65e-4492-881b-08530292b417", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/c1b15385-b65e-4492-881b-08530292b417.png", "timestamp": "2024-02-15T20:52:12.863232+00:00"}}, {"id": "7bcf3c12-7406-496e-aede-3ea8fb9dbec3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.436312+00:00", "label": "low", "label_explanation": "The water level on the road is low, as the puddles are small and shallow. The water is not deep enough to submerge the tires of a car.", "snapshot": {"id": "c1b15385-b65e-4492-881b-08530292b417", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/c1b15385-b65e-4492-881b-08530292b417.png", "timestamp": "2024-02-15T20:52:12.863232+00:00"}}, {"id": "04d8aea8-43e4-4bc7-b344-342b86b6ed42", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.496282+00:00", "label": "null", "label_explanation": "The image captures a two-lane urban road in a residential area. It is daytime, and the weather is rainy. The road is wet, with small puddles scattered across the surface. There are trees on either side of the road, and a few parked cars are visible.", "snapshot": {"id": "c1b15385-b65e-4492-881b-08530292b417", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/c1b15385-b65e-4492-881b-08530292b417.png", "timestamp": "2024-02-15T20:52:12.863232+00:00"}}, {"id": "0a51bbc8-922e-4515-b231-938caa837ffe", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:43.894805+00:00", "label": "free", "label_explanation": "The road is clear, with no visible signs of blockades or obstructions.", "snapshot": {"id": "1b207a89-1136-4f2a-97cb-a32adf18348b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/1b207a89-1136-4f2a-97cb-a32adf18348b.png", "timestamp": "2024-02-15T20:54:31.347712+00:00"}}, {"id": "9769994a-c1ce-4036-af78-3ba00175244a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:43.037824+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars parked on either side of the road. There are no visible signs of congestion or accidents.", "snapshot": {"id": "1b207a89-1136-4f2a-97cb-a32adf18348b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/1b207a89-1136-4f2a-97cb-a32adf18348b.png", "timestamp": "2024-02-15T20:54:31.347712+00:00"}}, {"id": "751ebb4b-7b93-4e81-a7a5-3731349dd042", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:42.519928+00:00", "label": "false", "label_explanation": "The image shows no signs of rain. The road is dry, and there are no visible signs of water on the ground.", "snapshot": {"id": "1b207a89-1136-4f2a-97cb-a32adf18348b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/1b207a89-1136-4f2a-97cb-a32adf18348b.png", "timestamp": "2024-02-15T20:54:31.347712+00:00"}}, {"id": "5ab403ee-4acf-4eaa-ab8e-ea89c55773b8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:42.326274+00:00", "label": "null", "label_explanation": "The image shows a street scene with cars parked on either side of the road. There are trees and foliage on both sides of the street, and the weather appears to be overcast.", "snapshot": {"id": "1b207a89-1136-4f2a-97cb-a32adf18348b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/1b207a89-1136-4f2a-97cb-a32adf18348b.png", "timestamp": "2024-02-15T20:54:31.347712+00:00"}}, {"id": "a04813c1-7c3b-4d58-9a1a-4da1c4356945", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:42.078124+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1b207a89-1136-4f2a-97cb-a32adf18348b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/1b207a89-1136-4f2a-97cb-a32adf18348b.png", "timestamp": "2024-02-15T20:54:31.347712+00:00"}}, {"id": "f31b5296-b8bd-442c-8ff2-a07c53314a0a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:42.829334+00:00", "label": "low", "label_explanation": "The road is dry, with no visible signs of water.", "snapshot": {"id": "1b207a89-1136-4f2a-97cb-a32adf18348b", "camera_id": "001391", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001391/1b207a89-1136-4f2a-97cb-a32adf18348b.png", "timestamp": "2024-02-15T20:54:31.347712+00:00"}}]}, {"id": "001498", "name": "R. VISCONDE DE SANTA ISABEL X R. ALEXANDRE CALAZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91683558, "longitude": -43.25997292, "objects": ["image_corrupted", "image_description", "rain", "water_level", "road_blockade", "traffic"], "identifications": []}, {"id": "001474", "name": "R. DO CATETE X R. SILVEIRA MARTINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9259, "longitude": -43.176602, "objects": ["rain", "image_corrupted", "water_level", "traffic", "road_blockade", "image_description"], "identifications": []}, {"id": "001189", "name": "AV. ATL\u00c2NTICA 213 - FIXA", "rtsp_url": "rtsp://10.52.21.11/", "update_interval": 120, "latitude": -22.98585917, "longitude": -43.18872308, "objects": ["rain", "image_corrupted", "road_blockade", "image_description", "traffic", "water_level"], "identifications": []}, {"id": "001167", "name": "R. DO LAVRADIO, 151 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91185324, "longitude": -43.18236632, "objects": ["image_corrupted", "road_blockade", "traffic", "water_level", "rain", "image_description"], "identifications": [{"id": "dc4bbfdd-66db-4815-abbc-1066b62eb86d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:13.988088+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions present.", "snapshot": {"id": "74e84fc5-d616-41a6-ac12-e9534a58a1ec", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/74e84fc5-d616-41a6-ac12-e9534a58a1ec.png", "timestamp": "2024-02-15T20:29:58.460442+00:00"}}, {"id": "2965611d-a272-4f61-9f88-e5e4c7e15a87", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:13.502447+00:00", "label": "easy", "label_explanation": "The road is clear and free of traffic obstructions.", "snapshot": {"id": "74e84fc5-d616-41a6-ac12-e9534a58a1ec", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/74e84fc5-d616-41a6-ac12-e9534a58a1ec.png", "timestamp": "2024-02-15T20:29:58.460442+00:00"}}, {"id": "034ba341-de20-47e6-85c0-b2d28c8beea6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.979190+00:00", "label": "low", "label_explanation": "The road surface is completely dry.", "snapshot": {"id": "74e84fc5-d616-41a6-ac12-e9534a58a1ec", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/74e84fc5-d616-41a6-ac12-e9534a58a1ec.png", "timestamp": "2024-02-15T20:29:58.460442+00:00"}}, {"id": "6588878b-a440-4cc2-ade5-3f6050e6d173", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.698321+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "74e84fc5-d616-41a6-ac12-e9534a58a1ec", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/74e84fc5-d616-41a6-ac12-e9534a58a1ec.png", "timestamp": "2024-02-15T20:29:58.460442+00:00"}}, {"id": "e9376fb6-b06a-49f4-9e0b-e50ef29f3d39", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.294384+00:00", "label": "null", "label_explanation": "The image shows an urban road with clear weather and no visible obstructions.", "snapshot": {"id": "74e84fc5-d616-41a6-ac12-e9534a58a1ec", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/74e84fc5-d616-41a6-ac12-e9534a58a1ec.png", "timestamp": "2024-02-15T20:29:58.460442+00:00"}}, {"id": "aab91ecd-7b67-442d-af74-5db209986149", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:11.755909+00:00", "label": "false", "label_explanation": "The image is clear and free of visual interferences.", "snapshot": {"id": "74e84fc5-d616-41a6-ac12-e9534a58a1ec", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/74e84fc5-d616-41a6-ac12-e9534a58a1ec.png", "timestamp": "2024-02-15T20:29:58.460442+00:00"}}, {"id": "032fb2bc-f7a4-460b-847b-832b96eae6fb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.050196+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are all moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "11f4264f-0f83-4d2a-b047-6f1500893d90", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/11f4264f-0f83-4d2a-b047-6f1500893d90.png", "timestamp": "2024-02-15T20:35:02.986320+00:00"}}, {"id": "1b24ee6e-bbcd-4509-a616-46eca4c9b814", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.146793+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "11f4264f-0f83-4d2a-b047-6f1500893d90", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/11f4264f-0f83-4d2a-b047-6f1500893d90.png", "timestamp": "2024-02-15T20:35:02.986320+00:00"}}, {"id": "58d580a8-d251-433b-a3c6-49947a8b4e26", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.593161+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water on the road.", "snapshot": {"id": "11f4264f-0f83-4d2a-b047-6f1500893d90", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/11f4264f-0f83-4d2a-b047-6f1500893d90.png", "timestamp": "2024-02-15T20:35:02.986320+00:00"}}, {"id": "ae57b2ff-898e-4f6b-8afd-6ae52a876d42", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.809243+00:00", "label": "free", "label_explanation": "There are no road blockades in the image. The road is clear and free of any obstructions.", "snapshot": {"id": "11f4264f-0f83-4d2a-b047-6f1500893d90", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/11f4264f-0f83-4d2a-b047-6f1500893d90.png", "timestamp": "2024-02-15T20:35:02.986320+00:00"}}, {"id": "10f52858-34d9-4e12-adee-88b4d4ce5b35", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.088415+00:00", "label": "null", "label_explanation": "The image captures an urban road scene. It is daytime, and the weather appears to be clear. There are several vehicles on the road, including cars and buses. The road is relatively wide, with multiple lanes in each direction. There are buildings and trees on either side of the road.", "snapshot": {"id": "11f4264f-0f83-4d2a-b047-6f1500893d90", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/11f4264f-0f83-4d2a-b047-6f1500893d90.png", "timestamp": "2024-02-15T20:35:02.986320+00:00"}}, {"id": "d1fefd88-1e4a-4220-b244-e74d7f3e4ebd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:15.603325+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions, and the image appears to be intact.", "snapshot": {"id": "11f4264f-0f83-4d2a-b047-6f1500893d90", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/11f4264f-0f83-4d2a-b047-6f1500893d90.png", "timestamp": "2024-02-15T20:35:02.986320+00:00"}}, {"id": "f38ea182-e3ed-4e2e-a502-9cea54bfb366", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.596756+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "36f6adb1-073f-456f-b2c9-f6ea36804f9e", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/36f6adb1-073f-456f-b2c9-f6ea36804f9e.png", "timestamp": "2024-02-15T20:37:38.833340+00:00"}}, {"id": "f012af18-b65a-4a44-9c35-f153b54515fe", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.212925+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road during daytime. Tall buildings line the street, and there are several vehicles on the road, including buses, cars, and trucks. The weather appears to be clear, and the road surface is dry.", "snapshot": {"id": "36f6adb1-073f-456f-b2c9-f6ea36804f9e", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/36f6adb1-073f-456f-b2c9-f6ea36804f9e.png", "timestamp": "2024-02-15T20:37:38.833340+00:00"}}, {"id": "c71c26f6-89d4-4ced-b274-84ef6505e7fb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.362841+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water.", "snapshot": {"id": "36f6adb1-073f-456f-b2c9-f6ea36804f9e", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/36f6adb1-073f-456f-b2c9-f6ea36804f9e.png", "timestamp": "2024-02-15T20:37:38.833340+00:00"}}, {"id": "6ded5d7b-5c33-441d-82d4-bbebb3558e08", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.806127+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "36f6adb1-073f-456f-b2c9-f6ea36804f9e", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/36f6adb1-073f-456f-b2c9-f6ea36804f9e.png", "timestamp": "2024-02-15T20:37:38.833340+00:00"}}, {"id": "fa986115-54e8-42c7-b4cd-5b3d7ec853c2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.667273+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible.", "snapshot": {"id": "36f6adb1-073f-456f-b2c9-f6ea36804f9e", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/36f6adb1-073f-456f-b2c9-f6ea36804f9e.png", "timestamp": "2024-02-15T20:37:38.833340+00:00"}}, {"id": "b13962a1-da4c-40d3-b93a-4626beb0e820", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.180206+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving steadily. There are no major obstructions or congestion visible.", "snapshot": {"id": "36f6adb1-073f-456f-b2c9-f6ea36804f9e", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/36f6adb1-073f-456f-b2c9-f6ea36804f9e.png", "timestamp": "2024-02-15T20:37:38.833340+00:00"}}, {"id": "99b064ee-a464-4262-98e7-222451fca2f0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:14.726608+00:00", "label": "easy", "label_explanation": "The traffic on the road appears to be flowing smoothly, with no major congestion or disruptions. Vehicles are moving at a normal pace, and there are no accidents or incidents visible in the image.", "snapshot": {"id": "83c89695-16f0-45b0-84c7-93263fb935bf", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/83c89695-16f0-45b0-84c7-93263fb935bf.png", "timestamp": "2024-02-15T20:40:01.280610+00:00"}}, {"id": "fe753644-1c47-4d36-a8b1-45ccb8889295", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:13.635348+00:00", "label": "low", "label_explanation": "Since there is no rain or water on the road surface, the water level is low. There are no flooded areas or puddles, and the road is completely dry.", "snapshot": {"id": "83c89695-16f0-45b0-84c7-93263fb935bf", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/83c89695-16f0-45b0-84c7-93263fb935bf.png", "timestamp": "2024-02-15T20:40:01.280610+00:00"}}, {"id": "9f022f58-bc7c-4d13-8ac7-4fae21090167", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:13.046916+00:00", "label": "false", "label_explanation": "As mentioned earlier, there is no visible rain or water on the road surface. The road appears dry, and there are no signs of wetness or moisture.", "snapshot": {"id": "83c89695-16f0-45b0-84c7-93263fb935bf", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/83c89695-16f0-45b0-84c7-93263fb935bf.png", "timestamp": "2024-02-15T20:40:01.280610+00:00"}}, {"id": "b43005d5-c2c2-49cc-8421-341eba582630", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:12.263641+00:00", "label": "null", "label_explanation": "The image depicts an urban road scene in daylight. It is a four-lane road with a wide median strip. There are trees on either side of the road, and buildings and other structures in the background. The road is dry, and there is no visible rain or water on the surface.", "snapshot": {"id": "83c89695-16f0-45b0-84c7-93263fb935bf", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/83c89695-16f0-45b0-84c7-93263fb935bf.png", "timestamp": "2024-02-15T20:40:01.280610+00:00"}}, {"id": "e0a6452d-422b-457b-b9a8-f6d71b910024", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:15.190771+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades visible on the road. The entire road surface is clear, and there are no obstacles impeding traffic flow. Both lanes are open and accessible to vehicles.", "snapshot": {"id": "83c89695-16f0-45b0-84c7-93263fb935bf", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/83c89695-16f0-45b0-84c7-93263fb935bf.png", "timestamp": "2024-02-15T20:40:01.280610+00:00"}}, {"id": "f88a554c-5110-4a54-92cb-7f2a1d763e40", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:11.897948+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions, and the image appears intact.", "snapshot": {"id": "83c89695-16f0-45b0-84c7-93263fb935bf", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/83c89695-16f0-45b0-84c7-93263fb935bf.png", "timestamp": "2024-02-15T20:40:01.280610+00:00"}}, {"id": "483e037a-9ad6-4513-8bbc-11d414e6f806", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:26.661440+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "3cce8709-922c-42c6-a1bd-fd40fae644e1", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/3cce8709-922c-42c6-a1bd-fd40fae644e1.png", "timestamp": "2024-02-15T20:47:16.960957+00:00"}}, {"id": "e66078a7-44e6-4065-ab05-2fcc3ba7b32e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:26.380547+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no visible details.", "snapshot": {"id": "3cce8709-922c-42c6-a1bd-fd40fae644e1", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/3cce8709-922c-42c6-a1bd-fd40fae644e1.png", "timestamp": "2024-02-15T20:47:16.960957+00:00"}}, {"id": "f3c746ab-4bef-4efd-83e2-c7c2a40eef14", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.209389+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, so the road is free for traffic to pass.", "snapshot": {"id": "ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc.png", "timestamp": "2024-02-15T20:49:41.421859+00:00"}}, {"id": "aa630bb5-22b8-49f6-a820-eaf6a8ddaf4e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:51.933624+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with cars and trucks moving in both directions. There are no visible obstructions or blockades on the road, so traffic is able to flow smoothly.", "snapshot": {"id": "ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc.png", "timestamp": "2024-02-15T20:49:41.421859+00:00"}}, {"id": "5ed17ab2-a232-472c-9876-3cc919ee19e1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:51.510828+00:00", "label": "low", "label_explanation": "Since there is no visible water on the road, the water level is low.", "snapshot": {"id": "ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc.png", "timestamp": "2024-02-15T20:49:41.421859+00:00"}}, {"id": "1e81d0d0-4a85-443b-8c2b-ca67685498a0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:51.296747+00:00", "label": "false", "label_explanation": "As mentioned earlier, there is no visible rain or water on the road surface.", "snapshot": {"id": "ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc.png", "timestamp": "2024-02-15T20:49:41.421859+00:00"}}, {"id": "6923ebef-c7e6-40aa-8c4a-fe17a382ed51", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:50.904331+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a central reservation, street lights, and traffic signals. The road is dry, and there is no visible rain or water on the surface. Traffic is moderate, with cars and trucks moving in both directions. There are no visible obstructions or blockades on the road.", "snapshot": {"id": "ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc.png", "timestamp": "2024-02-15T20:49:41.421859+00:00"}}, {"id": "94a23205-93c9-4978-aad3-4458403e69a4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:50.697921+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/ff0bd33a-3ec6-4dbc-bc26-10cc9c0b4dbc.png", "timestamp": "2024-02-15T20:49:41.421859+00:00"}}, {"id": "275fe2d0-28b1-4847-9868-2f51f8b3b050", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.173228+00:00", "label": "easy", "label_explanation": "The road is clear, with no traffic congestion or blockages.", "snapshot": {"id": "2979e61f-bcce-4fa5-906b-ee51cb96f06a", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/2979e61f-bcce-4fa5-906b-ee51cb96f06a.png", "timestamp": "2024-02-15T20:42:37.674518+00:00"}}, {"id": "4e2a4118-b5fc-48c8-8f8e-6148efac9187", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.287149+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with several lanes. There are tall buildings on either side of the road, and trees planted along the sidewalk. The weather appears to be clear, and the road is dry.", "snapshot": {"id": "2979e61f-bcce-4fa5-906b-ee51cb96f06a", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/2979e61f-bcce-4fa5-906b-ee51cb96f06a.png", "timestamp": "2024-02-15T20:42:37.674518+00:00"}}, {"id": "fcd699b8-29f2-4296-b9f1-62aa17cc8d35", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.530886+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "2979e61f-bcce-4fa5-906b-ee51cb96f06a", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/2979e61f-bcce-4fa5-906b-ee51cb96f06a.png", "timestamp": "2024-02-15T20:42:37.674518+00:00"}}, {"id": "a41ab217-af28-49b9-9fc2-21726f336d06", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.796290+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "2979e61f-bcce-4fa5-906b-ee51cb96f06a", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/2979e61f-bcce-4fa5-906b-ee51cb96f06a.png", "timestamp": "2024-02-15T20:42:37.674518+00:00"}}, {"id": "b257100e-9138-4823-aa9e-2516afe00fa0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.527536+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "2979e61f-bcce-4fa5-906b-ee51cb96f06a", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/2979e61f-bcce-4fa5-906b-ee51cb96f06a.png", "timestamp": "2024-02-15T20:42:37.674518+00:00"}}, {"id": "f34df5cb-0bd6-48d7-bf31-81da98feb411", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:47.990981+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2979e61f-bcce-4fa5-906b-ee51cb96f06a", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/2979e61f-bcce-4fa5-906b-ee51cb96f06a.png", "timestamp": "2024-02-15T20:42:37.674518+00:00"}}, {"id": "abe8b614-7b25-424c-bca8-5d3d6004189c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:06.239550+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and free of any obstructions.", "snapshot": {"id": "d43bd583-3eda-4676-8ff4-ed137d0b7c27", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/d43bd583-3eda-4676-8ff4-ed137d0b7c27.png", "timestamp": "2024-02-15T20:44:54.591004+00:00"}}, {"id": "a411115a-120f-4928-9a1c-d0a2ea497b85", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:05.961951+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are all moving at a steady pace. There are no major delays or obstructions.", "snapshot": {"id": "d43bd583-3eda-4676-8ff4-ed137d0b7c27", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/d43bd583-3eda-4676-8ff4-ed137d0b7c27.png", "timestamp": "2024-02-15T20:44:54.591004+00:00"}}, {"id": "33e1abcc-87a7-45ac-9eb4-2ef0836cccc7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:05.587791+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "d43bd583-3eda-4676-8ff4-ed137d0b7c27", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/d43bd583-3eda-4676-8ff4-ed137d0b7c27.png", "timestamp": "2024-02-15T20:44:54.591004+00:00"}}, {"id": "2438a6a1-c712-418a-9fae-4d6feac3deda", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:05.210900+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water on the road.", "snapshot": {"id": "d43bd583-3eda-4676-8ff4-ed137d0b7c27", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/d43bd583-3eda-4676-8ff4-ed137d0b7c27.png", "timestamp": "2024-02-15T20:44:54.591004+00:00"}}, {"id": "eff4e805-1a99-47a6-aa1a-aaaec733ffdb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:04.947295+00:00", "label": "null", "label_explanation": "The image depicts an urban road scene in daylight. The road is wide and straight, with multiple lanes in each direction. There are several vehicles on the road, including cars, buses, and trucks. The road is lined with trees, and there are buildings and other structures in the background.", "snapshot": {"id": "d43bd583-3eda-4676-8ff4-ed137d0b7c27", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/d43bd583-3eda-4676-8ff4-ed137d0b7c27.png", "timestamp": "2024-02-15T20:44:54.591004+00:00"}}, {"id": "50ced7a8-2ce7-451a-b364-b43c39604509", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:04.680177+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions, and the image appears intact.", "snapshot": {"id": "d43bd583-3eda-4676-8ff4-ed137d0b7c27", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/d43bd583-3eda-4676-8ff4-ed137d0b7c27.png", "timestamp": "2024-02-15T20:44:54.591004+00:00"}}, {"id": "896ca818-227d-4c58-a2dc-da8fe6d97c5d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.510715+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "fa36ac83-92d7-4177-b1e9-aa734f316a25", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/fa36ac83-92d7-4177-b1e9-aa734f316a25.png", "timestamp": "2024-02-15T20:32:33.362970+00:00"}}, {"id": "f90bc0dc-abed-4832-a4b0-08ab5f2578a2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:44.823013+00:00", "label": "true", "label_explanation": "The image is corrupted. The entire image is a uniform grey color, indicating data loss or corruption.", "snapshot": {"id": "fa36ac83-92d7-4177-b1e9-aa734f316a25", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/fa36ac83-92d7-4177-b1e9-aa734f316a25.png", "timestamp": "2024-02-15T20:32:33.362970+00:00"}}, {"id": "241a94f7-4cfa-4b51-88ed-f9acf31d5b61", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:18.204310+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "c8a65509-4388-4c14-8d69-40ca25321f26", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/c8a65509-4388-4c14-8d69-40ca25321f26.png", "timestamp": "2024-02-15T20:52:08.498567+00:00"}}, {"id": "52428e1a-9d6a-436a-b050-a8f77ce08fc9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:17.946106+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "c8a65509-4388-4c14-8d69-40ca25321f26", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/c8a65509-4388-4c14-8d69-40ca25321f26.png", "timestamp": "2024-02-15T20:52:08.498567+00:00"}}, {"id": "49a51947-afdd-4ce6-a2ba-428dcf3c4dba", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:41.644032+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions present in the image. The road is clear and free of any obstacles, allowing vehicles to pass through without any issues.", "snapshot": {"id": "f595545f-774a-4b0c-a3cb-9cbfd70a6a50", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/f595545f-774a-4b0c-a3cb-9cbfd70a6a50.png", "timestamp": "2024-02-15T20:54:30.498814+00:00"}}, {"id": "25b01a90-b271-4857-b3ba-c79f88a91545", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:41.401119+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no visible congestion or disruptions. Vehicles are able to move freely without any hindrances.", "snapshot": {"id": "f595545f-774a-4b0c-a3cb-9cbfd70a6a50", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/f595545f-774a-4b0c-a3cb-9cbfd70a6a50.png", "timestamp": "2024-02-15T20:54:30.498814+00:00"}}, {"id": "b1d4fb4a-f9ea-4236-8fe3-32a1477e719e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.194559+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions, and the image appears intact.", "snapshot": {"id": "f595545f-774a-4b0c-a3cb-9cbfd70a6a50", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/f595545f-774a-4b0c-a3cb-9cbfd70a6a50.png", "timestamp": "2024-02-15T20:54:30.498814+00:00"}}, {"id": "96f997bb-abc0-4999-9291-5e41e34520b2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.831188+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water droplets or puddles.", "snapshot": {"id": "f595545f-774a-4b0c-a3cb-9cbfd70a6a50", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/f595545f-774a-4b0c-a3cb-9cbfd70a6a50.png", "timestamp": "2024-02-15T20:54:30.498814+00:00"}}, {"id": "b8730d99-a2b7-46c5-9a01-475769a384ad", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.466381+00:00", "label": "null", "label_explanation": "The image depicts an urban road with traffic lights, street signs, parked cars, and a few trees. The road is dry, and there are no visible signs of water or flooding.", "snapshot": {"id": "f595545f-774a-4b0c-a3cb-9cbfd70a6a50", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/f595545f-774a-4b0c-a3cb-9cbfd70a6a50.png", "timestamp": "2024-02-15T20:54:30.498814+00:00"}}, {"id": "cee53442-0bb0-4716-b20c-c85b0cb82be7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:41.137580+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry, and there are no visible signs of water accumulation.", "snapshot": {"id": "f595545f-774a-4b0c-a3cb-9cbfd70a6a50", "camera_id": "001167", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001167/f595545f-774a-4b0c-a3cb-9cbfd70a6a50.png", "timestamp": "2024-02-15T20:54:30.498814+00:00"}}]}, {"id": "001485", "name": "R. S\u00c3O CLEMENTE X R. SOROCABA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95020985, "longitude": -43.19097089, "objects": ["rain", "water_level", "image_description", "image_corrupted", "road_blockade", "traffic"], "identifications": [{"id": "16aa9b42-f765-4dfb-9925-ea97e14d8fd3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:47.927257+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "2ccea913-cc75-49f4-91e7-114d08bfe3af", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2ccea913-cc75-49f4-91e7-114d08bfe3af.png", "timestamp": "2024-02-15T20:30:31.056403+00:00"}}, {"id": "f1c174da-fdce-4b8a-8d17-3f934c9e0c37", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:47.792239+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a central median. There are several vehicles on the road, including cars, buses, and motorcycles. The road is lined with trees and buildings.", "snapshot": {"id": "2ccea913-cc75-49f4-91e7-114d08bfe3af", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2ccea913-cc75-49f4-91e7-114d08bfe3af.png", "timestamp": "2024-02-15T20:30:31.056403+00:00"}}, {"id": "c52c36ab-102c-4408-a9f4-338abb59e521", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.539912+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and free of obstructions.", "snapshot": {"id": "2ccea913-cc75-49f4-91e7-114d08bfe3af", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2ccea913-cc75-49f4-91e7-114d08bfe3af.png", "timestamp": "2024-02-15T20:30:31.056403+00:00"}}, {"id": "b08dc094-af09-4871-a9b2-fde296049815", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.311211+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are all moving at a steady pace.", "snapshot": {"id": "2ccea913-cc75-49f4-91e7-114d08bfe3af", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2ccea913-cc75-49f4-91e7-114d08bfe3af.png", "timestamp": "2024-02-15T20:30:31.056403+00:00"}}, {"id": "8614420f-e9ad-48d2-a3c3-9f74effcd7ad", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.169598+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "2ccea913-cc75-49f4-91e7-114d08bfe3af", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2ccea913-cc75-49f4-91e7-114d08bfe3af.png", "timestamp": "2024-02-15T20:30:31.056403+00:00"}}, {"id": "3b15e69a-c534-4ee5-b967-6bd7835a7a44", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:47.671424+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2ccea913-cc75-49f4-91e7-114d08bfe3af", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2ccea913-cc75-49f4-91e7-114d08bfe3af.png", "timestamp": "2024-02-15T20:30:31.056403+00:00"}}, {"id": "7474e281-4774-4aac-8711-d3e2b588c823", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.792528+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "461522dc-937f-428f-915f-d722f111af35", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/461522dc-937f-428f-915f-d722f111af35.png", "timestamp": "2024-02-15T20:35:34.512650+00:00"}}, {"id": "45638469-d386-44f7-b067-e8f7aad2e968", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.594339+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime, and the weather appears to be clear. There are several vehicles on the road, including cars, buses, and motorcycles. The road is lined with buildings and trees, and there are a few pedestrians walking on the sidewalks.", "snapshot": {"id": "461522dc-937f-428f-915f-d722f111af35", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/461522dc-937f-428f-915f-d722f111af35.png", "timestamp": "2024-02-15T20:35:34.512650+00:00"}}, {"id": "c3912927-9943-4684-87f6-0e93f799edf6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:48.341471+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "461522dc-937f-428f-915f-d722f111af35", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/461522dc-937f-428f-915f-d722f111af35.png", "timestamp": "2024-02-15T20:35:34.512650+00:00"}}, {"id": "a2b90212-5b68-47eb-8228-22fec028a0c6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.211487+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a few vehicles on the road, but they are able to move freely without any significant congestion.", "snapshot": {"id": "461522dc-937f-428f-915f-d722f111af35", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/461522dc-937f-428f-915f-d722f111af35.png", "timestamp": "2024-02-15T20:35:34.512650+00:00"}}, {"id": "9426bf20-a155-4353-9418-0cf7f438d987", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.412666+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "461522dc-937f-428f-915f-d722f111af35", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/461522dc-937f-428f-915f-d722f111af35.png", "timestamp": "2024-02-15T20:35:34.512650+00:00"}}, {"id": "89e940fd-aeda-411b-becb-608cbe152b01", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.000442+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of flooding or water accumulation on the road surface.", "snapshot": {"id": "461522dc-937f-428f-915f-d722f111af35", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/461522dc-937f-428f-915f-d722f111af35.png", "timestamp": "2024-02-15T20:35:34.512650+00:00"}}, {"id": "506a3de8-6196-4ab2-9d19-a44e7d9bf32a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.979306+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "0b41d6aa-449c-43d3-87b3-53d8d52d9a05", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0b41d6aa-449c-43d3-87b3-53d8d52d9a05.png", "timestamp": "2024-02-15T20:38:07.770568+00:00"}}, {"id": "f262b574-ed40-4d01-8e2d-c06ea14ffadd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.247337+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "0b41d6aa-449c-43d3-87b3-53d8d52d9a05", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0b41d6aa-449c-43d3-87b3-53d8d52d9a05.png", "timestamp": "2024-02-15T20:38:07.770568+00:00"}}, {"id": "b20f7f77-1c3c-42ca-80f9-f310a36ab24c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:20.769768+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0b41d6aa-449c-43d3-87b3-53d8d52d9a05", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0b41d6aa-449c-43d3-87b3-53d8d52d9a05.png", "timestamp": "2024-02-15T20:38:07.770568+00:00"}}, {"id": "bf917a15-cd5c-4df2-893d-a7b6f148b30b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.664275+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "0b41d6aa-449c-43d3-87b3-53d8d52d9a05", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0b41d6aa-449c-43d3-87b3-53d8d52d9a05.png", "timestamp": "2024-02-15T20:38:07.770568+00:00"}}, {"id": "62dadcbf-99fb-47f2-9f20-d66edd766c5d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.447649+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "0b41d6aa-449c-43d3-87b3-53d8d52d9a05", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0b41d6aa-449c-43d3-87b3-53d8d52d9a05.png", "timestamp": "2024-02-15T20:38:07.770568+00:00"}}, {"id": "a685e85c-c722-4852-9b5c-08f478a57624", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.032702+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a bus stop on the left side. There are several cars and a few pedestrians on the road. The weather appears to be clear, with no visible signs of rain.", "snapshot": {"id": "0b41d6aa-449c-43d3-87b3-53d8d52d9a05", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0b41d6aa-449c-43d3-87b3-53d8d52d9a05.png", "timestamp": "2024-02-15T20:38:07.770568+00:00"}}, {"id": "79e1d126-6de1-4682-bfdd-94a7b1e5666b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.208223+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a few cars visible in both directions. Traffic is flowing smoothly, with no congestion or delays.", "snapshot": {"id": "3a21d18b-c2f0-4cdb-b55c-e7258e3e314a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3a21d18b-c2f0-4cdb-b55c-e7258e3e314a.png", "timestamp": "2024-02-15T20:47:46.949880+00:00"}}, {"id": "1d3fdbd3-f98f-4bd5-a82e-3998f88bda97", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.474880+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic is flowing freely in both directions.", "snapshot": {"id": "3a21d18b-c2f0-4cdb-b55c-e7258e3e314a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3a21d18b-c2f0-4cdb-b55c-e7258e3e314a.png", "timestamp": "2024-02-15T20:47:46.949880+00:00"}}, {"id": "100871b7-191f-4a19-887f-eebd478a581c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.462316+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a central median. There are a few trees on either side of the road, and buildings and commercial establishments can be seen in the background. The weather appears to be clear, and the road surface is dry.", "snapshot": {"id": "3a21d18b-c2f0-4cdb-b55c-e7258e3e314a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3a21d18b-c2f0-4cdb-b55c-e7258e3e314a.png", "timestamp": "2024-02-15T20:47:46.949880+00:00"}}, {"id": "44b93d11-6140-4307-b542-47260833954d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.967457+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water.", "snapshot": {"id": "3a21d18b-c2f0-4cdb-b55c-e7258e3e314a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3a21d18b-c2f0-4cdb-b55c-e7258e3e314a.png", "timestamp": "2024-02-15T20:47:46.949880+00:00"}}, {"id": "58763f5d-a6d5-42eb-a114-12c713dd0e49", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.701528+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "3a21d18b-c2f0-4cdb-b55c-e7258e3e314a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3a21d18b-c2f0-4cdb-b55c-e7258e3e314a.png", "timestamp": "2024-02-15T20:47:46.949880+00:00"}}, {"id": "01d9092b-aaf1-4a93-9607-d471c9a47828", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.283468+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3a21d18b-c2f0-4cdb-b55c-e7258e3e314a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3a21d18b-c2f0-4cdb-b55c-e7258e3e314a.png", "timestamp": "2024-02-15T20:47:46.949880+00:00"}}, {"id": "040c4df6-1584-403b-8b8d-e70945af5b9b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.896155+00:00", "label": "free", "label_explanation": "The road is clear, with no visible blockades or obstructions. Traffic is able to flow freely in both directions.", "snapshot": {"id": "5433423f-86c5-42e6-a4d5-0470a9595eee", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/5433423f-86c5-42e6-a4d5-0470a9595eee.png", "timestamp": "2024-02-15T20:40:35.542811+00:00"}}, {"id": "69d91990-0595-4ba0-9150-912d3cef1b3d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.457873+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While the road is wet from recent rain, the water has drained effectively, leaving the road navigable.", "snapshot": {"id": "5433423f-86c5-42e6-a4d5-0470a9595eee", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/5433423f-86c5-42e6-a4d5-0470a9595eee.png", "timestamp": "2024-02-15T20:40:35.542811+00:00"}}, {"id": "0a307909-9a0f-41b5-a014-92efb97877a4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:46.982331+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with multiple lanes, bordered by buildings and trees. There are vehicles on the road, including cars, buses, and motorcycles.", "snapshot": {"id": "5433423f-86c5-42e6-a4d5-0470a9595eee", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/5433423f-86c5-42e6-a4d5-0470a9595eee.png", "timestamp": "2024-02-15T20:40:35.542811+00:00"}}, {"id": "5e01b2f8-f599-44cc-9aa3-9a7328eb78da", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:46.789514+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5433423f-86c5-42e6-a4d5-0470a9595eee", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/5433423f-86c5-42e6-a4d5-0470a9595eee.png", "timestamp": "2024-02-15T20:40:35.542811+00:00"}}, {"id": "e415e591-8b47-430e-897a-f3c2b9da56cc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.699175+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving at a steady pace. There are no major obstructions or congestion visible in the image.", "snapshot": {"id": "5433423f-86c5-42e6-a4d5-0470a9595eee", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/5433423f-86c5-42e6-a4d5-0470a9595eee.png", "timestamp": "2024-02-15T20:40:35.542811+00:00"}}, {"id": "d71e24b2-0d5f-4dd6-b536-855fb84ba389", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:47.187166+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also visible raindrops on the windshield of the vehicle capturing the scene.", "snapshot": {"id": "5433423f-86c5-42e6-a4d5-0470a9595eee", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/5433423f-86c5-42e6-a4d5-0470a9595eee.png", "timestamp": "2024-02-15T20:40:35.542811+00:00"}}, {"id": "5161dd67-f3c8-48b9-9fa9-3546b60647d0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.354640+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "deb52f51-8993-486b-994f-15a5c97bbef7", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/deb52f51-8993-486b-994f-15a5c97bbef7.png", "timestamp": "2024-02-15T20:42:59.310803+00:00"}}, {"id": "59991f52-4e94-4645-a408-0b4ccd202cc8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.937607+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away, leaving the road surface passable for vehicles.", "snapshot": {"id": "deb52f51-8993-486b-994f-15a5c97bbef7", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/deb52f51-8993-486b-994f-15a5c97bbef7.png", "timestamp": "2024-02-15T20:42:59.310803+00:00"}}, {"id": "3d924a79-01b7-4e23-a057-43beb31f949c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.210388+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "deb52f51-8993-486b-994f-15a5c97bbef7", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/deb52f51-8993-486b-994f-15a5c97bbef7.png", "timestamp": "2024-02-15T20:42:59.310803+00:00"}}, {"id": "515f65da-c871-4630-bbd6-57319e75ebb5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.170973+00:00", "label": "easy", "label_explanation": "The road is moderately busy with both cars and motorbikes. Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "deb52f51-8993-486b-994f-15a5c97bbef7", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/deb52f51-8993-486b-994f-15a5c97bbef7.png", "timestamp": "2024-02-15T20:42:59.310803+00:00"}}, {"id": "555c558c-9811-4a07-9e09-c79181167ce7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.714432+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain has stopped, and the road is not currently experiencing any rainfall.", "snapshot": {"id": "deb52f51-8993-486b-994f-15a5c97bbef7", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/deb52f51-8993-486b-994f-15a5c97bbef7.png", "timestamp": "2024-02-15T20:42:59.310803+00:00"}}, {"id": "6b58e098-4c4d-4494-b77c-47b1d9bfea83", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:11.481628+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both cars and motorbikes. The road surface is wet from recent rain, but there are no significant puddles or standing water. The road is lined with buildings and trees, and there are a few parked cars along the side of the road.", "snapshot": {"id": "deb52f51-8993-486b-994f-15a5c97bbef7", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/deb52f51-8993-486b-994f-15a5c97bbef7.png", "timestamp": "2024-02-15T20:42:59.310803+00:00"}}, {"id": "8d6e36ff-8b65-4016-a348-af301772ee59", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.875388+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "2c59d137-c4a0-43f5-b91b-686bdc57e377", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2c59d137-c4a0-43f5-b91b-686bdc57e377.png", "timestamp": "2024-02-15T20:45:22.116234+00:00"}}, {"id": "722e7cd4-feb8-4360-9e12-c273b5951db1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.668930+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "2c59d137-c4a0-43f5-b91b-686bdc57e377", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2c59d137-c4a0-43f5-b91b-686bdc57e377.png", "timestamp": "2024-02-15T20:45:22.116234+00:00"}}, {"id": "de0dd17d-235a-4339-8804-5cda0ed296fd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.888445+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear. The road is in good condition, with no visible potholes or cracks. There are a few parked cars on the side of the road and some trees in the background.", "snapshot": {"id": "2c59d137-c4a0-43f5-b91b-686bdc57e377", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2c59d137-c4a0-43f5-b91b-686bdc57e377.png", "timestamp": "2024-02-15T20:45:22.116234+00:00"}}, {"id": "7b51835d-01a0-4d5d-a679-3f1d15c31f31", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.716751+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2c59d137-c4a0-43f5-b91b-686bdc57e377", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2c59d137-c4a0-43f5-b91b-686bdc57e377.png", "timestamp": "2024-02-15T20:45:22.116234+00:00"}}, {"id": "3866314b-04dc-4ade-a197-c556d9fdc683", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.461802+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water.", "snapshot": {"id": "2c59d137-c4a0-43f5-b91b-686bdc57e377", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2c59d137-c4a0-43f5-b91b-686bdc57e377.png", "timestamp": "2024-02-15T20:45:22.116234+00:00"}}, {"id": "f4e680a9-1547-4b18-af48-0e6770b6fe9c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.140440+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "2c59d137-c4a0-43f5-b91b-686bdc57e377", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/2c59d137-c4a0-43f5-b91b-686bdc57e377.png", "timestamp": "2024-02-15T20:45:22.116234+00:00"}}, {"id": "be8d8028-772d-42ff-b9e4-245e6cec4cf1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.418929+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "0e742ba9-ab2d-474d-894c-e41865756e1a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0e742ba9-ab2d-474d-894c-e41865756e1a.png", "timestamp": "2024-02-15T20:52:35.811170+00:00"}}, {"id": "04a149cc-1e42-4e7f-91d3-98402c26dfd0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.209046+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime, and the weather appears to be clear. There are several vehicles on the road, including buses and cars. The road is lined with buildings and trees.", "snapshot": {"id": "0e742ba9-ab2d-474d-894c-e41865756e1a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0e742ba9-ab2d-474d-894c-e41865756e1a.png", "timestamp": "2024-02-15T20:52:35.811170+00:00"}}, {"id": "4f80d039-8d7c-42da-9b87-1550c385335c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.214260+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "0e742ba9-ab2d-474d-894c-e41865756e1a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0e742ba9-ab2d-474d-894c-e41865756e1a.png", "timestamp": "2024-02-15T20:52:35.811170+00:00"}}, {"id": "bb68badd-a02d-4de8-a85a-8903b520cb52", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.911054+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "0e742ba9-ab2d-474d-894c-e41865756e1a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0e742ba9-ab2d-474d-894c-e41865756e1a.png", "timestamp": "2024-02-15T20:52:35.811170+00:00"}}, {"id": "41ae79a4-267d-43ea-b78f-b3ac1f1ccb62", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.685159+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "0e742ba9-ab2d-474d-894c-e41865756e1a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0e742ba9-ab2d-474d-894c-e41865756e1a.png", "timestamp": "2024-02-15T20:52:35.811170+00:00"}}, {"id": "e4abd852-797a-462f-a98f-a310e18a59b0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:46.938943+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0e742ba9-ab2d-474d-894c-e41865756e1a", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/0e742ba9-ab2d-474d-894c-e41865756e1a.png", "timestamp": "2024-02-15T20:52:35.811170+00:00"}}, {"id": "7b4fdc05-ab09-47e4-9aff-27fc437f5343", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.276334+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "d23c43dd-d944-4d27-ab18-e52d23a6c1ef", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/d23c43dd-d944-4d27-ab18-e52d23a6c1ef.png", "timestamp": "2024-02-15T20:50:10.035689+00:00"}}, {"id": "ea9dcd2f-8006-4f82-a30c-5e4632ffe8da", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.462272+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable.", "snapshot": {"id": "d23c43dd-d944-4d27-ab18-e52d23a6c1ef", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/d23c43dd-d944-4d27-ab18-e52d23a6c1ef.png", "timestamp": "2024-02-15T20:50:10.035689+00:00"}}, {"id": "d77f33a3-b836-46ae-8e86-299747f49f87", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:22.080224+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "d23c43dd-d944-4d27-ab18-e52d23a6c1ef", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/d23c43dd-d944-4d27-ab18-e52d23a6c1ef.png", "timestamp": "2024-02-15T20:50:10.035689+00:00"}}, {"id": "6930bbcf-898f-4410-aa34-0990366116d2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.886668+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "d23c43dd-d944-4d27-ab18-e52d23a6c1ef", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/d23c43dd-d944-4d27-ab18-e52d23a6c1ef.png", "timestamp": "2024-02-15T20:50:10.035689+00:00"}}, {"id": "fa70a22e-5dd7-4068-8c0e-afdbb1f373aa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.678119+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime, and the weather appears to be clear. There are several vehicles on the road, including cars and motorcycles. The road is lined with buildings and trees.", "snapshot": {"id": "d23c43dd-d944-4d27-ab18-e52d23a6c1ef", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/d23c43dd-d944-4d27-ab18-e52d23a6c1ef.png", "timestamp": "2024-02-15T20:50:10.035689+00:00"}}, {"id": "b53fd83a-976c-42ef-8d15-1e6b31341c53", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:21.471072+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d23c43dd-d944-4d27-ab18-e52d23a6c1ef", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/d23c43dd-d944-4d27-ab18-e52d23a6c1ef.png", "timestamp": "2024-02-15T20:50:10.035689+00:00"}}, {"id": "4309a509-4e34-463f-8aeb-7cec1ce64df4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.927725+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "3b3219a2-75ce-4bb3-9b74-39bcbce832f1", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3b3219a2-75ce-4bb3-9b74-39bcbce832f1.png", "timestamp": "2024-02-15T20:55:02.730641+00:00"}}, {"id": "e42da190-cfc8-4b40-b815-d664408cc687", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.131134+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "3b3219a2-75ce-4bb3-9b74-39bcbce832f1", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3b3219a2-75ce-4bb3-9b74-39bcbce832f1.png", "timestamp": "2024-02-15T20:55:02.730641+00:00"}}, {"id": "b90baa96-48b2-4996-9a0e-7eab0c6be84f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.017984+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3b3219a2-75ce-4bb3-9b74-39bcbce832f1", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3b3219a2-75ce-4bb3-9b74-39bcbce832f1.png", "timestamp": "2024-02-15T20:55:02.730641+00:00"}}, {"id": "81cae08f-8aec-49e1-b703-1674d0ba8ee0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.535917+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "3b3219a2-75ce-4bb3-9b74-39bcbce832f1", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3b3219a2-75ce-4bb3-9b74-39bcbce832f1.png", "timestamp": "2024-02-15T20:55:02.730641+00:00"}}, {"id": "1436b592-192f-4423-9f35-d09c6574252f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.230326+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear. There are several vehicles on the road, including cars and buses. The road is lined with buildings and trees.", "snapshot": {"id": "3b3219a2-75ce-4bb3-9b74-39bcbce832f1", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3b3219a2-75ce-4bb3-9b74-39bcbce832f1.png", "timestamp": "2024-02-15T20:55:02.730641+00:00"}}, {"id": "9b1796cc-2d93-4fde-afc0-089ea2491fc0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.721013+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "3b3219a2-75ce-4bb3-9b74-39bcbce832f1", "camera_id": "001485", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001485/3b3219a2-75ce-4bb3-9b74-39bcbce832f1.png", "timestamp": "2024-02-15T20:55:02.730641+00:00"}}]}, {"id": "000801", "name": "AV. MEM DE S X R. DOS INV\u00c1LIDOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91271, "longitude": -43.184501, "objects": ["rain", "traffic", "water_level", "image_description", "road_blockade", "image_corrupted"], "identifications": [{"id": "2a7e8bcf-a476-45df-93d4-ce19de0265d4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.374390+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "717a91b0-c860-4dc2-82b0-50d56e68280b", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/717a91b0-c860-4dc2-82b0-50d56e68280b.png", "timestamp": "2024-02-15T20:29:59.400257+00:00"}}, {"id": "2dfee656-7756-45b9-a6a4-43cda151bbab", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:11.941253+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no discernible details.", "snapshot": {"id": "717a91b0-c860-4dc2-82b0-50d56e68280b", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/717a91b0-c860-4dc2-82b0-50d56e68280b.png", "timestamp": "2024-02-15T20:29:59.400257+00:00"}}, {"id": "9f624e45-c4c3-4294-b783-59b8790b522d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:38.466345+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "eb74adf0-63e0-4e0d-8033-8bd3467de24e", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/eb74adf0-63e0-4e0d-8033-8bd3467de24e.png", "timestamp": "2024-02-15T20:32:26.640262+00:00"}}, {"id": "7cc95373-04ce-49f4-9e84-5af216186661", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:37.847154+00:00", "label": "easy", "label_explanation": "There is no traffic present on the road.", "snapshot": {"id": "eb74adf0-63e0-4e0d-8033-8bd3467de24e", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/eb74adf0-63e0-4e0d-8033-8bd3467de24e.png", "timestamp": "2024-02-15T20:32:26.640262+00:00"}}, {"id": "6b80d31e-e004-4693-9db0-1f0cf02d33be", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:37.272228+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water.", "snapshot": {"id": "eb74adf0-63e0-4e0d-8033-8bd3467de24e", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/eb74adf0-63e0-4e0d-8033-8bd3467de24e.png", "timestamp": "2024-02-15T20:32:26.640262+00:00"}}, {"id": "d0368427-8c70-4b6b-b5b7-7ebbd5651d31", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:36.743701+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "eb74adf0-63e0-4e0d-8033-8bd3467de24e", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/eb74adf0-63e0-4e0d-8033-8bd3467de24e.png", "timestamp": "2024-02-15T20:32:26.640262+00:00"}}, {"id": "186b8626-b758-4a1d-a0c2-6414e476908a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:36.169999+00:00", "label": "null", "label_explanation": "The image captures an urban road with a person walking in the middle. There are no vehicles present, and the road surface appears dry.", "snapshot": {"id": "eb74adf0-63e0-4e0d-8033-8bd3467de24e", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/eb74adf0-63e0-4e0d-8033-8bd3467de24e.png", "timestamp": "2024-02-15T20:32:26.640262+00:00"}}, {"id": "87d51b33-53d8-412f-9350-d2b1afee46ef", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:35.775806+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "eb74adf0-63e0-4e0d-8033-8bd3467de24e", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/eb74adf0-63e0-4e0d-8033-8bd3467de24e.png", "timestamp": "2024-02-15T20:32:26.640262+00:00"}}, {"id": "4bd76f09-cbdd-4c36-a0fe-436b23d3ec4b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:51.355063+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "35baab49-d0ed-45ce-9afd-2231d7d7edb8", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/35baab49-d0ed-45ce-9afd-2231d7d7edb8.png", "timestamp": "2024-02-15T20:49:41.701029+00:00"}}, {"id": "458b6504-c21e-4196-87de-b1ab93d3b447", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:51.485276+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be described.", "snapshot": {"id": "35baab49-d0ed-45ce-9afd-2231d7d7edb8", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/35baab49-d0ed-45ce-9afd-2231d7d7edb8.png", "timestamp": "2024-02-15T20:49:41.701029+00:00"}}, {"id": "cb30f419-2917-435b-9848-d76a09bb1cd0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:15.893719+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "7303360a-4654-41f8-a693-c2e021137f6e", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/7303360a-4654-41f8-a693-c2e021137f6e.png", "timestamp": "2024-02-15T20:35:04.842042+00:00"}}, {"id": "a6acbc87-efaf-4559-8a52-8f0b0049516f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.170577+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "7303360a-4654-41f8-a693-c2e021137f6e", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/7303360a-4654-41f8-a693-c2e021137f6e.png", "timestamp": "2024-02-15T20:35:04.842042+00:00"}}, {"id": "5884973d-f7d4-485c-968a-6990fdbe1a69", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:43.617581+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water.", "snapshot": {"id": "f38df8b1-52c8-49b9-a668-5f576f26198a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/f38df8b1-52c8-49b9-a668-5f576f26198a.png", "timestamp": "2024-02-15T20:37:30.882899+00:00"}}, {"id": "276dc4d0-1938-4d76-87aa-12f3a6b125a2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:42.902974+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "f38df8b1-52c8-49b9-a668-5f576f26198a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/f38df8b1-52c8-49b9-a668-5f576f26198a.png", "timestamp": "2024-02-15T20:37:30.882899+00:00"}}, {"id": "f95dafa4-a2fd-4ada-8bf8-f6186d35a1d7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:40.988453+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f38df8b1-52c8-49b9-a668-5f576f26198a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/f38df8b1-52c8-49b9-a668-5f576f26198a.png", "timestamp": "2024-02-15T20:37:30.882899+00:00"}}, {"id": "93f47169-3660-43b5-a922-c1adcc7813fc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:42.393755+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with traffic lights, trees, and buildings in the background. The road is dry, and there is no visible rain.", "snapshot": {"id": "f38df8b1-52c8-49b9-a668-5f576f26198a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/f38df8b1-52c8-49b9-a668-5f576f26198a.png", "timestamp": "2024-02-15T20:37:30.882899+00:00"}}, {"id": "ac0ea9b5-cfc5-4333-9998-2d3f72edcebe", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:44.376170+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "f38df8b1-52c8-49b9-a668-5f576f26198a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/f38df8b1-52c8-49b9-a668-5f576f26198a.png", "timestamp": "2024-02-15T20:37:30.882899+00:00"}}, {"id": "3495188a-e33b-4a09-9108-247654172dde", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:43.996163+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly in both directions.", "snapshot": {"id": "f38df8b1-52c8-49b9-a668-5f576f26198a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/f38df8b1-52c8-49b9-a668-5f576f26198a.png", "timestamp": "2024-02-15T20:37:30.882899+00:00"}}, {"id": "979383b6-4baa-4773-a55c-5456f69eebc6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:15.259590+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "368caf0b-450e-4317-a482-a5a10c62be2d", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/368caf0b-450e-4317-a482-a5a10c62be2d.png", "timestamp": "2024-02-15T20:40:02.320826+00:00"}}, {"id": "74ddb6d1-ea20-4e73-bc56-6be5525bb3c9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:15.019597+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform grey color and no visible details.", "snapshot": {"id": "368caf0b-450e-4317-a482-a5a10c62be2d", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/368caf0b-450e-4317-a482-a5a10c62be2d.png", "timestamp": "2024-02-15T20:40:02.320826+00:00"}}, {"id": "aa6ef16a-da91-4e5e-ac50-86a775b9f917", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:40.752906+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "d1771cc4-a963-4ff0-8eba-c3e586ff8578", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/d1771cc4-a963-4ff0-8eba-c3e586ff8578.png", "timestamp": "2024-02-15T20:42:31.215943+00:00"}}, {"id": "3a9ae6b5-e063-4afc-b114-f0a2fb864664", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:40.512844+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "d1771cc4-a963-4ff0-8eba-c3e586ff8578", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/d1771cc4-a963-4ff0-8eba-c3e586ff8578.png", "timestamp": "2024-02-15T20:42:31.215943+00:00"}}, {"id": "1e637fa1-508d-4261-8bbc-627569ae0858", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.346892+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "02f79186-ea39-49ce-b66a-fd7fe441d24a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/02f79186-ea39-49ce-b66a-fd7fe441d24a.png", "timestamp": "2024-02-15T20:45:20.115873+00:00"}}, {"id": "7c76c6bd-8033-42f2-b119-502dbb96e6f1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.825737+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "02f79186-ea39-49ce-b66a-fd7fe441d24a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/02f79186-ea39-49ce-b66a-fd7fe441d24a.png", "timestamp": "2024-02-15T20:45:20.115873+00:00"}}, {"id": "c816ac4a-ea4f-41c7-891f-b3474eb071c3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.454645+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "02f79186-ea39-49ce-b66a-fd7fe441d24a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/02f79186-ea39-49ce-b66a-fd7fe441d24a.png", "timestamp": "2024-02-15T20:45:20.115873+00:00"}}, {"id": "11fe9379-b4f1-4ce4-94b0-74170e30e6a7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.955324+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "02f79186-ea39-49ce-b66a-fd7fe441d24a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/02f79186-ea39-49ce-b66a-fd7fe441d24a.png", "timestamp": "2024-02-15T20:45:20.115873+00:00"}}, {"id": "7b8c696a-0906-487b-bed7-9bf6f0793f2d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.100863+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly in both directions.", "snapshot": {"id": "02f79186-ea39-49ce-b66a-fd7fe441d24a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/02f79186-ea39-49ce-b66a-fd7fe441d24a.png", "timestamp": "2024-02-15T20:45:20.115873+00:00"}}, {"id": "94d9eca6-d9e3-4da7-b1ed-356c9c78c917", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.201872+00:00", "label": "null", "label_explanation": "The image shows a four-way intersection in an urban area. It is daytime and the weather is clear. There are several cars parked on the side of the road and a few people are walking on the sidewalk.", "snapshot": {"id": "02f79186-ea39-49ce-b66a-fd7fe441d24a", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/02f79186-ea39-49ce-b66a-fd7fe441d24a.png", "timestamp": "2024-02-15T20:45:20.115873+00:00"}}, {"id": "b47c8450-6c94-44a8-abd7-7359904166f6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:25.440220+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color indicating data loss or corruption.", "snapshot": {"id": "b4a41d81-bcab-4e7a-805a-98e15255a1ad", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/b4a41d81-bcab-4e7a-805a-98e15255a1ad.png", "timestamp": "2024-02-15T20:47:16.985498+00:00"}}, {"id": "939a2e61-9219-4b5b-af20-d20e7cde88ba", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:25.701369+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "b4a41d81-bcab-4e7a-805a-98e15255a1ad", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/b4a41d81-bcab-4e7a-805a-98e15255a1ad.png", "timestamp": "2024-02-15T20:47:16.985498+00:00"}}, {"id": "f6d0015d-ca07-4ab0-b280-df4e9059ec8c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:33.590865+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6.png", "timestamp": "2024-02-15T20:52:21.301477+00:00"}}, {"id": "838192b0-61f6-4392-98dd-d786c4010d78", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:32.916139+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6.png", "timestamp": "2024-02-15T20:52:21.301477+00:00"}}, {"id": "53ef8dde-9156-4c12-8c86-4d3b182a7042", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:32.560258+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6.png", "timestamp": "2024-02-15T20:52:21.301477+00:00"}}, {"id": "9d2f156b-d78f-48ed-a9ce-a69adf6ddc49", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:32.283611+00:00", "label": "null", "label_explanation": "The image shows a street scene in an urban area. The street is relatively wide, with two lanes of traffic in each direction. There are a few trees on either side of the street, and buildings in the background. The weather appears to be clear, and the street is dry.", "snapshot": {"id": "e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6.png", "timestamp": "2024-02-15T20:52:21.301477+00:00"}}, {"id": "97fb1e93-896b-4e9b-9ba6-33ae3fc3e214", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:33.144345+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars on the street.", "snapshot": {"id": "e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6.png", "timestamp": "2024-02-15T20:52:21.301477+00:00"}}, {"id": "9acf67ee-2d66-4f58-9535-1f06055b11d9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:31.878896+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of corruption or data loss.", "snapshot": {"id": "e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/e4935369-c0b5-4d6d-9e0e-0f4de9e2aec6.png", "timestamp": "2024-02-15T20:52:21.301477+00:00"}}, {"id": "e4996c1f-f9e5-4fe1-b0ce-38a20960f507", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.830820+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "3fa51545-bf9e-4e47-a974-838d75430c60", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/3fa51545-bf9e-4e47-a974-838d75430c60.png", "timestamp": "2024-02-15T20:54:31.042838+00:00"}}, {"id": "aab9aff0-cadc-4e52-9390-31d28cc97b4b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.468755+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and distortion, making it difficult to analyze.", "snapshot": {"id": "3fa51545-bf9e-4e47-a974-838d75430c60", "camera_id": "000801", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000801/3fa51545-bf9e-4e47-a974-838d75430c60.png", "timestamp": "2024-02-15T20:54:31.042838+00:00"}}]}, {"id": "000795", "name": "AV. SALVADOR DE S\u00c1, ALTURA DO BATALH\u00c3O DO CHOQUE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911706, "longitude": -43.195338, "objects": ["image_corrupted", "image_description", "water_level", "traffic", "rain", "road_blockade"], "identifications": [{"id": "13b46074-e3c1-4cef-ba10-672970b0de2d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.613571+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "f0266c7c-ae48-4352-b63b-c44832e04028", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/f0266c7c-ae48-4352-b63b-c44832e04028.png", "timestamp": "2024-02-15T20:30:09.855413+00:00"}}, {"id": "2e77653f-a637-4a43-a423-f8a58fd11788", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.158007+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "f0266c7c-ae48-4352-b63b-c44832e04028", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/f0266c7c-ae48-4352-b63b-c44832e04028.png", "timestamp": "2024-02-15T20:30:09.855413+00:00"}}, {"id": "97e9c1c6-277e-4666-afd5-9bf981456bd6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.908174+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "f0266c7c-ae48-4352-b63b-c44832e04028", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/f0266c7c-ae48-4352-b63b-c44832e04028.png", "timestamp": "2024-02-15T20:30:09.855413+00:00"}}, {"id": "a29b50e6-b6dc-4f2c-9437-0a691e261e81", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.491648+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "f0266c7c-ae48-4352-b63b-c44832e04028", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/f0266c7c-ae48-4352-b63b-c44832e04028.png", "timestamp": "2024-02-15T20:30:09.855413+00:00"}}, {"id": "cbaf132e-6f88-431d-b5f4-515db78c6566", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.269589+00:00", "label": "null", "label_explanation": "The image captures an urban road with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "f0266c7c-ae48-4352-b63b-c44832e04028", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/f0266c7c-ae48-4352-b63b-c44832e04028.png", "timestamp": "2024-02-15T20:30:09.855413+00:00"}}, {"id": "9b5f0c51-8c28-47fb-b013-aca414aa44c8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.949330+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f0266c7c-ae48-4352-b63b-c44832e04028", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/f0266c7c-ae48-4352-b63b-c44832e04028.png", "timestamp": "2024-02-15T20:30:09.855413+00:00"}}, {"id": "4e11f9bd-918c-4179-a4b7-c5272c6a3204", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.059570+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a tree-lined median. The road is wet from rain, but there is no standing water. There are a few cars on the road, but traffic is light.", "snapshot": {"id": "e39c1b01-ab3a-4f06-8711-affad65481b9", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/e39c1b01-ab3a-4f06-8711-affad65481b9.png", "timestamp": "2024-02-15T20:32:34.770214+00:00"}}, {"id": "48a9c503-12b3-4d5e-8e45-2ec76478893a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.362600+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. The road surface is wet, but there are no signs of flooding or other hazards.", "snapshot": {"id": "e39c1b01-ab3a-4f06-8711-affad65481b9", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/e39c1b01-ab3a-4f06-8711-affad65481b9.png", "timestamp": "2024-02-15T20:32:34.770214+00:00"}}, {"id": "21d99a91-9638-4545-a775-0e33b9fc3b6e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.459865+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. Traffic is flowing smoothly.", "snapshot": {"id": "e39c1b01-ab3a-4f06-8711-affad65481b9", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/e39c1b01-ab3a-4f06-8711-affad65481b9.png", "timestamp": "2024-02-15T20:32:34.770214+00:00"}}, {"id": "c8ae9700-af25-48b5-a02d-a9236fa6543b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:55.530375+00:00", "label": "easy", "label_explanation": "Traffic is light, with a few cars on the road. The rain is likely not causing any significant traffic delays.", "snapshot": {"id": "e39c1b01-ab3a-4f06-8711-affad65481b9", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/e39c1b01-ab3a-4f06-8711-affad65481b9.png", "timestamp": "2024-02-15T20:32:34.770214+00:00"}}, {"id": "c2605240-8dca-4992-a8fc-1dc5eef85766", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:54.687687+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet from rain, but the water is not deep enough to cause any hazards.", "snapshot": {"id": "e39c1b01-ab3a-4f06-8711-affad65481b9", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/e39c1b01-ab3a-4f06-8711-affad65481b9.png", "timestamp": "2024-02-15T20:32:34.770214+00:00"}}, {"id": "07c77ff1-f8e6-4982-bfea-d8d5435372c8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.925086+00:00", "label": "true", "label_explanation": "The road is wet from rain, but there is no standing water. The rain is likely light or moderate, as the road surface is still visible.", "snapshot": {"id": "e39c1b01-ab3a-4f06-8711-affad65481b9", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/e39c1b01-ab3a-4f06-8711-affad65481b9.png", "timestamp": "2024-02-15T20:32:34.770214+00:00"}}, {"id": "12c24c33-0841-43c5-a666-6cde269a4238", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.163468+00:00", "label": "low", "label_explanation": "There is no standing water on the road, just a thin layer of water on the surface.", "snapshot": {"id": "75ace62a-ff25-444f-b91b-a0320b08213d", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/75ace62a-ff25-444f-b91b-a0320b08213d.png", "timestamp": "2024-02-15T20:45:04.058692+00:00"}}, {"id": "af280509-6382-4276-9fdf-6f5ad9fda861", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:16.426226+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a traffic light at the intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "75ace62a-ff25-444f-b91b-a0320b08213d", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/75ace62a-ff25-444f-b91b-a0320b08213d.png", "timestamp": "2024-02-15T20:45:04.058692+00:00"}}, {"id": "05f7adcf-e633-49b2-aff9-7851531c9660", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.748221+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "75ace62a-ff25-444f-b91b-a0320b08213d", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/75ace62a-ff25-444f-b91b-a0320b08213d.png", "timestamp": "2024-02-15T20:45:04.058692+00:00"}}, {"id": "580d7861-9af6-4e66-b627-ceaafe01a81b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.485102+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "75ace62a-ff25-444f-b91b-a0320b08213d", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/75ace62a-ff25-444f-b91b-a0320b08213d.png", "timestamp": "2024-02-15T20:45:04.058692+00:00"}}, {"id": "ca2aee45-51d4-43be-b7d1-f0e6ffde6c54", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:16.678926+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "75ace62a-ff25-444f-b91b-a0320b08213d", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/75ace62a-ff25-444f-b91b-a0320b08213d.png", "timestamp": "2024-02-15T20:45:04.058692+00:00"}}, {"id": "ae025824-6e0f-4726-8d33-7345cc977a02", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.988585+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "75ace62a-ff25-444f-b91b-a0320b08213d", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/75ace62a-ff25-444f-b91b-a0320b08213d.png", "timestamp": "2024-02-15T20:45:04.058692+00:00"}}, {"id": "898c3d04-0c53-4c06-a56d-79046fd24e1a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.908398+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "c488ee22-5972-44ed-af95-0a7a27f7bb0b", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/c488ee22-5972-44ed-af95-0a7a27f7bb0b.png", "timestamp": "2024-02-15T20:37:40.695544+00:00"}}, {"id": "d999ad7a-09c1-40fd-9c61-8dcec361799a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.174304+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a steady pace.", "snapshot": {"id": "c488ee22-5972-44ed-af95-0a7a27f7bb0b", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/c488ee22-5972-44ed-af95-0a7a27f7bb0b.png", "timestamp": "2024-02-15T20:37:40.695544+00:00"}}, {"id": "a3821a85-60af-4902-9076-300f027bd80f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.749074+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "c488ee22-5972-44ed-af95-0a7a27f7bb0b", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/c488ee22-5972-44ed-af95-0a7a27f7bb0b.png", "timestamp": "2024-02-15T20:37:40.695544+00:00"}}, {"id": "3f0da092-9272-437b-8279-0be5b8196c8a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.166886+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c488ee22-5972-44ed-af95-0a7a27f7bb0b", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/c488ee22-5972-44ed-af95-0a7a27f7bb0b.png", "timestamp": "2024-02-15T20:37:40.695544+00:00"}}, {"id": "c2f74c8c-0121-4f2c-a87d-e682f24f85ee", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.159577+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "c488ee22-5972-44ed-af95-0a7a27f7bb0b", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/c488ee22-5972-44ed-af95-0a7a27f7bb0b.png", "timestamp": "2024-02-15T20:37:40.695544+00:00"}}, {"id": "223c5284-fd3e-4c70-aed3-47753a2b47b2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.622982+00:00", "label": "null", "label_explanation": "The image captures an urban road with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and bicycles.", "snapshot": {"id": "c488ee22-5972-44ed-af95-0a7a27f7bb0b", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/c488ee22-5972-44ed-af95-0a7a27f7bb0b.png", "timestamp": "2024-02-15T20:37:40.695544+00:00"}}, {"id": "19107607-020a-4376-8421-5c3d7acd2a21", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.357792+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "0d65029f-2c05-48d4-afa6-54b640310d95", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0d65029f-2c05-48d4-afa6-54b640310d95.png", "timestamp": "2024-02-15T20:35:08.468763+00:00"}}, {"id": "503a10bc-d8f0-4ac0-b368-bf15053c0e91", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.157019+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions, and the image appears to be intact.", "snapshot": {"id": "0d65029f-2c05-48d4-afa6-54b640310d95", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0d65029f-2c05-48d4-afa6-54b640310d95.png", "timestamp": "2024-02-15T20:35:08.468763+00:00"}}, {"id": "640c40f0-db0f-49d5-bee0-ce43f1c18e99", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.873223+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions present in the image. The road is clear and free for traffic to pass through.", "snapshot": {"id": "0d65029f-2c05-48d4-afa6-54b640310d95", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0d65029f-2c05-48d4-afa6-54b640310d95.png", "timestamp": "2024-02-15T20:35:08.468763+00:00"}}, {"id": "1192f65c-5643-404b-a19e-66e8d0942617", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.572559+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no visible congestion or delays. Vehicles are able to move freely without any hindrances.", "snapshot": {"id": "0d65029f-2c05-48d4-afa6-54b640310d95", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0d65029f-2c05-48d4-afa6-54b640310d95.png", "timestamp": "2024-02-15T20:35:08.468763+00:00"}}, {"id": "664d52b0-0ba1-4920-92fa-aab0f52936f7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.281208+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "0d65029f-2c05-48d4-afa6-54b640310d95", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0d65029f-2c05-48d4-afa6-54b640310d95.png", "timestamp": "2024-02-15T20:35:08.468763+00:00"}}, {"id": "10473acf-ec5e-45b3-844a-577a19b04aac", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.610737+00:00", "label": "null", "label_explanation": "The image depicts an urban road with traffic lights, street signs, parked cars, and a few trees. The road surface is dry, and there are no visible obstructions.", "snapshot": {"id": "0d65029f-2c05-48d4-afa6-54b640310d95", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0d65029f-2c05-48d4-afa6-54b640310d95.png", "timestamp": "2024-02-15T20:35:08.468763+00:00"}}, {"id": "3513dcf4-ba19-4a2e-b3c3-df84b674498e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.880491+00:00", "label": "free", "label_explanation": "There are no road blockades on the road. The road is clear and passable for all types of vehicles.", "snapshot": {"id": "41a92397-fc34-43c8-93d9-9afdd19331f1", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/41a92397-fc34-43c8-93d9-9afdd19331f1.png", "timestamp": "2024-02-15T20:40:12.358297+00:00"}}, {"id": "bbb78fee-1f01-4c3b-bcd5-ef3c3a557a7a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.589998+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are several vehicles on the road, but they are able to move freely. There are no major traffic jams or delays.", "snapshot": {"id": "41a92397-fc34-43c8-93d9-9afdd19331f1", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/41a92397-fc34-43c8-93d9-9afdd19331f1.png", "timestamp": "2024-02-15T20:40:12.358297+00:00"}}, {"id": "f15c1728-03a2-4fd8-91d1-4496b9719419", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.271737+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles of water are shallow, and they do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "41a92397-fc34-43c8-93d9-9afdd19331f1", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/41a92397-fc34-43c8-93d9-9afdd19331f1.png", "timestamp": "2024-02-15T20:40:12.358297+00:00"}}, {"id": "c37a40cd-e623-4091-8a95-4eaabdcc5c69", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.651351+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rainfall. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also using the sidewalk on either side of the road. The road is lined with trees, and buildings and other structures can be seen in the background.", "snapshot": {"id": "41a92397-fc34-43c8-93d9-9afdd19331f1", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/41a92397-fc34-43c8-93d9-9afdd19331f1.png", "timestamp": "2024-02-15T20:40:12.358297+00:00"}}, {"id": "c5806208-b03e-44ee-8cc9-2ac5b9b287c8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.302367+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "41a92397-fc34-43c8-93d9-9afdd19331f1", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/41a92397-fc34-43c8-93d9-9afdd19331f1.png", "timestamp": "2024-02-15T20:40:12.358297+00:00"}}, {"id": "1783b1ba-ff8c-4df3-81d3-93980ae45978", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.932598+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road. It is likely that it has been raining recently, but the rain has stopped by the time the image was captured.", "snapshot": {"id": "41a92397-fc34-43c8-93d9-9afdd19331f1", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/41a92397-fc34-43c8-93d9-9afdd19331f1.png", "timestamp": "2024-02-15T20:40:12.358297+00:00"}}, {"id": "a53f8170-2677-43b1-b63d-7c23b79301cf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.160840+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for all types of vehicles.", "snapshot": {"id": "0a0bfff8-fb4c-4452-8463-926facd326e4", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0a0bfff8-fb4c-4452-8463-926facd326e4.png", "timestamp": "2024-02-15T20:42:39.911461+00:00"}}, {"id": "76edf0a9-e6ad-41d2-90f0-f88d1728259f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.842442+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining.", "snapshot": {"id": "0a0bfff8-fb4c-4452-8463-926facd326e4", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0a0bfff8-fb4c-4452-8463-926facd326e4.png", "timestamp": "2024-02-15T20:42:39.911461+00:00"}}, {"id": "90dd90f0-97cf-417b-93a7-60ce9f6d1a39", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.532666+00:00", "label": "null", "label_explanation": "The image captures an urban road with moderate traffic. It is daytime and the weather appears to be cloudy. The road surface is wet, with small puddles scattered throughout.", "snapshot": {"id": "0a0bfff8-fb4c-4452-8463-926facd326e4", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0a0bfff8-fb4c-4452-8463-926facd326e4.png", "timestamp": "2024-02-15T20:42:39.911461+00:00"}}, {"id": "f4449e1f-827a-4b48-9e33-3aecb10ce4d7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.216516+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0a0bfff8-fb4c-4452-8463-926facd326e4", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0a0bfff8-fb4c-4452-8463-926facd326e4.png", "timestamp": "2024-02-15T20:42:39.911461+00:00"}}, {"id": "2247fc0b-c619-4427-b13b-d1076edec835", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:53.884793+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "0a0bfff8-fb4c-4452-8463-926facd326e4", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0a0bfff8-fb4c-4452-8463-926facd326e4.png", "timestamp": "2024-02-15T20:42:39.911461+00:00"}}, {"id": "46b10581-c736-4ac6-91e4-44a81733783b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:53.159010+00:00", "label": "low", "label_explanation": "The water level on the road is relatively low, with most of the surface still visible. There are some small puddles, but they do not pose a significant hazard to traffic.", "snapshot": {"id": "0a0bfff8-fb4c-4452-8463-926facd326e4", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0a0bfff8-fb4c-4452-8463-926facd326e4.png", "timestamp": "2024-02-15T20:42:39.911461+00:00"}}, {"id": "19da1fed-0b83-4c58-a161-c3245ed63af4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.669418+00:00", "label": "easy", "label_explanation": "The presence of water on the road does not appear to be causing any major disruptions to traffic flow. Vehicles are able to navigate the road without difficulty.", "snapshot": {"id": "23d30246-02b3-4fd0-9b37-2de612b9629e", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/23d30246-02b3-4fd0-9b37-2de612b9629e.png", "timestamp": "2024-02-15T20:47:26.240850+00:00"}}, {"id": "0ff65e96-17fb-47ac-bb19-f5eabf706988", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.111005+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating the presence of rain.", "snapshot": {"id": "23d30246-02b3-4fd0-9b37-2de612b9629e", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/23d30246-02b3-4fd0-9b37-2de612b9629e.png", "timestamp": "2024-02-15T20:47:26.240850+00:00"}}, {"id": "1062411a-a5ee-490f-af91-49525fdf1924", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.898489+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely.", "snapshot": {"id": "23d30246-02b3-4fd0-9b37-2de612b9629e", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/23d30246-02b3-4fd0-9b37-2de612b9629e.png", "timestamp": "2024-02-15T20:47:26.240850+00:00"}}, {"id": "5ae9d72e-63e1-4478-bbdb-5030afb387c9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.771232+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a bus driving on the right side of the road. There are cars parked on the left side of the road, and trees on both sides of the road. The weather appears to be cloudy and wet, as the road is visibly wet.", "snapshot": {"id": "23d30246-02b3-4fd0-9b37-2de612b9629e", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/23d30246-02b3-4fd0-9b37-2de612b9629e.png", "timestamp": "2024-02-15T20:47:26.240850+00:00"}}, {"id": "a69d0b5f-463f-481d-9df7-680d16761fb9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.438902+00:00", "label": "low", "label_explanation": "While the road is wet, there are no significant puddles or water accumulation visible on the road surface.", "snapshot": {"id": "23d30246-02b3-4fd0-9b37-2de612b9629e", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/23d30246-02b3-4fd0-9b37-2de612b9629e.png", "timestamp": "2024-02-15T20:47:26.240850+00:00"}}, {"id": "57abfa29-2e35-4252-b3e2-f108e0995cf5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.469110+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "23d30246-02b3-4fd0-9b37-2de612b9629e", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/23d30246-02b3-4fd0-9b37-2de612b9629e.png", "timestamp": "2024-02-15T20:47:26.240850+00:00"}}, {"id": "2462ccda-09c6-4d6c-a8e5-d96842095eb1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:51.910531+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "a31ba8cd-967b-4d08-ae3c-05ada3588ea0", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/a31ba8cd-967b-4d08-ae3c-05ada3588ea0.png", "timestamp": "2024-02-15T20:54:40.864851+00:00"}}, {"id": "b3d01a61-e5be-4c4f-acf4-fe2d4865874c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:51.614507+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with large sections of it showing a uniform green color and other areas displaying a rainbow of distorted colors. These distortions make it impossible to discern any meaningful information from the image.", "snapshot": {"id": "a31ba8cd-967b-4d08-ae3c-05ada3588ea0", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/a31ba8cd-967b-4d08-ae3c-05ada3588ea0.png", "timestamp": "2024-02-15T20:54:40.864851+00:00"}}, {"id": "6fd75914-afe5-4d0b-a1f0-943f1fd5dfb2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.096233+00:00", "label": "low", "label_explanation": "There is no significant water accumulation on the road surface. The wetness is likely due to recent rain or moisture from the environment.", "snapshot": {"id": "823ec05d-46d1-4a66-b42d-ab3e83d5d708", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/823ec05d-46d1-4a66-b42d-ab3e83d5d708.png", "timestamp": "2024-02-15T20:52:15.266824+00:00"}}, {"id": "99b10fa0-3eaa-4e89-a475-27579fbad8be", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.527038+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street and surrounding environment. It is daytime, and the weather appears to be cloudy but dry.", "snapshot": {"id": "823ec05d-46d1-4a66-b42d-ab3e83d5d708", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/823ec05d-46d1-4a66-b42d-ab3e83d5d708.png", "timestamp": "2024-02-15T20:52:15.266824+00:00"}}, {"id": "a0582685-8d7c-45fb-bdfa-ff98ee3f0be5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.647626+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "823ec05d-46d1-4a66-b42d-ab3e83d5d708", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/823ec05d-46d1-4a66-b42d-ab3e83d5d708.png", "timestamp": "2024-02-15T20:52:15.266824+00:00"}}, {"id": "b23588c0-2608-4d82-a5dd-ca58dd08c1b6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.769867+00:00", "label": "false", "label_explanation": "While the image shows a wet road surface, there is no active rainfall observed.", "snapshot": {"id": "823ec05d-46d1-4a66-b42d-ab3e83d5d708", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/823ec05d-46d1-4a66-b42d-ab3e83d5d708.png", "timestamp": "2024-02-15T20:52:15.266824+00:00"}}, {"id": "341811d5-8e0e-466a-adec-31dea0f58684", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.335553+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible obstructions or traffic disruptions.", "snapshot": {"id": "823ec05d-46d1-4a66-b42d-ab3e83d5d708", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/823ec05d-46d1-4a66-b42d-ab3e83d5d708.png", "timestamp": "2024-02-15T20:52:15.266824+00:00"}}, {"id": "c053049d-2476-45a1-9d17-abbfd3581e73", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.267817+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "823ec05d-46d1-4a66-b42d-ab3e83d5d708", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/823ec05d-46d1-4a66-b42d-ab3e83d5d708.png", "timestamp": "2024-02-15T20:52:15.266824+00:00"}}, {"id": "92fa6235-7285-4021-ad3c-c3e3c346d226", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.703855+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but this is likely due to recent rain.", "snapshot": {"id": "0cbee897-9ac6-44dd-ba01-bd4f219abd17", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0cbee897-9ac6-44dd-ba01-bd4f219abd17.png", "timestamp": "2024-02-15T20:49:52.001751+00:00"}}, {"id": "1b6584d7-df5d-4a81-b0ba-8f6b3e877b9e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.536337+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable.", "snapshot": {"id": "0cbee897-9ac6-44dd-ba01-bd4f219abd17", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0cbee897-9ac6-44dd-ba01-bd4f219abd17.png", "timestamp": "2024-02-15T20:49:52.001751+00:00"}}, {"id": "0f1a0031-3aa0-4e95-9277-b4288e0c4038", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.228543+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars and a bus. The road surface is wet, but there is no standing water.", "snapshot": {"id": "0cbee897-9ac6-44dd-ba01-bd4f219abd17", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0cbee897-9ac6-44dd-ba01-bd4f219abd17.png", "timestamp": "2024-02-15T20:49:52.001751+00:00"}}, {"id": "8d3de333-55b3-45f1-b1eb-b5cc4403ada7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.472267+00:00", "label": "true", "label_explanation": "The road surface is wet, but there is no standing water. This indicates that it has been raining recently, but the rain has stopped.", "snapshot": {"id": "0cbee897-9ac6-44dd-ba01-bd4f219abd17", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0cbee897-9ac6-44dd-ba01-bd4f219abd17.png", "timestamp": "2024-02-15T20:49:52.001751+00:00"}}, {"id": "a31c4851-0672-422f-930a-699e871aced7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.974489+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0cbee897-9ac6-44dd-ba01-bd4f219abd17", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0cbee897-9ac6-44dd-ba01-bd4f219abd17.png", "timestamp": "2024-02-15T20:49:52.001751+00:00"}}, {"id": "ac1736a3-4ce9-4a8a-adec-23c3b393f03b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.093473+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with several vehicles on the road. The vehicles are moving at a slow to moderate speed.", "snapshot": {"id": "0cbee897-9ac6-44dd-ba01-bd4f219abd17", "camera_id": "000795", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000795/0cbee897-9ac6-44dd-ba01-bd4f219abd17.png", "timestamp": "2024-02-15T20:49:52.001751+00:00"}}]}, {"id": "001487", "name": "RIO MARACAN\u00c3 ALT DA R. JOS\u00c9 HIGINO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92802221, "longitude": -43.23969679, "objects": ["rain", "traffic", "image_corrupted", "image_description", "water_level", "road_blockade"], "identifications": [{"id": "e15bc338-35a7-4e64-a26e-119a3bf64fea", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:20.362908+00:00", "label": "medium", "label_explanation": "The water level is moderate, covering approximately half of the road's surface.", "snapshot": {"id": "6116c520-58d3-494f-b6b4-2a4aa92535a8", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/6116c520-58d3-494f-b6b4-2a4aa92535a8.png", "timestamp": "2024-02-15T20:30:04.932916+00:00"}}, {"id": "4df20293-6953-42f6-b4c5-1d67df428ad8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:19.931467+00:00", "label": "true", "label_explanation": "The image shows a partially flooded urban road with a low concrete wall on one side and a metal fence on the other. The road is covered with water, making it difficult to see the surface. There are some trees and bushes in the background.", "snapshot": {"id": "6116c520-58d3-494f-b6b4-2a4aa92535a8", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/6116c520-58d3-494f-b6b4-2a4aa92535a8.png", "timestamp": "2024-02-15T20:30:04.932916+00:00"}}, {"id": "8eb2f905-6c0b-4fcc-b485-7cb8e85f71e1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:19.677114+00:00", "label": "null", "label_explanation": "The image shows a partially flooded urban road with a low concrete wall on one side and a metal fence on the other. The road is covered with water, making it difficult to see the surface. There are some trees and bushes in the background.", "snapshot": {"id": "6116c520-58d3-494f-b6b4-2a4aa92535a8", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/6116c520-58d3-494f-b6b4-2a4aa92535a8.png", "timestamp": "2024-02-15T20:30:04.932916+00:00"}}, {"id": "4b21f27c-3ebe-4c03-a47a-a4699f935c02", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:19.305056+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6116c520-58d3-494f-b6b4-2a4aa92535a8", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/6116c520-58d3-494f-b6b4-2a4aa92535a8.png", "timestamp": "2024-02-15T20:30:04.932916+00:00"}}, {"id": "1de90a8a-c4bc-4267-96a7-9427f11af81b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.574893+00:00", "label": "partially", "label_explanation": "The road is partially blocked by the floodwater, but it is still possible for vehicles to pass with caution.", "snapshot": {"id": "6116c520-58d3-494f-b6b4-2a4aa92535a8", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/6116c520-58d3-494f-b6b4-2a4aa92535a8.png", "timestamp": "2024-02-15T20:30:04.932916+00:00"}}, {"id": "0c6d4d3e-76b7-4e0f-a7aa-2acac0a283fd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.073272+00:00", "label": "moderate", "label_explanation": "The flooded road makes it difficult for vehicles to pass, but it is still possible with caution.", "snapshot": {"id": "6116c520-58d3-494f-b6b4-2a4aa92535a8", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/6116c520-58d3-494f-b6b4-2a4aa92535a8.png", "timestamp": "2024-02-15T20:30:04.932916+00:00"}}, {"id": "e8dd43f5-d362-4766-a923-390b73763f03", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.581481+00:00", "label": "partially", "label_explanation": "The road is not completely blocked, as vehicles can still pass with caution.", "snapshot": {"id": "ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7.png", "timestamp": "2024-02-15T20:32:33.705095+00:00"}}, {"id": "9b8a1bc2-3727-462a-be10-fed4f57f295d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:49.970222+00:00", "label": "difficult", "label_explanation": "The road is partially blocked by the water and debris, making it difficult for vehicles to pass.", "snapshot": {"id": "ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7.png", "timestamp": "2024-02-15T20:32:33.705095+00:00"}}, {"id": "ce174001-9e38-4e58-981b-62f40597ce3d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.320619+00:00", "label": "true", "label_explanation": "The presence of water on the road indicates that it has been raining.", "snapshot": {"id": "ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7.png", "timestamp": "2024-02-15T20:32:33.705095+00:00"}}, {"id": "e6ab265c-d20a-4597-bb2e-ee849c8d3bea", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:47.020697+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7.png", "timestamp": "2024-02-15T20:32:33.705095+00:00"}}, {"id": "f79e77a1-ed46-42e3-9b50-338a549d3aca", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.925925+00:00", "label": "medium", "label_explanation": "The water level is moderate, as it covers a significant portion of the road but does not completely submerge it.", "snapshot": {"id": "ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7.png", "timestamp": "2024-02-15T20:32:33.705095+00:00"}}, {"id": "6fa43fde-4fb3-4de9-8740-be2762433094", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:47.675422+00:00", "label": "null", "label_explanation": "The image shows a partially flooded urban road with a significant amount of debris.", "snapshot": {"id": "ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/ed7c5d9f-7f30-48c7-90a0-7f6bed7f13a7.png", "timestamp": "2024-02-15T20:32:33.705095+00:00"}}, {"id": "09e0fc36-dd03-4baa-b2c8-8a6d2990ac61", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.701849+00:00", "label": "difficult", "label_explanation": "Traffic is difficult due to the flooding, and some vehicles may be unable to pass.", "snapshot": {"id": "8377acd6-e0b8-4b59-bc22-392ce65fe733", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8377acd6-e0b8-4b59-bc22-392ce65fe733.png", "timestamp": "2024-02-15T20:45:01.045049+00:00"}}, {"id": "8e43d7d3-c288-44f1-beae-eea64b41ae0e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.648844+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8377acd6-e0b8-4b59-bc22-392ce65fe733", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8377acd6-e0b8-4b59-bc22-392ce65fe733.png", "timestamp": "2024-02-15T20:45:01.045049+00:00"}}, {"id": "4a609f3f-0a89-40de-acb4-f0abdaf805d1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.270692+00:00", "label": "true", "label_explanation": "There is heavy rain falling, and the road is wet.", "snapshot": {"id": "8377acd6-e0b8-4b59-bc22-392ce65fe733", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8377acd6-e0b8-4b59-bc22-392ce65fe733.png", "timestamp": "2024-02-15T20:45:01.045049+00:00"}}, {"id": "cc3d942c-9dd2-415e-afb9-8de974f3d33b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.022503+00:00", "label": "partially", "label_explanation": "The road is partially blocked by debris, but some vehicles may still be able to pass.", "snapshot": {"id": "8377acd6-e0b8-4b59-bc22-392ce65fe733", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8377acd6-e0b8-4b59-bc22-392ce65fe733.png", "timestamp": "2024-02-15T20:45:01.045049+00:00"}}, {"id": "9d28057f-eec3-4736-973d-a9f8fc83c8ea", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:10.874084+00:00", "label": "null", "label_explanation": "The image shows a partially flooded urban road with a significant amount of debris.", "snapshot": {"id": "8377acd6-e0b8-4b59-bc22-392ce65fe733", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8377acd6-e0b8-4b59-bc22-392ce65fe733.png", "timestamp": "2024-02-15T20:45:01.045049+00:00"}}, {"id": "a9acd96d-8b39-4320-a140-6c1a00c95984", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.456348+00:00", "label": "medium", "label_explanation": "The water level is moderate, with some parts of the road completely submerged.", "snapshot": {"id": "8377acd6-e0b8-4b59-bc22-392ce65fe733", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8377acd6-e0b8-4b59-bc22-392ce65fe733.png", "timestamp": "2024-02-15T20:45:01.045049+00:00"}}, {"id": "4a254fea-da6e-4b9d-bae2-7e40ebe35b79", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.958424+00:00", "label": "partially", "label_explanation": "Although there is water on the road, it does not completely obstruct traffic, allowing vehicles to pass through with caution.", "snapshot": {"id": "30ce7d69-2fac-4616-9aa1-7d74f8d6352f", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/30ce7d69-2fac-4616-9aa1-7d74f8d6352f.png", "timestamp": "2024-02-15T20:35:05.338331+00:00"}}, {"id": "107e6f39-1481-4f20-98a8-ca029e26d130", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.201804+00:00", "label": "moderate", "label_explanation": "The shallow water on the road may cause minor traffic disruptions, requiring slower speeds and increased caution from drivers.", "snapshot": {"id": "30ce7d69-2fac-4616-9aa1-7d74f8d6352f", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/30ce7d69-2fac-4616-9aa1-7d74f8d6352f.png", "timestamp": "2024-02-15T20:35:05.338331+00:00"}}, {"id": "d9682859-3bfb-4b29-b192-86acb78688d6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:19.919092+00:00", "label": "low", "label_explanation": "The water appears to be shallow, with small ripples on the surface, covering some parts of the road but not completely submerging it.", "snapshot": {"id": "30ce7d69-2fac-4616-9aa1-7d74f8d6352f", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/30ce7d69-2fac-4616-9aa1-7d74f8d6352f.png", "timestamp": "2024-02-15T20:35:05.338331+00:00"}}, {"id": "5adfdaf1-acb7-4f09-9c17-4d3a484c11f3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.076136+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "30ce7d69-2fac-4616-9aa1-7d74f8d6352f", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/30ce7d69-2fac-4616-9aa1-7d74f8d6352f.png", "timestamp": "2024-02-15T20:35:05.338331+00:00"}}, {"id": "8b40e0d7-764e-43eb-b51f-268738c06bfe", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:19.294415+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining.", "snapshot": {"id": "30ce7d69-2fac-4616-9aa1-7d74f8d6352f", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/30ce7d69-2fac-4616-9aa1-7d74f8d6352f.png", "timestamp": "2024-02-15T20:35:05.338331+00:00"}}, {"id": "94294270-f926-4a21-8723-79c9d77b2917", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.801055+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a white vehicle in the foreground, surrounded by buildings and vegetation.", "snapshot": {"id": "30ce7d69-2fac-4616-9aa1-7d74f8d6352f", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/30ce7d69-2fac-4616-9aa1-7d74f8d6352f.png", "timestamp": "2024-02-15T20:35:05.338331+00:00"}}, {"id": "24de8c55-fefa-4b9f-9db1-548478b7530b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:46.755763+00:00", "label": "moderate", "label_explanation": "The car in the image is able to pass through the flooded area, albeit with some difficulty. The water is not deep enough to cause the car to hydroplane or lose control.", "snapshot": {"id": "d80258c9-8a53-42b9-9d1e-e03b996468c2", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d80258c9-8a53-42b9-9d1e-e03b996468c2.png", "timestamp": "2024-02-15T20:37:33.601797+00:00"}}, {"id": "63fa6550-23cc-4ef7-a4ab-f482adbab90e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:46.309667+00:00", "label": "medium", "label_explanation": "The water level is moderate, as it covers a significant portion of the road but does not completely submerge it. The water appears to be flowing slowly, with some small waves visible on its surface.", "snapshot": {"id": "d80258c9-8a53-42b9-9d1e-e03b996468c2", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d80258c9-8a53-42b9-9d1e-e03b996468c2.png", "timestamp": "2024-02-15T20:37:33.601797+00:00"}}, {"id": "23aeba71-8dc9-4bfd-b206-cce0d18355d8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:47.053957+00:00", "label": "partially", "label_explanation": "The flooded area does not completely block the road, as the car is able to pass through. However, the water may pose a hazard to other vehicles, such as motorcycles or bicycles.", "snapshot": {"id": "d80258c9-8a53-42b9-9d1e-e03b996468c2", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d80258c9-8a53-42b9-9d1e-e03b996468c2.png", "timestamp": "2024-02-15T20:37:33.601797+00:00"}}, {"id": "22c5ae42-d984-4126-86ff-31f445f90570", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:45.371696+00:00", "label": "null", "label_explanation": "The image captures a partially flooded urban road with a car passing by. The road is surrounded by buildings and vegetation, with a guard rail on one side. The water appears to be several inches deep, with some debris floating on its surface.", "snapshot": {"id": "d80258c9-8a53-42b9-9d1e-e03b996468c2", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d80258c9-8a53-42b9-9d1e-e03b996468c2.png", "timestamp": "2024-02-15T20:37:33.601797+00:00"}}, {"id": "ce61a2c7-4435-4dbc-a630-f44858597d38", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:45.108416+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d80258c9-8a53-42b9-9d1e-e03b996468c2", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d80258c9-8a53-42b9-9d1e-e03b996468c2.png", "timestamp": "2024-02-15T20:37:33.601797+00:00"}}, {"id": "b8ad8927-8f78-4f36-8202-19de66ccf19c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:45.732022+00:00", "label": "true", "label_explanation": "The presence of water on the road indicates that it has been raining.", "snapshot": {"id": "d80258c9-8a53-42b9-9d1e-e03b996468c2", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d80258c9-8a53-42b9-9d1e-e03b996468c2.png", "timestamp": "2024-02-15T20:37:33.601797+00:00"}}, {"id": "65592206-8ad2-4f46-ac6b-a05684c77853", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:20.966872+00:00", "label": "null", "label_explanation": "The image shows a flooded road with a significant amount of debris.", "snapshot": {"id": "d66012cf-f182-4c81-8ae7-d1b5499fa449", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d66012cf-f182-4c81-8ae7-d1b5499fa449.png", "timestamp": "2024-02-15T20:40:08.868361+00:00"}}, {"id": "d8bbbca5-bfe1-4ed6-81bf-ed3680aad34d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.607740+00:00", "label": "moderate", "label_explanation": "Traffic is moving slowly due to the water on the road.", "snapshot": {"id": "d66012cf-f182-4c81-8ae7-d1b5499fa449", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d66012cf-f182-4c81-8ae7-d1b5499fa449.png", "timestamp": "2024-02-15T20:40:08.868361+00:00"}}, {"id": "940410e8-be58-40d7-9281-f8becd73b0fb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.539634+00:00", "label": "true", "label_explanation": "The road is wet and there is water flowing over the surface.", "snapshot": {"id": "d66012cf-f182-4c81-8ae7-d1b5499fa449", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d66012cf-f182-4c81-8ae7-d1b5499fa449.png", "timestamp": "2024-02-15T20:40:08.868361+00:00"}}, {"id": "560b1bf4-6661-4f3c-a1c2-fb2454b1da00", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:20.134613+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "d66012cf-f182-4c81-8ae7-d1b5499fa449", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d66012cf-f182-4c81-8ae7-d1b5499fa449.png", "timestamp": "2024-02-15T20:40:08.868361+00:00"}}, {"id": "b521ba2f-e699-4e18-b953-01bf6158559a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.187515+00:00", "label": "partially", "label_explanation": "The road is partially blocked by debris, but it is still passable.", "snapshot": {"id": "d66012cf-f182-4c81-8ae7-d1b5499fa449", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d66012cf-f182-4c81-8ae7-d1b5499fa449.png", "timestamp": "2024-02-15T20:40:08.868361+00:00"}}, {"id": "7aac27a9-15ba-4e83-a0a3-787a630d816d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.942663+00:00", "label": "medium", "label_explanation": "The water level is high, but the road is still passable.", "snapshot": {"id": "d66012cf-f182-4c81-8ae7-d1b5499fa449", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/d66012cf-f182-4c81-8ae7-d1b5499fa449.png", "timestamp": "2024-02-15T20:40:08.868361+00:00"}}, {"id": "994f914c-75f6-43f5-86e4-dcabfc3cd423", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.412697+00:00", "label": "medium", "label_explanation": "The water level is moderate, as it is high enough to cover the curb but not completely submerge the road.", "snapshot": {"id": "36b2841e-4628-4af6-a058-396be0d35bd4", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/36b2841e-4628-4af6-a058-396be0d35bd4.png", "timestamp": "2024-02-15T20:47:25.186287+00:00"}}, {"id": "fa75ff04-f72f-4190-a97b-eb8a4035dcb0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.145998+00:00", "label": "partially", "label_explanation": "The road is partially blocked by the floodwater, but it is still possible to pass.", "snapshot": {"id": "36b2841e-4628-4af6-a058-396be0d35bd4", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/36b2841e-4628-4af6-a058-396be0d35bd4.png", "timestamp": "2024-02-15T20:47:25.186287+00:00"}}, {"id": "0ce84d0f-6d50-4ab5-b84c-c11b75c91288", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.681922+00:00", "label": "null", "label_explanation": "The image shows a partially flooded urban road with a low concrete wall on the left and debris on the right.", "snapshot": {"id": "36b2841e-4628-4af6-a058-396be0d35bd4", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/36b2841e-4628-4af6-a058-396be0d35bd4.png", "timestamp": "2024-02-15T20:47:25.186287+00:00"}}, {"id": "4b569e8f-bca7-477f-bd0b-5681512163d7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.502846+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "36b2841e-4628-4af6-a058-396be0d35bd4", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/36b2841e-4628-4af6-a058-396be0d35bd4.png", "timestamp": "2024-02-15T20:47:25.186287+00:00"}}, {"id": "e9df0867-9407-4737-9d7a-9019728842dc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.181533+00:00", "label": "true", "label_explanation": "There is heavy rain, as indicated by the water flowing over the curb and onto the road.", "snapshot": {"id": "36b2841e-4628-4af6-a058-396be0d35bd4", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/36b2841e-4628-4af6-a058-396be0d35bd4.png", "timestamp": "2024-02-15T20:47:25.186287+00:00"}}, {"id": "824e915a-d2d4-46e9-9482-d12cbea4743f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:36.888659+00:00", "label": "difficult", "label_explanation": "Traffic is likely to be difficult, as the flooded road may be slippery and hazardous.", "snapshot": {"id": "36b2841e-4628-4af6-a058-396be0d35bd4", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/36b2841e-4628-4af6-a058-396be0d35bd4.png", "timestamp": "2024-02-15T20:47:25.186287+00:00"}}, {"id": "4377683c-e393-432e-b745-bf8d28f38782", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.933173+00:00", "label": "true", "label_explanation": "The presence of water on the road indicates that it has been raining.", "snapshot": {"id": "8792286d-0858-45d1-981c-61ff953b3110", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8792286d-0858-45d1-981c-61ff953b3110.png", "timestamp": "2024-02-15T20:42:37.357564+00:00"}}, {"id": "dc5529e3-57f9-48d3-abf8-62fd8c766508", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.560476+00:00", "label": "difficult", "label_explanation": "The flooded road makes it difficult for vehicles to pass, but it is not completely impassable. Some vehicles may be able to drive through the water, while others may need to find an alternate route.", "snapshot": {"id": "8792286d-0858-45d1-981c-61ff953b3110", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8792286d-0858-45d1-981c-61ff953b3110.png", "timestamp": "2024-02-15T20:42:37.357564+00:00"}}, {"id": "392cb971-7cc8-4657-82db-fd5f43663321", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.447177+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8792286d-0858-45d1-981c-61ff953b3110", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8792286d-0858-45d1-981c-61ff953b3110.png", "timestamp": "2024-02-15T20:42:37.357564+00:00"}}, {"id": "fba1e4d5-dc3e-4944-b970-c938d3bff4ff", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.824988+00:00", "label": "partially", "label_explanation": "The road is partially blocked by the water, but it is not completely impassable. Vehicles may be able to pass through the water with caution.", "snapshot": {"id": "8792286d-0858-45d1-981c-61ff953b3110", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8792286d-0858-45d1-981c-61ff953b3110.png", "timestamp": "2024-02-15T20:42:37.357564+00:00"}}, {"id": "3c493263-bbde-48be-89bd-e4368a3ee29f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.180398+00:00", "label": "medium", "label_explanation": "The water level is moderate, as it covers a significant portion of the road but does not completely submerge it. The water appears to be flowing slowly.", "snapshot": {"id": "8792286d-0858-45d1-981c-61ff953b3110", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8792286d-0858-45d1-981c-61ff953b3110.png", "timestamp": "2024-02-15T20:42:37.357564+00:00"}}, {"id": "40c4b476-5308-4e0f-be3a-c1be1cd077e0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.639648+00:00", "label": "null", "label_explanation": "The image shows a partially flooded urban road with a low concrete wall on one side and a metal fence on the other. The road is covered with water, making it difficult to see the exact depth of the water. There are some small debris floating in the water.", "snapshot": {"id": "8792286d-0858-45d1-981c-61ff953b3110", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/8792286d-0858-45d1-981c-61ff953b3110.png", "timestamp": "2024-02-15T20:42:37.357564+00:00"}}, {"id": "a08270db-a095-42f8-8447-f7692ed15271", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:00.853883+00:00", "label": "null", "label_explanation": "The image shows a narrow urban road with a motorcycle parked on the side. The road is wet from recent rain, and there is a small amount of debris on the ground.", "snapshot": {"id": "bb7756b4-09e2-45b6-b7d4-fc8bc552a63e", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/bb7756b4-09e2-45b6-b7d4-fc8bc552a63e.png", "timestamp": "2024-02-15T20:49:49.423291+00:00"}}, {"id": "d8adb6dd-b608-481e-a213-b6466502fc62", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:00.715143+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bb7756b4-09e2-45b6-b7d4-fc8bc552a63e", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/bb7756b4-09e2-45b6-b7d4-fc8bc552a63e.png", "timestamp": "2024-02-15T20:49:49.423291+00:00"}}, {"id": "c9837897-c546-43c1-8595-43c2a22a388e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:01.735657+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road, but it is not enough to cause any significant problems for traffic.", "snapshot": {"id": "bb7756b4-09e2-45b6-b7d4-fc8bc552a63e", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/bb7756b4-09e2-45b6-b7d4-fc8bc552a63e.png", "timestamp": "2024-02-15T20:49:49.423291+00:00"}}, {"id": "5cada343-05ad-49b4-8516-98fecb9b4387", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.068206+00:00", "label": "easy", "label_explanation": "The road is clear and there is no traffic congestion.", "snapshot": {"id": "bb7756b4-09e2-45b6-b7d4-fc8bc552a63e", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/bb7756b4-09e2-45b6-b7d4-fc8bc552a63e.png", "timestamp": "2024-02-15T20:49:49.423291+00:00"}}, {"id": "c406815b-8735-4dbd-b465-886584ed07ee", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:01.381504+00:00", "label": "true", "label_explanation": "The road is wet from recent rain.", "snapshot": {"id": "bb7756b4-09e2-45b6-b7d4-fc8bc552a63e", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/bb7756b4-09e2-45b6-b7d4-fc8bc552a63e.png", "timestamp": "2024-02-15T20:49:49.423291+00:00"}}, {"id": "0cdafa2e-74bc-429c-865f-560b8b9572be", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.388330+00:00", "label": "free", "label_explanation": "There are no obstructions on the road.", "snapshot": {"id": "bb7756b4-09e2-45b6-b7d4-fc8bc552a63e", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/bb7756b4-09e2-45b6-b7d4-fc8bc552a63e.png", "timestamp": "2024-02-15T20:49:49.423291+00:00"}}, {"id": "a8ac5994-9ada-4080-beaa-dc61c483bdab", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.681492+00:00", "label": "moderate", "label_explanation": "Traffic is likely to be moving slowly due to the wet conditions, but there are no major obstructions.", "snapshot": {"id": "1cb3ef26-aca2-4726-b65e-c1db59db74da", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/1cb3ef26-aca2-4726-b65e-c1db59db74da.png", "timestamp": "2024-02-15T20:52:12.864830+00:00"}}, {"id": "52dba78e-f768-48b3-864a-cd828d713e83", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.242018+00:00", "label": "free", "label_explanation": "There are no obstructions on the road.", "snapshot": {"id": "1cb3ef26-aca2-4726-b65e-c1db59db74da", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/1cb3ef26-aca2-4726-b65e-c1db59db74da.png", "timestamp": "2024-02-15T20:52:12.864830+00:00"}}, {"id": "7ae1c845-65ec-4d15-84a1-1d3a55b30264", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.330471+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road, but it is not enough to cause any significant problems for traffic.", "snapshot": {"id": "1cb3ef26-aca2-4726-b65e-c1db59db74da", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/1cb3ef26-aca2-4726-b65e-c1db59db74da.png", "timestamp": "2024-02-15T20:52:12.864830+00:00"}}, {"id": "0f524797-e42f-4681-8053-b6235bfeb46d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.622339+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "1cb3ef26-aca2-4726-b65e-c1db59db74da", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/1cb3ef26-aca2-4726-b65e-c1db59db74da.png", "timestamp": "2024-02-15T20:52:12.864830+00:00"}}, {"id": "4a510b69-0983-4e69-9875-0b1f2916ee07", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.870830+00:00", "label": "null", "label_explanation": "The image shows a portion of an urban road, with a concrete barrier on one side and a curb on the other. The road is wet from recent rain, and there is a small amount of debris on the ground.", "snapshot": {"id": "1cb3ef26-aca2-4726-b65e-c1db59db74da", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/1cb3ef26-aca2-4726-b65e-c1db59db74da.png", "timestamp": "2024-02-15T20:52:12.864830+00:00"}}, {"id": "b3f97d0c-ce78-4dc5-a615-ee9a88997718", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.117283+00:00", "label": "true", "label_explanation": "The road is wet from recent rain.", "snapshot": {"id": "1cb3ef26-aca2-4726-b65e-c1db59db74da", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/1cb3ef26-aca2-4726-b65e-c1db59db74da.png", "timestamp": "2024-02-15T20:52:12.864830+00:00"}}, {"id": "5131acf5-b846-4e55-a9cd-44e09db2e6f2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.792757+00:00", "label": "easy", "label_explanation": "The red car is able to drive through the water without any difficulty, indicating that the traffic is not impeded.", "snapshot": {"id": "9fad6024-4ed3-4a75-b40e-b1c379b7c2a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/9fad6024-4ed3-4a75-b40e-b1c379b7c2a7.png", "timestamp": "2024-02-15T20:54:41.540413+00:00"}}, {"id": "fb87248e-2b1a-4714-9637-9f04e5c2bcd4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.179305+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, so it is free for traffic to pass.", "snapshot": {"id": "9fad6024-4ed3-4a75-b40e-b1c379b7c2a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/9fad6024-4ed3-4a75-b40e-b1c379b7c2a7.png", "timestamp": "2024-02-15T20:54:41.540413+00:00"}}, {"id": "0466ef96-c0eb-43f9-ac12-68e79016ab85", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.306349+00:00", "label": "low", "label_explanation": "The water level is low, as it is only flowing in the gutter and not covering the road surface.", "snapshot": {"id": "9fad6024-4ed3-4a75-b40e-b1c379b7c2a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/9fad6024-4ed3-4a75-b40e-b1c379b7c2a7.png", "timestamp": "2024-02-15T20:54:41.540413+00:00"}}, {"id": "68d13a66-d405-4cd3-83b0-fe19718cf70e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.454814+00:00", "label": "true", "label_explanation": "The road is wet and there is water flowing in the gutter, indicating that it has been raining.", "snapshot": {"id": "9fad6024-4ed3-4a75-b40e-b1c379b7c2a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/9fad6024-4ed3-4a75-b40e-b1c379b7c2a7.png", "timestamp": "2024-02-15T20:54:41.540413+00:00"}}, {"id": "9a55a8c9-5c3f-4269-9e66-804e29f7766f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.771970+00:00", "label": "null", "label_explanation": "The image shows a partially flooded urban road with a red car driving by. There is a low concrete wall on the left side of the road, and the road surface is wet.", "snapshot": {"id": "9fad6024-4ed3-4a75-b40e-b1c379b7c2a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/9fad6024-4ed3-4a75-b40e-b1c379b7c2a7.png", "timestamp": "2024-02-15T20:54:41.540413+00:00"}}, {"id": "87d1a023-ea2f-4db3-834c-b21920733eaf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.541123+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9fad6024-4ed3-4a75-b40e-b1c379b7c2a7", "camera_id": "001487", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001487/9fad6024-4ed3-4a75-b40e-b1c379b7c2a7.png", "timestamp": "2024-02-15T20:54:41.540413+00:00"}}]}, {"id": "000211", "name": "R. S\u00c3O CRIST\u00d3V\u00c3O X R. FRANCISCO EUG\u00caNIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.144/sub", "update_interval": 120, "latitude": -22.906993, "longitude": -43.217919, "objects": ["image_corrupted", "rain", "road_blockade", "water_level", "image_description", "traffic"], "identifications": [{"id": "51823ba0-56ce-4c20-9e01-f9e1a9cf971f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:15.007221+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "1830de09-024b-4d4a-bb67-9e2966e029e2", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1830de09-024b-4d4a-bb67-9e2966e029e2.png", "timestamp": "2024-02-15T20:29:58.220690+00:00"}}, {"id": "fdcd237d-af9c-4027-a79e-c55c9c8cd1bb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:14.719670+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or congestion.", "snapshot": {"id": "1830de09-024b-4d4a-bb67-9e2966e029e2", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1830de09-024b-4d4a-bb67-9e2966e029e2.png", "timestamp": "2024-02-15T20:29:58.220690+00:00"}}, {"id": "07eaae05-8c83-48f3-a92b-c2b8cbfb6c85", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:13.886230+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "1830de09-024b-4d4a-bb67-9e2966e029e2", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1830de09-024b-4d4a-bb67-9e2966e029e2.png", "timestamp": "2024-02-15T20:29:58.220690+00:00"}}, {"id": "27002d88-0a44-4fd1-8833-ad2619b55005", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:14.222512+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "1830de09-024b-4d4a-bb67-9e2966e029e2", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1830de09-024b-4d4a-bb67-9e2966e029e2.png", "timestamp": "2024-02-15T20:29:58.220690+00:00"}}, {"id": "2525de14-cec5-4ca4-ab4f-27065343f6a6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:13.325718+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including buses and cars. The road is wide and has multiple lanes. There are trees and buildings on either side of the road. There is a crosswalk near the intersection.", "snapshot": {"id": "1830de09-024b-4d4a-bb67-9e2966e029e2", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1830de09-024b-4d4a-bb67-9e2966e029e2.png", "timestamp": "2024-02-15T20:29:58.220690+00:00"}}, {"id": "e3734515-917e-4566-8692-e262b7c0a029", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:12.697871+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1830de09-024b-4d4a-bb67-9e2966e029e2", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1830de09-024b-4d4a-bb67-9e2966e029e2.png", "timestamp": "2024-02-15T20:29:58.220690+00:00"}}, {"id": "fff97bcc-60f6-4c06-926c-5bb97fef6e13", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:37.638447+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "669c8f72-db60-4f1a-b5d6-f35c838a7320", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/669c8f72-db60-4f1a-b5d6-f35c838a7320.png", "timestamp": "2024-02-15T20:32:25.109398+00:00"}}, {"id": "ba925401-26b5-417e-b453-d19e831be46f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:37.236333+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "669c8f72-db60-4f1a-b5d6-f35c838a7320", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/669c8f72-db60-4f1a-b5d6-f35c838a7320.png", "timestamp": "2024-02-15T20:32:25.109398+00:00"}}, {"id": "6987254c-4e5f-4391-ab70-aa2a1d472e85", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:36.742978+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "669c8f72-db60-4f1a-b5d6-f35c838a7320", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/669c8f72-db60-4f1a-b5d6-f35c838a7320.png", "timestamp": "2024-02-15T20:32:25.109398+00:00"}}, {"id": "1d2ac92d-ca24-4dc8-812e-dd4377456d3d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:36.290761+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "669c8f72-db60-4f1a-b5d6-f35c838a7320", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/669c8f72-db60-4f1a-b5d6-f35c838a7320.png", "timestamp": "2024-02-15T20:32:25.109398+00:00"}}, {"id": "dbc9b50a-417e-419f-8b34-18ee6f6095ec", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:35.701473+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with a possibility of rain.", "snapshot": {"id": "669c8f72-db60-4f1a-b5d6-f35c838a7320", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/669c8f72-db60-4f1a-b5d6-f35c838a7320.png", "timestamp": "2024-02-15T20:32:25.109398+00:00"}}, {"id": "788fb106-f018-4d6b-8cae-65b83d164a6b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:35.258941+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "669c8f72-db60-4f1a-b5d6-f35c838a7320", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/669c8f72-db60-4f1a-b5d6-f35c838a7320.png", "timestamp": "2024-02-15T20:32:25.109398+00:00"}}, {"id": "060b6940-b150-4b01-a89a-c618f1733e5b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:53.674793+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with cars moving slowly due to the wet conditions.", "snapshot": {"id": "b2e0276d-feab-40bf-b2ec-9b6249c10e5f", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/b2e0276d-feab-40bf-b2ec-9b6249c10e5f.png", "timestamp": "2024-02-15T20:49:41.003287+00:00"}}, {"id": "22877bbc-6739-40ee-9cf2-81c2493e1830", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:53.891739+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "b2e0276d-feab-40bf-b2ec-9b6249c10e5f", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/b2e0276d-feab-40bf-b2ec-9b6249c10e5f.png", "timestamp": "2024-02-15T20:49:41.003287+00:00"}}, {"id": "4463fb55-dba0-4328-8661-c559fbffe2e8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:53.155961+00:00", "label": "low", "label_explanation": "There is no significant water on the road surface. The road is wet from recent rain, but there are no puddles or standing water.", "snapshot": {"id": "b2e0276d-feab-40bf-b2ec-9b6249c10e5f", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/b2e0276d-feab-40bf-b2ec-9b6249c10e5f.png", "timestamp": "2024-02-15T20:49:41.003287+00:00"}}, {"id": "eb6084b4-b607-4f2d-9ad2-4e8887586506", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.887453+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "b2e0276d-feab-40bf-b2ec-9b6249c10e5f", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/b2e0276d-feab-40bf-b2ec-9b6249c10e5f.png", "timestamp": "2024-02-15T20:49:41.003287+00:00"}}, {"id": "c7b3420e-0b3d-4788-b085-9640e12c64e7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.412398+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are several cars on the road, all of which are moving slowly due to the wet conditions. The road is lined with trees and buildings, and there are a few pedestrians walking on the sidewalks.", "snapshot": {"id": "b2e0276d-feab-40bf-b2ec-9b6249c10e5f", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/b2e0276d-feab-40bf-b2ec-9b6249c10e5f.png", "timestamp": "2024-02-15T20:49:41.003287+00:00"}}, {"id": "6c80ed73-64a8-400c-aa26-b6f4746ef003", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:52.028440+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b2e0276d-feab-40bf-b2ec-9b6249c10e5f", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/b2e0276d-feab-40bf-b2ec-9b6249c10e5f.png", "timestamp": "2024-02-15T20:49:41.003287+00:00"}}, {"id": "c1c22022-7412-4420-85cc-a28a25f718e9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:29.241111+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly on the road.", "snapshot": {"id": "78e3228f-7d25-48ef-b6ca-60e131f8a02c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/78e3228f-7d25-48ef-b6ca-60e131f8a02c.png", "timestamp": "2024-02-15T20:47:17.192175+00:00"}}, {"id": "51d9a9c2-e39c-49fc-b901-db88f76d3a3a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:28.601804+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "78e3228f-7d25-48ef-b6ca-60e131f8a02c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/78e3228f-7d25-48ef-b6ca-60e131f8a02c.png", "timestamp": "2024-02-15T20:47:17.192175+00:00"}}, {"id": "a6884332-0427-421c-85c1-d998faeb4eb0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:27.933980+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "78e3228f-7d25-48ef-b6ca-60e131f8a02c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/78e3228f-7d25-48ef-b6ca-60e131f8a02c.png", "timestamp": "2024-02-15T20:47:17.192175+00:00"}}, {"id": "d6fc86c8-b7b7-47fb-9668-ede5ae640a64", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:29.657349+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. Traffic is flowing freely.", "snapshot": {"id": "78e3228f-7d25-48ef-b6ca-60e131f8a02c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/78e3228f-7d25-48ef-b6ca-60e131f8a02c.png", "timestamp": "2024-02-15T20:47:17.192175+00:00"}}, {"id": "4bc1cb23-525d-4184-81b0-6945dfb05ae3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:28.850613+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "78e3228f-7d25-48ef-b6ca-60e131f8a02c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/78e3228f-7d25-48ef-b6ca-60e131f8a02c.png", "timestamp": "2024-02-15T20:47:17.192175+00:00"}}, {"id": "dbaf69de-8e90-48da-83f0-bdad4f4b636b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:28.366851+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "78e3228f-7d25-48ef-b6ca-60e131f8a02c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/78e3228f-7d25-48ef-b6ca-60e131f8a02c.png", "timestamp": "2024-02-15T20:47:17.192175+00:00"}}, {"id": "748dcf8b-5f3c-4cd7-ac24-836ccfa9cb49", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:43.061815+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "54a4a735-ecc9-4ff9-82e0-8a9a1240d45d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/54a4a735-ecc9-4ff9-82e0-8a9a1240d45d.png", "timestamp": "2024-02-15T20:37:29.110444+00:00"}}, {"id": "e37d6d4a-3586-4276-bf8a-869d8f7d4873", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:42.131413+00:00", "label": "low", "label_explanation": "There is no significant water on the road surface. The road is wet from recent rain, but there are no puddles or standing water.", "snapshot": {"id": "54a4a735-ecc9-4ff9-82e0-8a9a1240d45d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/54a4a735-ecc9-4ff9-82e0-8a9a1240d45d.png", "timestamp": "2024-02-15T20:37:29.110444+00:00"}}, {"id": "908d166b-5024-4b02-8bcd-dc35a7f337da", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:40.303825+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "54a4a735-ecc9-4ff9-82e0-8a9a1240d45d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/54a4a735-ecc9-4ff9-82e0-8a9a1240d45d.png", "timestamp": "2024-02-15T20:37:29.110444+00:00"}}, {"id": "79bde1d1-46a8-4cea-a2da-2a0762408bcf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:42.741693+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with several cars and trucks visible on the road. All vehicles are moving slowly due to the wet conditions.", "snapshot": {"id": "54a4a735-ecc9-4ff9-82e0-8a9a1240d45d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/54a4a735-ecc9-4ff9-82e0-8a9a1240d45d.png", "timestamp": "2024-02-15T20:37:29.110444+00:00"}}, {"id": "2e6b6d22-57dc-469c-927b-a0c488fa7ea2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:39.913776+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy and overcast. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are several cars and trucks visible on the road, all of which are moving slowly due to the wet conditions. The road is lined with trees and buildings, and there are a few pedestrians visible on the sidewalks.", "snapshot": {"id": "54a4a735-ecc9-4ff9-82e0-8a9a1240d45d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/54a4a735-ecc9-4ff9-82e0-8a9a1240d45d.png", "timestamp": "2024-02-15T20:37:29.110444+00:00"}}, {"id": "1cd109af-1295-446f-a59c-49df1582f2ba", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:39.609000+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "54a4a735-ecc9-4ff9-82e0-8a9a1240d45d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/54a4a735-ecc9-4ff9-82e0-8a9a1240d45d.png", "timestamp": "2024-02-15T20:37:29.110444+00:00"}}, {"id": "cd00fb43-b6f7-4817-9234-0ebf72f056a2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.132288+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "5a5d13d7-63a2-42fd-a075-5ac95487ad26", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/5a5d13d7-63a2-42fd-a075-5ac95487ad26.png", "timestamp": "2024-02-15T20:35:03.385924+00:00"}}, {"id": "60466d1b-edf6-484f-8766-d7275b661aae", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:18.139886+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "5a5d13d7-63a2-42fd-a075-5ac95487ad26", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/5a5d13d7-63a2-42fd-a075-5ac95487ad26.png", "timestamp": "2024-02-15T20:35:03.385924+00:00"}}, {"id": "59cd81fa-02bc-4edf-bef5-9beccf4ad661", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:17.703970+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "5a5d13d7-63a2-42fd-a075-5ac95487ad26", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/5a5d13d7-63a2-42fd-a075-5ac95487ad26.png", "timestamp": "2024-02-15T20:35:03.385924+00:00"}}, {"id": "b5cfc4a4-93f8-41c3-8e0f-fd3794e0aff7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.686383+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "5a5d13d7-63a2-42fd-a075-5ac95487ad26", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/5a5d13d7-63a2-42fd-a075-5ac95487ad26.png", "timestamp": "2024-02-15T20:35:03.385924+00:00"}}, {"id": "21782e32-7ed2-4faf-87de-19ad176c7668", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:16.129647+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "5a5d13d7-63a2-42fd-a075-5ac95487ad26", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/5a5d13d7-63a2-42fd-a075-5ac95487ad26.png", "timestamp": "2024-02-15T20:35:03.385924+00:00"}}, {"id": "ca343d31-d4ae-4808-a812-91cdce96f8ee", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:15.784840+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5a5d13d7-63a2-42fd-a075-5ac95487ad26", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/5a5d13d7-63a2-42fd-a075-5ac95487ad26.png", "timestamp": "2024-02-15T20:35:03.385924+00:00"}}, {"id": "bd224b0e-fe43-48db-98a8-156a22b848c7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:16.471089+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "f29c8ea5-af01-49e1-887d-65a0ac909c70", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/f29c8ea5-af01-49e1-887d-65a0ac909c70.png", "timestamp": "2024-02-15T20:40:01.291726+00:00"}}, {"id": "65c97f90-6853-44bd-bf6d-00a83d2ef2b5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:14.458167+00:00", "label": "null", "label_explanation": "The image shows an urban road with cars, buildings, and trees.", "snapshot": {"id": "f29c8ea5-af01-49e1-887d-65a0ac909c70", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/f29c8ea5-af01-49e1-887d-65a0ac909c70.png", "timestamp": "2024-02-15T20:40:01.291726+00:00"}}, {"id": "6264cfc6-aa46-47a2-957d-71e85c6f0892", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:15.931847+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major obstructions.", "snapshot": {"id": "f29c8ea5-af01-49e1-887d-65a0ac909c70", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/f29c8ea5-af01-49e1-887d-65a0ac909c70.png", "timestamp": "2024-02-15T20:40:01.291726+00:00"}}, {"id": "6460edaa-d88d-4c6f-8626-bb8916921090", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:14.992308+00:00", "label": "true", "label_explanation": "The road is wet, and there are small puddles of water on the road.", "snapshot": {"id": "f29c8ea5-af01-49e1-887d-65a0ac909c70", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/f29c8ea5-af01-49e1-887d-65a0ac909c70.png", "timestamp": "2024-02-15T20:40:01.291726+00:00"}}, {"id": "48b8b50a-3ded-4132-81e0-c1d977d5030b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:13.591261+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "f29c8ea5-af01-49e1-887d-65a0ac909c70", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/f29c8ea5-af01-49e1-887d-65a0ac909c70.png", "timestamp": "2024-02-15T20:40:01.291726+00:00"}}, {"id": "15cf8f68-204b-42fa-a574-c8460d653a8e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:15.397808+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles on the road.", "snapshot": {"id": "f29c8ea5-af01-49e1-887d-65a0ac909c70", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/f29c8ea5-af01-49e1-887d-65a0ac909c70.png", "timestamp": "2024-02-15T20:40:01.291726+00:00"}}, {"id": "2b34c4d1-5ccf-46d1-b4d3-56c8bfc6504d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:41.936767+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "ce37e824-cf5d-484b-b627-ca20385e8d6c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ce37e824-cf5d-484b-b627-ca20385e8d6c.png", "timestamp": "2024-02-15T20:42:31.048741+00:00"}}, {"id": "f904fe9c-4cb0-49d8-bb69-6d776a82234f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:41.138850+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "ce37e824-cf5d-484b-b627-ca20385e8d6c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ce37e824-cf5d-484b-b627-ca20385e8d6c.png", "timestamp": "2024-02-15T20:42:31.048741+00:00"}}, {"id": "88851ad0-ef1b-4c61-a33a-3fac7318d947", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:42.122670+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a steady flow of vehicles.", "snapshot": {"id": "ce37e824-cf5d-484b-b627-ca20385e8d6c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ce37e824-cf5d-484b-b627-ca20385e8d6c.png", "timestamp": "2024-02-15T20:42:31.048741+00:00"}}, {"id": "136e2381-0266-45f7-a2b6-eade136de021", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:41.619533+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "ce37e824-cf5d-484b-b627-ca20385e8d6c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ce37e824-cf5d-484b-b627-ca20385e8d6c.png", "timestamp": "2024-02-15T20:42:31.048741+00:00"}}, {"id": "8a4c2405-9623-480f-9a1a-58052cf1842f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:40.895307+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ce37e824-cf5d-484b-b627-ca20385e8d6c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ce37e824-cf5d-484b-b627-ca20385e8d6c.png", "timestamp": "2024-02-15T20:42:31.048741+00:00"}}, {"id": "93f357aa-fc1b-47be-87e9-379e61d81557", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:42.337893+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. Traffic is flowing smoothly.", "snapshot": {"id": "ce37e824-cf5d-484b-b627-ca20385e8d6c", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ce37e824-cf5d-484b-b627-ca20385e8d6c.png", "timestamp": "2024-02-15T20:42:31.048741+00:00"}}, {"id": "1cf3db4d-6b11-4b5b-8ed5-176b486f777f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:05.966713+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with several cars and a few pedestrians visible in the image.", "snapshot": {"id": "ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d.png", "timestamp": "2024-02-15T20:44:54.306583+00:00"}}, {"id": "f76b3f5d-64ce-4bbb-8e0d-4e3a789bf000", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:06.237602+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d.png", "timestamp": "2024-02-15T20:44:54.306583+00:00"}}, {"id": "e5178f32-eb6b-40c0-993b-35959d7d0a43", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:05.606543+00:00", "label": "low", "label_explanation": "The water level is low, with no significant accumulation on the road surface.", "snapshot": {"id": "ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d.png", "timestamp": "2024-02-15T20:44:54.306583+00:00"}}, {"id": "71033853-a3df-4790-a3d0-0baef636f801", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:05.355577+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d.png", "timestamp": "2024-02-15T20:44:54.306583+00:00"}}, {"id": "092fcb53-d2cf-4820-a685-8867dd94f5f0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:05.023235+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with a mix of sun and shade. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are several cars and a few pedestrians visible in the image.", "snapshot": {"id": "ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d.png", "timestamp": "2024-02-15T20:44:54.306583+00:00"}}, {"id": "1905540f-1dbd-4e68-be93-cbf92b31b1bc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:04.700081+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/ec9dbc52-d284-4e9c-9ca3-3f6c783ac78d.png", "timestamp": "2024-02-15T20:44:54.306583+00:00"}}, {"id": "064b4202-f847-4023-a431-e1f93fd5ceac", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:17.694537+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free passage of vehicles.", "snapshot": {"id": "03bb66f4-dcd4-48ba-a596-0ceedac0d77b", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/03bb66f4-dcd4-48ba-a596-0ceedac0d77b.png", "timestamp": "2024-02-15T20:52:05.953103+00:00"}}, {"id": "cb1df8ae-0497-4079-b60e-4d31d2eb610f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:16.995543+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not impede traffic.", "snapshot": {"id": "03bb66f4-dcd4-48ba-a596-0ceedac0d77b", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/03bb66f4-dcd4-48ba-a596-0ceedac0d77b.png", "timestamp": "2024-02-15T20:52:05.953103+00:00"}}, {"id": "ca73af80-e391-49c9-be2a-608459d44a90", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:16.721745+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "03bb66f4-dcd4-48ba-a596-0ceedac0d77b", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/03bb66f4-dcd4-48ba-a596-0ceedac0d77b.png", "timestamp": "2024-02-15T20:52:05.953103+00:00"}}, {"id": "45f1ff5f-150e-4769-b736-4c8c09c905f5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:16.431820+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with buildings, cars, and vegetation.", "snapshot": {"id": "03bb66f4-dcd4-48ba-a596-0ceedac0d77b", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/03bb66f4-dcd4-48ba-a596-0ceedac0d77b.png", "timestamp": "2024-02-15T20:52:05.953103+00:00"}}, {"id": "3ac30e4e-45d2-4d19-826d-3a9d998f2cdc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:16.107095+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "03bb66f4-dcd4-48ba-a596-0ceedac0d77b", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/03bb66f4-dcd4-48ba-a596-0ceedac0d77b.png", "timestamp": "2024-02-15T20:52:05.953103+00:00"}}, {"id": "7b3406a0-1af9-4b37-a424-2897b9329fdb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:17.311777+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions.", "snapshot": {"id": "03bb66f4-dcd4-48ba-a596-0ceedac0d77b", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/03bb66f4-dcd4-48ba-a596-0ceedac0d77b.png", "timestamp": "2024-02-15T20:52:05.953103+00:00"}}, {"id": "ac586bf4-f90d-40ed-98ab-ecab08a58724", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:39.591784+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with buildings, cars, and vegetation.", "snapshot": {"id": "1940d004-9c6d-41a2-a4ed-7d30defe45dc", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1940d004-9c6d-41a2-a4ed-7d30defe45dc.png", "timestamp": "2024-02-15T20:54:29.525919+00:00"}}, {"id": "10d6f5bf-5a8c-4990-b175-e922bfbd2a12", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.462596+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "1940d004-9c6d-41a2-a4ed-7d30defe45dc", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1940d004-9c6d-41a2-a4ed-7d30defe45dc.png", "timestamp": "2024-02-15T20:54:29.525919+00:00"}}, {"id": "8b5b665c-ad2f-4ccf-a795-e6602bf3aa8a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.205449+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not impede traffic flow.", "snapshot": {"id": "1940d004-9c6d-41a2-a4ed-7d30defe45dc", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1940d004-9c6d-41a2-a4ed-7d30defe45dc.png", "timestamp": "2024-02-15T20:54:29.525919+00:00"}}, {"id": "5f9abbc0-214e-4e0a-b0f6-96f6a9b5ce4e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:39.211659+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1940d004-9c6d-41a2-a4ed-7d30defe45dc", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1940d004-9c6d-41a2-a4ed-7d30defe45dc.png", "timestamp": "2024-02-15T20:54:29.525919+00:00"}}, {"id": "ecfd07f8-0eec-4986-a4b8-dac637cc4c53", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:40.836709+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "1940d004-9c6d-41a2-a4ed-7d30defe45dc", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1940d004-9c6d-41a2-a4ed-7d30defe45dc.png", "timestamp": "2024-02-15T20:54:29.525919+00:00"}}, {"id": "70a73e11-2c04-4188-876e-6c7e427ce74c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:39.944952+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "1940d004-9c6d-41a2-a4ed-7d30defe45dc", "camera_id": "000211", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000211/1940d004-9c6d-41a2-a4ed-7d30defe45dc.png", "timestamp": "2024-02-15T20:54:29.525919+00:00"}}]}, {"id": "000432", "name": "LINHA VERMELHA X HOSPITAL UNIVERSIT\u00c1RIO (UFRJ)", "rtsp_url": "rtsp://admin:admin@10.52.211.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842696, "longitude": -43.238659, "objects": ["image_description", "water_level", "traffic", "image_corrupted", "road_blockade", "rain"], "identifications": []}, {"id": "001388", "name": "AV. ARMANDO LOMBARDI, 205 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00737084, "longitude": -43.30676043, "objects": ["rain", "image_corrupted", "water_level", "road_blockade", "image_description", "traffic"], "identifications": [{"id": "28f52cc3-bdbc-4dbb-b1dd-0d5df15640f2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.907384+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "f1ddd98e-5294-4a94-8e82-651a52190130", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/f1ddd98e-5294-4a94-8e82-651a52190130.png", "timestamp": "2024-02-15T20:30:05.630756+00:00"}}, {"id": "acdc2f07-0f29-4727-8302-1f039cf878cf", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:20.554536+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "f1ddd98e-5294-4a94-8e82-651a52190130", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/f1ddd98e-5294-4a94-8e82-651a52190130.png", "timestamp": "2024-02-15T20:30:05.630756+00:00"}}, {"id": "fb03f51d-2460-466f-8b30-d2478761363e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:19.883670+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f1ddd98e-5294-4a94-8e82-651a52190130", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/f1ddd98e-5294-4a94-8e82-651a52190130.png", "timestamp": "2024-02-15T20:30:05.630756+00:00"}}, {"id": "7fb511fc-f536-45b0-b0b8-46b64b4b1fb9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.174407+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "f1ddd98e-5294-4a94-8e82-651a52190130", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/f1ddd98e-5294-4a94-8e82-651a52190130.png", "timestamp": "2024-02-15T20:30:05.630756+00:00"}}, {"id": "bb9e347e-9beb-45bd-8d64-ad1856c540fb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.604005+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "f1ddd98e-5294-4a94-8e82-651a52190130", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/f1ddd98e-5294-4a94-8e82-651a52190130.png", "timestamp": "2024-02-15T20:30:05.630756+00:00"}}, {"id": "ff023363-cdfc-403f-a6fd-67b2c733577d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:20.227715+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a six-lane road with a concrete median strip. There are trees on either side of the road, and buildings and other structures in the background. The weather is overcast, and the road is wet from recent rain.", "snapshot": {"id": "f1ddd98e-5294-4a94-8e82-651a52190130", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/f1ddd98e-5294-4a94-8e82-651a52190130.png", "timestamp": "2024-02-15T20:30:05.630756+00:00"}}, {"id": "151da178-d8d1-4f8d-b9c6-e4e3c9f20427", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.119954+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "7b8ca731-e8e2-4f2b-9a02-532526bf2339", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/7b8ca731-e8e2-4f2b-9a02-532526bf2339.png", "timestamp": "2024-02-15T20:32:32.901989+00:00"}}, {"id": "9a90982b-3de2-425e-92bf-5ade5785c5e7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:47.195901+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but it is not flooded.", "snapshot": {"id": "7b8ca731-e8e2-4f2b-9a02-532526bf2339", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/7b8ca731-e8e2-4f2b-9a02-532526bf2339.png", "timestamp": "2024-02-15T20:32:32.901989+00:00"}}, {"id": "18e0b2a4-3578-433a-9a35-cd327c3ab485", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.516836+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a concrete median strip. There are trees on either side of the road, and buildings and other structures in the background. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "7b8ca731-e8e2-4f2b-9a02-532526bf2339", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/7b8ca731-e8e2-4f2b-9a02-532526bf2339.png", "timestamp": "2024-02-15T20:32:32.901989+00:00"}}, {"id": "5cb661c9-b5e8-4ec0-93ac-78907a6a5888", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:44.634864+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7b8ca731-e8e2-4f2b-9a02-532526bf2339", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/7b8ca731-e8e2-4f2b-9a02-532526bf2339.png", "timestamp": "2024-02-15T20:32:32.901989+00:00"}}, {"id": "060dcc14-e36d-4569-9a97-9452f5dcc153", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.662987+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "7b8ca731-e8e2-4f2b-9a02-532526bf2339", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/7b8ca731-e8e2-4f2b-9a02-532526bf2339.png", "timestamp": "2024-02-15T20:32:32.901989+00:00"}}, {"id": "24a470b5-5436-448e-8d7c-bfc45528265a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:46.362760+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "7b8ca731-e8e2-4f2b-9a02-532526bf2339", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/7b8ca731-e8e2-4f2b-9a02-532526bf2339.png", "timestamp": "2024-02-15T20:32:32.901989+00:00"}}, {"id": "e3d6060d-08c6-4f16-a64b-f2f459356704", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.343474+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are cars on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "209a414d-3a58-4772-9fe7-8310cfa737bf", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/209a414d-3a58-4772-9fe7-8310cfa737bf.png", "timestamp": "2024-02-15T20:35:07.984524+00:00"}}, {"id": "af1fee71-6638-4594-b6d7-359ec1ed2e0d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.050666+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable.", "snapshot": {"id": "209a414d-3a58-4772-9fe7-8310cfa737bf", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/209a414d-3a58-4772-9fe7-8310cfa737bf.png", "timestamp": "2024-02-15T20:35:07.984524+00:00"}}, {"id": "0ec8fa3d-192b-4240-b33d-87dd970b059d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.609705+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no significant puddles or\u79ef\u6c34.", "snapshot": {"id": "209a414d-3a58-4772-9fe7-8310cfa737bf", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/209a414d-3a58-4772-9fe7-8310cfa737bf.png", "timestamp": "2024-02-15T20:35:07.984524+00:00"}}, {"id": "0d4f135a-7b97-4ce0-9212-28604740f205", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.477742+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a concrete median. There are cars on the road, and the weather appears to be cloudy and wet.", "snapshot": {"id": "209a414d-3a58-4772-9fe7-8310cfa737bf", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/209a414d-3a58-4772-9fe7-8310cfa737bf.png", "timestamp": "2024-02-15T20:35:07.984524+00:00"}}, {"id": "e73571d3-078e-4a1f-9498-579cb89880de", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.067944+00:00", "label": "true", "label_explanation": "The road surface is wet, and there is water on the median. There are also raindrops visible on the windshield of the car.", "snapshot": {"id": "209a414d-3a58-4772-9fe7-8310cfa737bf", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/209a414d-3a58-4772-9fe7-8310cfa737bf.png", "timestamp": "2024-02-15T20:35:07.984524+00:00"}}, {"id": "ff98de43-36c5-4412-8eb9-99ddb854c69b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:20.163705+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "209a414d-3a58-4772-9fe7-8310cfa737bf", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/209a414d-3a58-4772-9fe7-8310cfa737bf.png", "timestamp": "2024-02-15T20:35:07.984524+00:00"}}, {"id": "9e90ac07-05a3-456a-8ec9-518a8e2bec0b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.690995+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are several puddles on the road.", "snapshot": {"id": "89552ba3-257a-4668-a50d-3014ed2610bb", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/89552ba3-257a-4668-a50d-3014ed2610bb.png", "timestamp": "2024-02-15T20:37:37.946530+00:00"}}, {"id": "7f7836bf-4398-4c82-b837-61b27c1063b0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.256155+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are several puddles on the road, but they are shallow and do not pose a hazard to traffic.", "snapshot": {"id": "89552ba3-257a-4668-a50d-3014ed2610bb", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/89552ba3-257a-4668-a50d-3014ed2610bb.png", "timestamp": "2024-02-15T20:37:37.946530+00:00"}}, {"id": "ebb12c18-0688-41de-a2b6-b98c8e870d1f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.095061+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a concrete median. The road is wet from recent rain, and there are several cars on the road. The cars are driving in both directions, and there is no congestion. The road is lined with trees, and there are buildings and other structures in the background.", "snapshot": {"id": "89552ba3-257a-4668-a50d-3014ed2610bb", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/89552ba3-257a-4668-a50d-3014ed2610bb.png", "timestamp": "2024-02-15T20:37:37.946530+00:00"}}, {"id": "568dc63f-fc6a-4646-a9aa-7ecdc10b0bd9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:52.497321+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "89552ba3-257a-4668-a50d-3014ed2610bb", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/89552ba3-257a-4668-a50d-3014ed2610bb.png", "timestamp": "2024-02-15T20:37:37.946530+00:00"}}, {"id": "85582b3e-8b3d-4cc6-afa1-7f4e6960caf7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.238883+00:00", "label": "free", "label_explanation": "There are no road blockades or other obstructions on the road. The road is clear and passable in both directions.", "snapshot": {"id": "89552ba3-257a-4668-a50d-3014ed2610bb", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/89552ba3-257a-4668-a50d-3014ed2610bb.png", "timestamp": "2024-02-15T20:37:37.946530+00:00"}}, {"id": "30456355-ca9d-4d3e-af56-299918d6b8e5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.815618+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, and there is no congestion. The cars are driving in both directions, and there are no accidents or other hazards.", "snapshot": {"id": "89552ba3-257a-4668-a50d-3014ed2610bb", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/89552ba3-257a-4668-a50d-3014ed2610bb.png", "timestamp": "2024-02-15T20:37:37.946530+00:00"}}, {"id": "ce1427ed-c7e2-4221-a12f-f7a71be2e228", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:18.524129+00:00", "label": "null", "label_explanation": "Due to the image corruption, no description can be provided.", "snapshot": {"id": "3c98cfc9-53bf-4f7b-bd93-340f13091de9", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/3c98cfc9-53bf-4f7b-bd93-340f13091de9.png", "timestamp": "2024-02-15T20:40:06.101354+00:00"}}, {"id": "ac4f7506-e89a-41cb-9b46-db1c73fee241", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:17.723078+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color replacing the visual data. This prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "3c98cfc9-53bf-4f7b-bd93-340f13091de9", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/3c98cfc9-53bf-4f7b-bd93-340f13091de9.png", "timestamp": "2024-02-15T20:40:06.101354+00:00"}}, {"id": "ce19ca3b-7eab-4ecd-b5c3-885b8c901d59", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:08.368144+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "497d329c-446e-4048-b694-06ca2a45210d", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/497d329c-446e-4048-b694-06ca2a45210d.png", "timestamp": "2024-02-15T20:44:58.050678+00:00"}}, {"id": "691322c0-a5a9-4686-a011-b821f7cbf71a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:07.978141+00:00", "label": "true", "label_explanation": "The image is corrupted and has a uniform grey color, making it impossible to analyze.", "snapshot": {"id": "497d329c-446e-4048-b694-06ca2a45210d", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/497d329c-446e-4048-b694-06ca2a45210d.png", "timestamp": "2024-02-15T20:44:58.050678+00:00"}}, {"id": "6f7ef606-8b63-4b7a-9fae-39c7fb1adb71", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.095195+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a concrete barrier separating the directions. The road is wet from recent rain, and there are several cars on the road, all moving in the same direction. The cars are driving in the rightmost two lanes, as the leftmost two lanes are coned off. There are trees and buildings in the background.", "snapshot": {"id": "e749a68a-b7ad-4730-8487-6da042c9f79d", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/e749a68a-b7ad-4730-8487-6da042c9f79d.png", "timestamp": "2024-02-15T20:47:24.264196+00:00"}}, {"id": "7b0ccdd4-3458-44ae-b726-f3a85d335d4d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:44.849167+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e749a68a-b7ad-4730-8487-6da042c9f79d", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/e749a68a-b7ad-4730-8487-6da042c9f79d.png", "timestamp": "2024-02-15T20:47:24.264196+00:00"}}, {"id": "f3f7d2f5-df88-4a22-8087-4d919ba1cb2c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.853520+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with several cars on the road. The cars are driving in the rightmost two lanes, as the leftmost two lanes are coned off.", "snapshot": {"id": "e749a68a-b7ad-4730-8487-6da042c9f79d", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/e749a68a-b7ad-4730-8487-6da042c9f79d.png", "timestamp": "2024-02-15T20:47:24.264196+00:00"}}, {"id": "3e29ce45-5b24-400f-9d3e-4e308067d612", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.309392+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are several puddles on the road.", "snapshot": {"id": "e749a68a-b7ad-4730-8487-6da042c9f79d", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/e749a68a-b7ad-4730-8487-6da042c9f79d.png", "timestamp": "2024-02-15T20:47:24.264196+00:00"}}, {"id": "8d13e1c9-24a2-427c-8f80-e223a6e48b65", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:46.124898+00:00", "label": "partially", "label_explanation": "The leftmost two lanes are coned off, but the rightmost two lanes are open to traffic.", "snapshot": {"id": "e749a68a-b7ad-4730-8487-6da042c9f79d", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/e749a68a-b7ad-4730-8487-6da042c9f79d.png", "timestamp": "2024-02-15T20:47:24.264196+00:00"}}, {"id": "7795bb3a-7e9e-4021-a7ef-bd518fed8157", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.603695+00:00", "label": "low", "label_explanation": "There are several puddles on the road, but the water level is low and does not pose a significant risk to traffic.", "snapshot": {"id": "e749a68a-b7ad-4730-8487-6da042c9f79d", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/e749a68a-b7ad-4730-8487-6da042c9f79d.png", "timestamp": "2024-02-15T20:47:24.264196+00:00"}}, {"id": "2b3fdeb7-67af-46b1-a32f-87cf1df8f271", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.319857+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "a6bf1353-be08-4e77-9a56-b4843e50f5b9", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a6bf1353-be08-4e77-9a56-b4843e50f5b9.png", "timestamp": "2024-02-15T20:42:37.660056+00:00"}}, {"id": "d9385c53-d1e2-4bb9-98fe-4aef0f9542e0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.963817+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a concrete median. There are cars, trucks, and buses on the road, and the traffic is moderate. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "a6bf1353-be08-4e77-9a56-b4843e50f5b9", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a6bf1353-be08-4e77-9a56-b4843e50f5b9.png", "timestamp": "2024-02-15T20:42:37.660056+00:00"}}, {"id": "773ce045-dd29-4960-9ce3-371048082247", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.102437+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "a6bf1353-be08-4e77-9a56-b4843e50f5b9", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a6bf1353-be08-4e77-9a56-b4843e50f5b9.png", "timestamp": "2024-02-15T20:42:37.660056+00:00"}}, {"id": "26bf1227-40a7-4de6-8ef3-67fbb479f67c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.724800+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars, trucks, and buses moving at a steady pace.", "snapshot": {"id": "a6bf1353-be08-4e77-9a56-b4843e50f5b9", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a6bf1353-be08-4e77-9a56-b4843e50f5b9.png", "timestamp": "2024-02-15T20:42:37.660056+00:00"}}, {"id": "3eaf37bd-8ce7-40f1-a584-f7a738f971ea", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.514933+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "a6bf1353-be08-4e77-9a56-b4843e50f5b9", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a6bf1353-be08-4e77-9a56-b4843e50f5b9.png", "timestamp": "2024-02-15T20:42:37.660056+00:00"}}, {"id": "8186849e-9291-48fa-be8c-8adbaedf06bf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.819640+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a6bf1353-be08-4e77-9a56-b4843e50f5b9", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a6bf1353-be08-4e77-9a56-b4843e50f5b9.png", "timestamp": "2024-02-15T20:42:37.660056+00:00"}}, {"id": "3446d0bf-464f-4134-874d-dc0b1f9fa119", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.146135+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2.png", "timestamp": "2024-02-15T20:49:47.821543+00:00"}}, {"id": "7fb6743d-4138-4a5c-9a37-b6a2ea7fc615", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:57.766222+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2.png", "timestamp": "2024-02-15T20:49:47.821543+00:00"}}, {"id": "33371e15-184a-4682-a007-b713ae830a1a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:57.328378+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2.png", "timestamp": "2024-02-15T20:49:47.821543+00:00"}}, {"id": "773e163d-8948-4211-aaa1-4cd736642a52", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.880901+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2.png", "timestamp": "2024-02-15T20:49:47.821543+00:00"}}, {"id": "dc692706-f864-4546-9edf-a1124fd07e1d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.470211+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2.png", "timestamp": "2024-02-15T20:49:47.821543+00:00"}}, {"id": "784e5b76-ebf6-49ea-932c-f79371d23fac", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:58.683337+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/cad8059d-b6ff-4e9d-b9ac-b1cc8eb608c2.png", "timestamp": "2024-02-15T20:49:47.821543+00:00"}}, {"id": "941e40ad-44f5-4cda-98f1-86384310ff7a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:18.603222+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color replacing the visual data. This indicates a high probability of data loss or image corruption.", "snapshot": {"id": "6343a517-9680-4cb6-9579-58cf7d9e1fb6", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/6343a517-9680-4cb6-9579-58cf7d9e1fb6.png", "timestamp": "2024-02-15T20:52:09.344318+00:00"}}, {"id": "e12a9c79-3e82-4429-8783-82a93f61349e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:18.930358+00:00", "label": "null", "label_explanation": "The image is corrupted and does not provide any useful information.", "snapshot": {"id": "6343a517-9680-4cb6-9579-58cf7d9e1fb6", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/6343a517-9680-4cb6-9579-58cf7d9e1fb6.png", "timestamp": "2024-02-15T20:52:09.344318+00:00"}}, {"id": "6a87a555-bfcc-423d-8820-99be447af486", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:50.469072+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no visible obstructions or incidents causing congestion.", "snapshot": {"id": "a9582e06-4508-4f22-bcd6-001e5c249053", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a9582e06-4508-4f22-bcd6-001e5c249053.png", "timestamp": "2024-02-15T20:54:39.067582+00:00"}}, {"id": "3c594fce-4481-4ae7-b7a2-d941b80d3440", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:49.658216+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a six-lane road with a concrete barrier separating the directions. The road is moderately busy, with several cars visible. The weather appears to be overcast, with dark clouds covering the sky. There are no visible signs of rain or other adverse weather conditions.", "snapshot": {"id": "a9582e06-4508-4f22-bcd6-001e5c249053", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a9582e06-4508-4f22-bcd6-001e5c249053.png", "timestamp": "2024-02-15T20:54:39.067582+00:00"}}, {"id": "52d90ab6-56a0-46b9-b03a-7d0cb852a1c6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:49.314449+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a9582e06-4508-4f22-bcd6-001e5c249053", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a9582e06-4508-4f22-bcd6-001e5c249053.png", "timestamp": "2024-02-15T20:54:39.067582+00:00"}}, {"id": "6b5ac4f8-0f72-4f88-b5e4-8effbcd646cf", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:50.144973+00:00", "label": "low", "label_explanation": "There is no standing water observed on the road surface.", "snapshot": {"id": "a9582e06-4508-4f22-bcd6-001e5c249053", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a9582e06-4508-4f22-bcd6-001e5c249053.png", "timestamp": "2024-02-15T20:54:39.067582+00:00"}}, {"id": "fe0866a9-12e1-489f-ab36-e85969bc6a73", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:49.935756+00:00", "label": "false", "label_explanation": "While the road surface is wet, there is no active rain observed in the image.", "snapshot": {"id": "a9582e06-4508-4f22-bcd6-001e5c249053", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a9582e06-4508-4f22-bcd6-001e5c249053.png", "timestamp": "2024-02-15T20:54:39.067582+00:00"}}, {"id": "d6b59837-6a72-4bb8-9667-a0b0a176ec92", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:50.719541+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades.", "snapshot": {"id": "a9582e06-4508-4f22-bcd6-001e5c249053", "camera_id": "001388", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001388/a9582e06-4508-4f22-bcd6-001e5c249053.png", "timestamp": "2024-02-15T20:54:39.067582+00:00"}}]}, {"id": "001476", "name": "R. JARDIM BOT\u00c2NICO X R. PACHECO LE\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.173/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9668, "longitude": -43.219492, "objects": ["image_corrupted", "water_level", "image_description", "traffic", "rain", "road_blockade"], "identifications": [{"id": "b3dad471-9774-4ecb-baaa-80ab6d497228", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:52.417202+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles and pedestrians.", "snapshot": {"id": "863a0e1f-f8cf-4827-8c03-8bf9526568bb", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/863a0e1f-f8cf-4827-8c03-8bf9526568bb.png", "timestamp": "2024-02-15T20:30:35.299821+00:00"}}, {"id": "53f3c8cd-a5fa-4fb2-a721-d7824b153e1e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:52.210202+00:00", "label": "easy", "label_explanation": "The traffic is moderate. Vehicles are moving at a steady pace and there are no major congestion or delays.", "snapshot": {"id": "863a0e1f-f8cf-4827-8c03-8bf9526568bb", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/863a0e1f-f8cf-4827-8c03-8bf9526568bb.png", "timestamp": "2024-02-15T20:30:35.299821+00:00"}}, {"id": "d6e306af-8780-40cc-8c09-aee181464ef8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:51.964848+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "863a0e1f-f8cf-4827-8c03-8bf9526568bb", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/863a0e1f-f8cf-4827-8c03-8bf9526568bb.png", "timestamp": "2024-02-15T20:30:35.299821+00:00"}}, {"id": "2b7a27db-54ef-4223-81b2-4f65217fb00f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:51.734099+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "863a0e1f-f8cf-4827-8c03-8bf9526568bb", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/863a0e1f-f8cf-4827-8c03-8bf9526568bb.png", "timestamp": "2024-02-15T20:30:35.299821+00:00"}}, {"id": "095a2ae7-f623-44e7-870a-ccbf2949489f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:51.497153+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "863a0e1f-f8cf-4827-8c03-8bf9526568bb", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/863a0e1f-f8cf-4827-8c03-8bf9526568bb.png", "timestamp": "2024-02-15T20:30:35.299821+00:00"}}, {"id": "d9dd8802-6733-4f37-bdf1-ddd434206f42", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:51.287714+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "863a0e1f-f8cf-4827-8c03-8bf9526568bb", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/863a0e1f-f8cf-4827-8c03-8bf9526568bb.png", "timestamp": "2024-02-15T20:30:35.299821+00:00"}}, {"id": "9d06c883-c1bf-46ce-83b8-a78e2e526b4b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:32.748483+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles and pedestrians.", "snapshot": {"id": "930f7b79-45e9-4d6d-861d-c405d9864ada", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/930f7b79-45e9-4d6d-861d-c405d9864ada.png", "timestamp": "2024-02-15T20:33:15.945536+00:00"}}, {"id": "5e17492c-b21a-4a81-a11d-980c41bdef7d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:32.549658+00:00", "label": "easy", "label_explanation": "The traffic is moderate. Vehicles are moving at a steady pace and there are no major congestion or delays.", "snapshot": {"id": "930f7b79-45e9-4d6d-861d-c405d9864ada", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/930f7b79-45e9-4d6d-861d-c405d9864ada.png", "timestamp": "2024-02-15T20:33:15.945536+00:00"}}, {"id": "199bb87c-d05a-4d98-b816-ada44dd0722f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:32.362857+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "930f7b79-45e9-4d6d-861d-c405d9864ada", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/930f7b79-45e9-4d6d-861d-c405d9864ada.png", "timestamp": "2024-02-15T20:33:15.945536+00:00"}}, {"id": "1e2eedf0-8644-4605-a20a-e48082f2aec7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:32.153378+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "930f7b79-45e9-4d6d-861d-c405d9864ada", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/930f7b79-45e9-4d6d-861d-c405d9864ada.png", "timestamp": "2024-02-15T20:33:15.945536+00:00"}}, {"id": "cc78929f-2b28-49da-b71f-092b3e18676b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:31.887854+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "930f7b79-45e9-4d6d-861d-c405d9864ada", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/930f7b79-45e9-4d6d-861d-c405d9864ada.png", "timestamp": "2024-02-15T20:33:15.945536+00:00"}}, {"id": "dd8e5928-4f7e-4cd6-9b5c-7c737d55e3a5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:31.617541+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "930f7b79-45e9-4d6d-861d-c405d9864ada", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/930f7b79-45e9-4d6d-861d-c405d9864ada.png", "timestamp": "2024-02-15T20:33:15.945536+00:00"}}, {"id": "bf935847-ba9e-42b9-ba63-2937b0d71c95", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.858944+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "c5cdc48a-553f-4d94-af34-f73d5d767574", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/c5cdc48a-553f-4d94-af34-f73d5d767574.png", "timestamp": "2024-02-15T20:45:27.627308+00:00"}}, {"id": "dbfdc5e0-708c-4db7-90a2-654f77293864", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.648964+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "c5cdc48a-553f-4d94-af34-f73d5d767574", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/c5cdc48a-553f-4d94-af34-f73d5d767574.png", "timestamp": "2024-02-15T20:45:27.627308+00:00"}}, {"id": "2cbbfbac-8132-4a77-859b-636598dcec65", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.364218+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "c5cdc48a-553f-4d94-af34-f73d5d767574", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/c5cdc48a-553f-4d94-af34-f73d5d767574.png", "timestamp": "2024-02-15T20:45:27.627308+00:00"}}, {"id": "9e584816-5db9-455a-917f-0bb2afd83ff4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.161095+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "c5cdc48a-553f-4d94-af34-f73d5d767574", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/c5cdc48a-553f-4d94-af34-f73d5d767574.png", "timestamp": "2024-02-15T20:45:27.627308+00:00"}}, {"id": "47f40b69-3ffb-4c39-aa8a-b0373dc5f115", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.940695+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. There are several vehicles on the road, including a bus, and people are walking on the sidewalk. Trees are present on either side of the road, and buildings and other structures are in the background.", "snapshot": {"id": "c5cdc48a-553f-4d94-af34-f73d5d767574", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/c5cdc48a-553f-4d94-af34-f73d5d767574.png", "timestamp": "2024-02-15T20:45:27.627308+00:00"}}, {"id": "d233b327-efc4-4623-b6ac-08870225de90", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.672191+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c5cdc48a-553f-4d94-af34-f73d5d767574", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/c5cdc48a-553f-4d94-af34-f73d5d767574.png", "timestamp": "2024-02-15T20:45:27.627308+00:00"}}, {"id": "b929f32a-6ca0-4d3d-a264-774ba5a233f8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:53.772868+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "5a45a30a-58eb-42f5-82bc-6b19f1c263f0", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/5a45a30a-58eb-42f5-82bc-6b19f1c263f0.png", "timestamp": "2024-02-15T20:35:41.264657+00:00"}}, {"id": "41dfe654-910f-451e-819b-057cdeea047a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:53.369402+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "5a45a30a-58eb-42f5-82bc-6b19f1c263f0", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/5a45a30a-58eb-42f5-82bc-6b19f1c263f0.png", "timestamp": "2024-02-15T20:35:41.264657+00:00"}}, {"id": "429413d9-a8e9-4ca0-a298-c1205fe77f8d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.808872+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely without any hindrances.", "snapshot": {"id": "305dbc96-c218-49e0-866d-57eac50bd6ca", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/305dbc96-c218-49e0-866d-57eac50bd6ca.png", "timestamp": "2024-02-15T20:38:14.249358+00:00"}}, {"id": "b4fbcee1-90df-45d0-bc76-546c5eb54617", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.595524+00:00", "label": "easy", "label_explanation": "The traffic appears to be flowing smoothly, with no major congestion or disruptions. Vehicles are able to move at a steady pace.", "snapshot": {"id": "305dbc96-c218-49e0-866d-57eac50bd6ca", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/305dbc96-c218-49e0-866d-57eac50bd6ca.png", "timestamp": "2024-02-15T20:38:14.249358+00:00"}}, {"id": "f9472a6e-639a-409d-8218-a13b2825e8ba", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.305525+00:00", "label": "low", "label_explanation": "Since there is no rain or water on the road surface, the water level is low.", "snapshot": {"id": "305dbc96-c218-49e0-866d-57eac50bd6ca", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/305dbc96-c218-49e0-866d-57eac50bd6ca.png", "timestamp": "2024-02-15T20:38:14.249358+00:00"}}, {"id": "5612a0f0-963e-4aa3-b3d7-9685320690b2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:26.095278+00:00", "label": "false", "label_explanation": "As mentioned earlier, there are no visible signs of rain or water on the road surface.", "snapshot": {"id": "305dbc96-c218-49e0-866d-57eac50bd6ca", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/305dbc96-c218-49e0-866d-57eac50bd6ca.png", "timestamp": "2024-02-15T20:38:14.249358+00:00"}}, {"id": "4614bfaf-e994-44a7-bf24-c670965d52de", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.814002+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear, with no visible signs of rain or water on the road surface.", "snapshot": {"id": "305dbc96-c218-49e0-866d-57eac50bd6ca", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/305dbc96-c218-49e0-866d-57eac50bd6ca.png", "timestamp": "2024-02-15T20:38:14.249358+00:00"}}, {"id": "06e62ca2-5eec-42f8-abe1-862eab26b2d4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.609377+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "305dbc96-c218-49e0-866d-57eac50bd6ca", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/305dbc96-c218-49e0-866d-57eac50bd6ca.png", "timestamp": "2024-02-15T20:38:14.249358+00:00"}}, {"id": "6b0bde01-d799-475a-a0a6-c66125f809e9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:52.444306+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "ba00b6b0-07c2-48b4-871c-28c69148e1a1", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/ba00b6b0-07c2-48b4-871c-28c69148e1a1.png", "timestamp": "2024-02-15T20:40:39.566409+00:00"}}, {"id": "398a8af5-2820-433d-8a70-cc93761806f0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:52.238543+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "ba00b6b0-07c2-48b4-871c-28c69148e1a1", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/ba00b6b0-07c2-48b4-871c-28c69148e1a1.png", "timestamp": "2024-02-15T20:40:39.566409+00:00"}}, {"id": "adf2375b-f609-4ff6-bfbc-65a390badf8b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.964670+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including buses, cars, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "ba00b6b0-07c2-48b4-871c-28c69148e1a1", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/ba00b6b0-07c2-48b4-871c-28c69148e1a1.png", "timestamp": "2024-02-15T20:40:39.566409+00:00"}}, {"id": "f6f74e8a-4e7f-470e-8025-21562dc9c6c8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:52.949698+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "ba00b6b0-07c2-48b4-871c-28c69148e1a1", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/ba00b6b0-07c2-48b4-871c-28c69148e1a1.png", "timestamp": "2024-02-15T20:40:39.566409+00:00"}}, {"id": "214dac72-d392-42b5-a6d3-5722ce5b5a4a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:52.661093+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major obstructions or delays.", "snapshot": {"id": "ba00b6b0-07c2-48b4-871c-28c69148e1a1", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/ba00b6b0-07c2-48b4-871c-28c69148e1a1.png", "timestamp": "2024-02-15T20:40:39.566409+00:00"}}, {"id": "bb332678-7a72-4239-a3fc-77fc95d062c3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.757949+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ba00b6b0-07c2-48b4-871c-28c69148e1a1", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/ba00b6b0-07c2-48b4-871c-28c69148e1a1.png", "timestamp": "2024-02-15T20:40:39.566409+00:00"}}, {"id": "f03be805-edd5-475c-98ce-1f36fce7a6b9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.648173+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no visible congestion or obstacles.", "snapshot": {"id": "afa01d5c-1974-49ff-b270-4d02a164e520", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/afa01d5c-1974-49ff-b270-4d02a164e520.png", "timestamp": "2024-02-15T20:43:02.991898+00:00"}}, {"id": "f02f553b-4ecb-49b8-8316-e00ac9163d3e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.349505+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "afa01d5c-1974-49ff-b270-4d02a164e520", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/afa01d5c-1974-49ff-b270-4d02a164e520.png", "timestamp": "2024-02-15T20:43:02.991898+00:00"}}, {"id": "04389f39-2ff1-4935-b181-06ed05eafa6a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.859325+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "afa01d5c-1974-49ff-b270-4d02a164e520", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/afa01d5c-1974-49ff-b270-4d02a164e520.png", "timestamp": "2024-02-15T20:43:02.991898+00:00"}}, {"id": "277e57a0-aacc-47ce-a6a3-0b4012c4517e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.148621+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "afa01d5c-1974-49ff-b270-4d02a164e520", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/afa01d5c-1974-49ff-b270-4d02a164e520.png", "timestamp": "2024-02-15T20:43:02.991898+00:00"}}, {"id": "d75f12fb-d487-416e-918c-5c3dfe1e3a28", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.934536+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few cars on the street, buildings on either side, and vegetation in the background.", "snapshot": {"id": "afa01d5c-1974-49ff-b270-4d02a164e520", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/afa01d5c-1974-49ff-b270-4d02a164e520.png", "timestamp": "2024-02-15T20:43:02.991898+00:00"}}, {"id": "70b4cfa6-b3fe-4f3e-b432-1799a694c182", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:12.734553+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "afa01d5c-1974-49ff-b270-4d02a164e520", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/afa01d5c-1974-49ff-b270-4d02a164e520.png", "timestamp": "2024-02-15T20:43:02.991898+00:00"}}, {"id": "28508f84-76c1-4716-a948-3da55649e377", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:03.882257+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "54bb2f77-82ab-4327-9b00-8eba09b04bd5", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/54bb2f77-82ab-4327-9b00-8eba09b04bd5.png", "timestamp": "2024-02-15T20:47:51.480328+00:00"}}, {"id": "3564d1a4-9db0-4350-9a87-c8b703f8a9cd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:04.549487+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "54bb2f77-82ab-4327-9b00-8eba09b04bd5", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/54bb2f77-82ab-4327-9b00-8eba09b04bd5.png", "timestamp": "2024-02-15T20:47:51.480328+00:00"}}, {"id": "dd15b084-cb7c-4de6-bea0-f34f095a646b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:04.342554+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with cars moving at a steady pace. There are no major delays or obstructions.", "snapshot": {"id": "54bb2f77-82ab-4327-9b00-8eba09b04bd5", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/54bb2f77-82ab-4327-9b00-8eba09b04bd5.png", "timestamp": "2024-02-15T20:47:51.480328+00:00"}}, {"id": "09d7d560-d73e-4fdb-b05f-c8648b31838d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:04.139215+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are not deep enough to cause any significant traffic disruptions.", "snapshot": {"id": "54bb2f77-82ab-4327-9b00-8eba09b04bd5", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/54bb2f77-82ab-4327-9b00-8eba09b04bd5.png", "timestamp": "2024-02-15T20:47:51.480328+00:00"}}, {"id": "dd1369e9-117f-4c2b-95dd-62f071f079cb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:03.646291+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several people walking on the sidewalk, and cars on the street. The road is wet from recent rain, but there are no major obstructions.", "snapshot": {"id": "54bb2f77-82ab-4327-9b00-8eba09b04bd5", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/54bb2f77-82ab-4327-9b00-8eba09b04bd5.png", "timestamp": "2024-02-15T20:47:51.480328+00:00"}}, {"id": "1c308ca6-9f70-4a5a-baae-74753bb6768e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:03.447764+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "54bb2f77-82ab-4327-9b00-8eba09b04bd5", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/54bb2f77-82ab-4327-9b00-8eba09b04bd5.png", "timestamp": "2024-02-15T20:47:51.480328+00:00"}}, {"id": "50be7d30-c93a-4711-b5e3-619f13109dac", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:39.106672+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "56a6715e-5d36-4822-9bb8-0b4401db2a30", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/56a6715e-5d36-4822-9bb8-0b4401db2a30.png", "timestamp": "2024-02-15T20:50:15.649091+00:00"}}, {"id": "a650c4dc-3705-4ccf-b77c-6750c5e51cd0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:38.899764+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace. There are no major delays or obstructions visible.", "snapshot": {"id": "56a6715e-5d36-4822-9bb8-0b4401db2a30", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/56a6715e-5d36-4822-9bb8-0b4401db2a30.png", "timestamp": "2024-02-15T20:50:15.649091+00:00"}}, {"id": "8d9384ae-9fda-49b7-aea9-a8e11ce1a72a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:38.618787+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "56a6715e-5d36-4822-9bb8-0b4401db2a30", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/56a6715e-5d36-4822-9bb8-0b4401db2a30.png", "timestamp": "2024-02-15T20:50:15.649091+00:00"}}, {"id": "7c1eb8d5-0650-4512-8f14-847520bc22c0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:38.403593+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "56a6715e-5d36-4822-9bb8-0b4401db2a30", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/56a6715e-5d36-4822-9bb8-0b4401db2a30.png", "timestamp": "2024-02-15T20:50:15.649091+00:00"}}, {"id": "a74cbfca-b4e7-4d33-97a5-2d5144268923", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:38.120405+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several people walking on the sidewalk, and cars on the street. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "56a6715e-5d36-4822-9bb8-0b4401db2a30", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/56a6715e-5d36-4822-9bb8-0b4401db2a30.png", "timestamp": "2024-02-15T20:50:15.649091+00:00"}}, {"id": "f7d5f7fa-d140-47ed-b80a-ba75a7e80643", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:37.919194+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "56a6715e-5d36-4822-9bb8-0b4401db2a30", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/56a6715e-5d36-4822-9bb8-0b4401db2a30.png", "timestamp": "2024-02-15T20:50:15.649091+00:00"}}, {"id": "46c917b5-5217-4d5c-aeac-3aab016fbdbe", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.792344+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also small puddles of water on the road.", "snapshot": {"id": "48fca4b6-ea11-47d6-9b3d-68e3ddcd126e", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/48fca4b6-ea11-47d6-9b3d-68e3ddcd126e.png", "timestamp": "2024-02-15T20:52:42.486534+00:00"}}, {"id": "98b89a9b-9e72-4162-95b1-0f686ac84baa", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.401079+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "48fca4b6-ea11-47d6-9b3d-68e3ddcd126e", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/48fca4b6-ea11-47d6-9b3d-68e3ddcd126e.png", "timestamp": "2024-02-15T20:52:42.486534+00:00"}}, {"id": "5b966c72-44b7-4377-b0ff-5f70a17d7729", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:54.487094+00:00", "label": "free", "label_explanation": "The road is free of any blockades or obstructions. Traffic is able to flow smoothly without any hindrances.", "snapshot": {"id": "48fca4b6-ea11-47d6-9b3d-68e3ddcd126e", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/48fca4b6-ea11-47d6-9b3d-68e3ddcd126e.png", "timestamp": "2024-02-15T20:52:42.486534+00:00"}}, {"id": "e931abe4-89de-4b4a-baa0-74a3152d5fa2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:54.279459+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "48fca4b6-ea11-47d6-9b3d-68e3ddcd126e", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/48fca4b6-ea11-47d6-9b3d-68e3ddcd126e.png", "timestamp": "2024-02-15T20:52:42.486534+00:00"}}, {"id": "b6d66674-770a-4742-ac0c-47e25afa65b9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:54.080892+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry.", "snapshot": {"id": "48fca4b6-ea11-47d6-9b3d-68e3ddcd126e", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/48fca4b6-ea11-47d6-9b3d-68e3ddcd126e.png", "timestamp": "2024-02-15T20:52:42.486534+00:00"}}, {"id": "b5702838-f227-4ea2-a8ee-d993e9c14aef", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:53.600356+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road with various vehicles, including buses and cars, navigating through a busy intersection. Pedestrians are crossing the road, and buildings and storefronts line the street.", "snapshot": {"id": "48fca4b6-ea11-47d6-9b3d-68e3ddcd126e", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/48fca4b6-ea11-47d6-9b3d-68e3ddcd126e.png", "timestamp": "2024-02-15T20:52:42.486534+00:00"}}, {"id": "95269c01-ab45-41ed-b632-e1999c03ddf1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:19.382367+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, only wetness from recent rain.", "snapshot": {"id": "5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810.png", "timestamp": "2024-02-15T20:55:07.708980+00:00"}}, {"id": "bba2974c-5be9-419a-b958-1d9d68d83ff3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:19.092118+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810.png", "timestamp": "2024-02-15T20:55:07.708980+00:00"}}, {"id": "59b654cd-84b4-40cf-99b2-a3a5c9195766", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:19.789812+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810.png", "timestamp": "2024-02-15T20:55:07.708980+00:00"}}, {"id": "7a50b1aa-3c0b-467d-8e10-4fcde2bb1b0a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:19.583911+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with a few vehicles and pedestrians visible on the road.", "snapshot": {"id": "5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810.png", "timestamp": "2024-02-15T20:55:07.708980+00:00"}}, {"id": "b22f5ce7-9b41-49b7-86ff-4a713fe79483", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.880178+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several buildings and trees on either side of the road, with a few pedestrians and vehicles visible.", "snapshot": {"id": "5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810.png", "timestamp": "2024-02-15T20:55:07.708980+00:00"}}, {"id": "0837e7d4-d3ab-46da-9ba0-ab82876d60b3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:18.675492+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810", "camera_id": "001476", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001476/5b94aaa4-3aff-48b3-bb8e-a4b7c07e2810.png", "timestamp": "2024-02-15T20:55:07.708980+00:00"}}]}, {"id": "001083", "name": "RUA BELA 909 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88795511, "longitude": -43.22529027, "objects": ["image_corrupted", "image_description", "traffic", "road_blockade", "rain", "water_level"], "identifications": []}, {"id": "001389", "name": "R. FRANCISCO EUG\u00caNIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90702635, "longitude": -43.21124587, "objects": ["rain", "road_blockade", "image_corrupted", "traffic", "image_description", "water_level"], "identifications": [{"id": "3b6bd49b-35fb-413e-828e-97dda43adec0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.846282+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road, but it is not enough to cause any significant traffic disruptions. The water appears to be confined to the right side of the road, near the curb.", "snapshot": {"id": "68e71ede-6bcb-4053-aca2-09fed9f86362", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/68e71ede-6bcb-4053-aca2-09fed9f86362.png", "timestamp": "2024-02-15T20:30:31.226178+00:00"}}, {"id": "87ee5aca-e7f9-4a16-8642-4346c1dc760b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.594565+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road for other reasons.", "snapshot": {"id": "68e71ede-6bcb-4053-aca2-09fed9f86362", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/68e71ede-6bcb-4053-aca2-09fed9f86362.png", "timestamp": "2024-02-15T20:30:31.226178+00:00"}}, {"id": "160114d1-d871-4925-ae50-9c510bb852e1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.337425+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few cars on it. It is daytime and the weather appears to be cloudy and gloomy. There are trees on either side of the road, and buildings and structures in the background.", "snapshot": {"id": "68e71ede-6bcb-4053-aca2-09fed9f86362", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/68e71ede-6bcb-4053-aca2-09fed9f86362.png", "timestamp": "2024-02-15T20:30:31.226178+00:00"}}, {"id": "61d5a032-a318-40af-b010-aed5d0f2b0fa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:47.420564+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and it is completely clear for traffic to pass through.", "snapshot": {"id": "68e71ede-6bcb-4053-aca2-09fed9f86362", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/68e71ede-6bcb-4053-aca2-09fed9f86362.png", "timestamp": "2024-02-15T20:30:31.226178+00:00"}}, {"id": "bb4cc358-9459-4fd8-9e06-955c5113a0f6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:47.125920+00:00", "label": "easy", "label_explanation": "The traffic is light, and there are no major obstructions visible in the image. Vehicles can navigate the road without any difficulty.", "snapshot": {"id": "68e71ede-6bcb-4053-aca2-09fed9f86362", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/68e71ede-6bcb-4053-aca2-09fed9f86362.png", "timestamp": "2024-02-15T20:30:31.226178+00:00"}}, {"id": "e651cfb2-0782-456a-8c13-65cf9408c37f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.017647+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "68e71ede-6bcb-4053-aca2-09fed9f86362", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/68e71ede-6bcb-4053-aca2-09fed9f86362.png", "timestamp": "2024-02-15T20:30:31.226178+00:00"}}, {"id": "6cdad11c-9d03-4017-84f1-3d7820a3351c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.730116+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "cb0a6437-9074-4506-aa29-f6a57e52480a", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/cb0a6437-9074-4506-aa29-f6a57e52480a.png", "timestamp": "2024-02-15T20:42:59.646119+00:00"}}, {"id": "f2a88a67-7175-42dd-8b61-28c6e44ebbef", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.648647+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few cars on it. The road is wet from recent rain, and there are some small puddles on the surface. The road is surrounded by trees and buildings.", "snapshot": {"id": "cb0a6437-9074-4506-aa29-f6a57e52480a", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/cb0a6437-9074-4506-aa29-f6a57e52480a.png", "timestamp": "2024-02-15T20:42:59.646119+00:00"}}, {"id": "7a9b0034-e3aa-4892-aaf6-db186e05b3ec", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.451015+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cb0a6437-9074-4506-aa29-f6a57e52480a", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/cb0a6437-9074-4506-aa29-f6a57e52480a.png", "timestamp": "2024-02-15T20:42:59.646119+00:00"}}, {"id": "857c303f-6f17-42f0-a346-5b59283231f1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.412822+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars on the road.", "snapshot": {"id": "cb0a6437-9074-4506-aa29-f6a57e52480a", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/cb0a6437-9074-4506-aa29-f6a57e52480a.png", "timestamp": "2024-02-15T20:42:59.646119+00:00"}}, {"id": "aca48848-9b7e-4a04-9662-694c06349cad", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.063535+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few small puddles on the surface.", "snapshot": {"id": "cb0a6437-9074-4506-aa29-f6a57e52480a", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/cb0a6437-9074-4506-aa29-f6a57e52480a.png", "timestamp": "2024-02-15T20:42:59.646119+00:00"}}, {"id": "717b2c71-e589-4ec5-8240-3aa28c5aada8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.855102+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are some small puddles on the surface.", "snapshot": {"id": "cb0a6437-9074-4506-aa29-f6a57e52480a", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/cb0a6437-9074-4506-aa29-f6a57e52480a.png", "timestamp": "2024-02-15T20:42:59.646119+00:00"}}, {"id": "4773db12-d89d-43e7-82b8-2504b9065dc5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:24.047138+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, but the road is wet from the rain.", "snapshot": {"id": "6f492ec7-e5b1-4c13-a558-652101854088", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/6f492ec7-e5b1-4c13-a558-652101854088.png", "timestamp": "2024-02-15T20:33:09.485353+00:00"}}, {"id": "5588eaa3-9fdb-4fe8-9806-1bb75085cf5b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:24.566941+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "6f492ec7-e5b1-4c13-a558-652101854088", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/6f492ec7-e5b1-4c13-a558-652101854088.png", "timestamp": "2024-02-15T20:33:09.485353+00:00"}}, {"id": "fea0bf6e-4d82-41e0-b391-a6a93d43d339", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:24.335995+00:00", "label": "easy", "label_explanation": "There are a few cars on the road, but traffic is flowing smoothly.", "snapshot": {"id": "6f492ec7-e5b1-4c13-a558-652101854088", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/6f492ec7-e5b1-4c13-a558-652101854088.png", "timestamp": "2024-02-15T20:33:09.485353+00:00"}}, {"id": "caf7f836-dca0-4842-af0c-a0ae1a5ff890", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.421700+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few cars on it. The road is divided into two lanes, separated by a concrete barrier. On the left side of the road, there is a graffiti-covered wall, and on the right side, there are trees and buildings.", "snapshot": {"id": "6f492ec7-e5b1-4c13-a558-652101854088", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/6f492ec7-e5b1-4c13-a558-652101854088.png", "timestamp": "2024-02-15T20:33:09.485353+00:00"}}, {"id": "7f2316b5-061f-4528-b6a2-7c8a0e341cba", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.806963+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "6f492ec7-e5b1-4c13-a558-652101854088", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/6f492ec7-e5b1-4c13-a558-652101854088.png", "timestamp": "2024-02-15T20:33:09.485353+00:00"}}, {"id": "8824497c-0687-4696-a5f4-58c7e551991f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:23.059417+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6f492ec7-e5b1-4c13-a558-652101854088", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/6f492ec7-e5b1-4c13-a558-652101854088.png", "timestamp": "2024-02-15T20:33:09.485353+00:00"}}, {"id": "cdc4be23-fabd-4543-ad66-914253a4076f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:50.642640+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and it is completely clear.", "snapshot": {"id": "f8d65bbd-c26d-44d3-844f-1e6b66235403", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/f8d65bbd-c26d-44d3-844f-1e6b66235403.png", "timestamp": "2024-02-15T20:35:36.605751+00:00"}}, {"id": "f52462ae-0eb7-470d-b84a-e1ea6a9af2c1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:50.440516+00:00", "label": "easy", "label_explanation": "There is no traffic visible on the road.", "snapshot": {"id": "f8d65bbd-c26d-44d3-844f-1e6b66235403", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/f8d65bbd-c26d-44d3-844f-1e6b66235403.png", "timestamp": "2024-02-15T20:35:36.605751+00:00"}}, {"id": "dd4b3903-fe53-40e6-87cd-59fc0cf0f0e2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:50.237501+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles on the road surface.", "snapshot": {"id": "f8d65bbd-c26d-44d3-844f-1e6b66235403", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/f8d65bbd-c26d-44d3-844f-1e6b66235403.png", "timestamp": "2024-02-15T20:35:36.605751+00:00"}}, {"id": "7020a89e-e4df-4cb7-8c96-cb000d2f32ac", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:50.033481+00:00", "label": "true", "label_explanation": "The road is wet, and there are small puddles of water on the surface.", "snapshot": {"id": "f8d65bbd-c26d-44d3-844f-1e6b66235403", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/f8d65bbd-c26d-44d3-844f-1e6b66235403.png", "timestamp": "2024-02-15T20:35:36.605751+00:00"}}, {"id": "1cf7ab29-ee4c-4c7a-b5f3-12a57bfa94e4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.830588+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with graffiti-covered walls on one side and a fence on the other. There are a few trees on either side of the road, and the sky is cloudy.", "snapshot": {"id": "f8d65bbd-c26d-44d3-844f-1e6b66235403", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/f8d65bbd-c26d-44d3-844f-1e6b66235403.png", "timestamp": "2024-02-15T20:35:36.605751+00:00"}}, {"id": "f3728d4e-6326-42fd-9d35-ae6a3ce531c0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:49.622473+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f8d65bbd-c26d-44d3-844f-1e6b66235403", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/f8d65bbd-c26d-44d3-844f-1e6b66235403.png", "timestamp": "2024-02-15T20:35:36.605751+00:00"}}, {"id": "d742e2bc-6314-415e-ab76-21b7d7c06445", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.311834+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and free of any obstructions.", "snapshot": {"id": "ff84ce44-ff11-4018-9b16-c59ad6441168", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/ff84ce44-ff11-4018-9b16-c59ad6441168.png", "timestamp": "2024-02-15T20:38:09.236808+00:00"}}, {"id": "7e20267b-bac2-4cbd-a1c1-86f177c6e0cc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:22.131479+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few vehicles on the road, but they are able to move freely.", "snapshot": {"id": "ff84ce44-ff11-4018-9b16-c59ad6441168", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/ff84ce44-ff11-4018-9b16-c59ad6441168.png", "timestamp": "2024-02-15T20:38:09.236808+00:00"}}, {"id": "6c2058d9-c410-45ae-81a8-bb84adc29eeb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.891720+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "ff84ce44-ff11-4018-9b16-c59ad6441168", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/ff84ce44-ff11-4018-9b16-c59ad6441168.png", "timestamp": "2024-02-15T20:38:09.236808+00:00"}}, {"id": "261d9cb6-bc5d-4a93-b975-fa9389e18748", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.682830+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "ff84ce44-ff11-4018-9b16-c59ad6441168", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/ff84ce44-ff11-4018-9b16-c59ad6441168.png", "timestamp": "2024-02-15T20:38:09.236808+00:00"}}, {"id": "81d12f8a-1f61-405d-9547-357ca35b4aa1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.467318+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few vehicles on it. The road is divided into two lanes, separated by a concrete barrier. On the left side of the image, there is a graffiti-covered wall, and on the right side, there are trees and buildings in the background. The weather appears to be overcast, as the sky is grey and there is no direct sunlight.", "snapshot": {"id": "ff84ce44-ff11-4018-9b16-c59ad6441168", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/ff84ce44-ff11-4018-9b16-c59ad6441168.png", "timestamp": "2024-02-15T20:38:09.236808+00:00"}}, {"id": "df0d8d81-a74d-4c17-9f61-a183df3c6dde", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:21.227723+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ff84ce44-ff11-4018-9b16-c59ad6441168", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/ff84ce44-ff11-4018-9b16-c59ad6441168.png", "timestamp": "2024-02-15T20:38:09.236808+00:00"}}, {"id": "d1992982-929e-4433-ab0a-34b007c00011", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.697154+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "1237e3f4-b7e6-48e5-b363-70e17025def5", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/1237e3f4-b7e6-48e5-b363-70e17025def5.png", "timestamp": "2024-02-15T20:47:47.463215+00:00"}}, {"id": "9d87992e-f2f6-42ae-80ed-ce3712aab99a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.715478+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a concrete barrier separating the directions. The road is in good condition, with no visible potholes or cracks. There are trees and buildings in the background, and the weather appears to be overcast.", "snapshot": {"id": "1237e3f4-b7e6-48e5-b363-70e17025def5", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/1237e3f4-b7e6-48e5-b363-70e17025def5.png", "timestamp": "2024-02-15T20:47:47.463215+00:00"}}, {"id": "22edf532-dfa8-46db-b620-52bbb1521457", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.511885+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1237e3f4-b7e6-48e5-b363-70e17025def5", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/1237e3f4-b7e6-48e5-b363-70e17025def5.png", "timestamp": "2024-02-15T20:47:47.463215+00:00"}}, {"id": "6c188f03-bcd5-4001-990b-077a5479dc28", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.433326+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "1237e3f4-b7e6-48e5-b363-70e17025def5", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/1237e3f4-b7e6-48e5-b363-70e17025def5.png", "timestamp": "2024-02-15T20:47:47.463215+00:00"}}, {"id": "d25a901e-db7c-4ca5-8855-9c19a23eea61", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:58.938703+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "1237e3f4-b7e6-48e5-b363-70e17025def5", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/1237e3f4-b7e6-48e5-b363-70e17025def5.png", "timestamp": "2024-02-15T20:47:47.463215+00:00"}}, {"id": "f9412c5b-2725-49e1-8c10-3856ac234f78", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.219679+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "1237e3f4-b7e6-48e5-b363-70e17025def5", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/1237e3f4-b7e6-48e5-b363-70e17025def5.png", "timestamp": "2024-02-15T20:47:47.463215+00:00"}}, {"id": "c970593b-1602-43e5-8714-a041af33f510", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.150422+00:00", "label": "true", "label_explanation": "The road is wet from rain.", "snapshot": {"id": "c46d7d89-53c3-47b7-95c9-6d2024216300", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/c46d7d89-53c3-47b7-95c9-6d2024216300.png", "timestamp": "2024-02-15T20:40:38.232985+00:00"}}, {"id": "5d9aaaae-bba0-41fd-9f9b-3602766100c5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.430639+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "c46d7d89-53c3-47b7-95c9-6d2024216300", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/c46d7d89-53c3-47b7-95c9-6d2024216300.png", "timestamp": "2024-02-15T20:40:38.232985+00:00"}}, {"id": "72533d01-db58-44f7-bc7c-31d9cb91fb13", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.961752+00:00", "label": "free", "label_explanation": "There are no road blockades.", "snapshot": {"id": "c46d7d89-53c3-47b7-95c9-6d2024216300", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/c46d7d89-53c3-47b7-95c9-6d2024216300.png", "timestamp": "2024-02-15T20:40:38.232985+00:00"}}, {"id": "5b411ba6-4621-490a-93fc-a7a411713ad7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.668432+00:00", "label": "easy", "label_explanation": "The road is clear with no traffic obstructions.", "snapshot": {"id": "c46d7d89-53c3-47b7-95c9-6d2024216300", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/c46d7d89-53c3-47b7-95c9-6d2024216300.png", "timestamp": "2024-02-15T20:40:38.232985+00:00"}}, {"id": "22112b01-8c92-4e67-9f58-7d8aada3a0c9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.891267+00:00", "label": "null", "label_explanation": "The image is a view of a road with a graffiti-covered wall on the left and a street with cars on the right. The road is wet from rain.", "snapshot": {"id": "c46d7d89-53c3-47b7-95c9-6d2024216300", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/c46d7d89-53c3-47b7-95c9-6d2024216300.png", "timestamp": "2024-02-15T20:40:38.232985+00:00"}}, {"id": "be86ab4e-4c05-4fda-a8ef-8c8272182fd4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:48.504005+00:00", "label": "true", "label_explanation": "The image is corrupted with a large section of the bottom half of the image distorted with bright pink and purple colors.", "snapshot": {"id": "c46d7d89-53c3-47b7-95c9-6d2024216300", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/c46d7d89-53c3-47b7-95c9-6d2024216300.png", "timestamp": "2024-02-15T20:40:38.232985+00:00"}}, {"id": "c582e597-df4f-4516-89d5-8f954ff2bdb0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.409227+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b7bf88d8-19ba-4247-8afc-4a3b255885c6", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/b7bf88d8-19ba-4247-8afc-4a3b255885c6.png", "timestamp": "2024-02-15T20:45:22.592441+00:00"}}, {"id": "202782a6-e141-4a58-86e9-ee44db311234", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.476953+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "b7bf88d8-19ba-4247-8afc-4a3b255885c6", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/b7bf88d8-19ba-4247-8afc-4a3b255885c6.png", "timestamp": "2024-02-15T20:45:22.592441+00:00"}}, {"id": "8c3f5234-0919-46d7-a467-aef15caec138", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.062493+00:00", "label": "low", "label_explanation": "There is no visible water on the road surface.", "snapshot": {"id": "b7bf88d8-19ba-4247-8afc-4a3b255885c6", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/b7bf88d8-19ba-4247-8afc-4a3b255885c6.png", "timestamp": "2024-02-15T20:45:22.592441+00:00"}}, {"id": "619c34c8-b2f6-447f-a803-b578b3201f09", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.806469+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "b7bf88d8-19ba-4247-8afc-4a3b255885c6", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/b7bf88d8-19ba-4247-8afc-4a3b255885c6.png", "timestamp": "2024-02-15T20:45:22.592441+00:00"}}, {"id": "21c3b5c6-a6bd-4b3b-8108-e2b0b56614bc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:38.584374+00:00", "label": "null", "label_explanation": "The image shows a six-lane urban road with a concrete barrier separating the directions. The road is elevated and there are several trees on the left side of the image. The weather appears to be overcast and there is no visible traffic on the road.", "snapshot": {"id": "b7bf88d8-19ba-4247-8afc-4a3b255885c6", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/b7bf88d8-19ba-4247-8afc-4a3b255885c6.png", "timestamp": "2024-02-15T20:45:22.592441+00:00"}}, {"id": "696003ec-15b0-4822-b59d-43c67fec6853", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:26.179132+00:00", "label": "false", "label_explanation": "The image is clear with no visible signs of corruption or data loss.", "snapshot": {"id": "494b740f-2af0-4279-8caa-1920841a9d0d", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/494b740f-2af0-4279-8caa-1920841a9d0d.png", "timestamp": "2024-02-15T20:50:15.486990+00:00"}}, {"id": "a7c7cc02-3026-4fd0-afba-9b7c8644ab8f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.228787+00:00", "label": "free", "label_explanation": "There are no road blockades present in the image.", "snapshot": {"id": "494b740f-2af0-4279-8caa-1920841a9d0d", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/494b740f-2af0-4279-8caa-1920841a9d0d.png", "timestamp": "2024-02-15T20:50:15.486990+00:00"}}, {"id": "4d351443-7196-4beb-ad29-6e6a58220b97", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:26.832248+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "494b740f-2af0-4279-8caa-1920841a9d0d", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/494b740f-2af0-4279-8caa-1920841a9d0d.png", "timestamp": "2024-02-15T20:50:15.486990+00:00"}}, {"id": "07af5ec1-d161-4a54-8d75-5481d0139281", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:26.600308+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "494b740f-2af0-4279-8caa-1920841a9d0d", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/494b740f-2af0-4279-8caa-1920841a9d0d.png", "timestamp": "2024-02-15T20:50:15.486990+00:00"}}, {"id": "622dc33e-ad5c-4963-892f-ff2fba21b8e9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:26.409207+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a concrete barrier separating the directions. The road is surrounded by trees and buildings, with an overpass in the background. There are no vehicles visible in the image.", "snapshot": {"id": "494b740f-2af0-4279-8caa-1920841a9d0d", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/494b740f-2af0-4279-8caa-1920841a9d0d.png", "timestamp": "2024-02-15T20:50:15.486990+00:00"}}, {"id": "1d5fb2e6-b23e-44c0-ac1c-87cd068fb70d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.396406+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "127508bc-9ddb-49c0-9ae7-5cb5b3840f88", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/127508bc-9ddb-49c0-9ae7-5cb5b3840f88.png", "timestamp": "2024-02-15T20:52:35.933712+00:00"}}, {"id": "20ad7882-7d2c-47a6-b7b6-99f76b2cf910", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:48.145019+00:00", "label": "moderate", "label_explanation": "There is moderate traffic on the road, with cars and trucks moving in both directions.", "snapshot": {"id": "127508bc-9ddb-49c0-9ae7-5cb5b3840f88", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/127508bc-9ddb-49c0-9ae7-5cb5b3840f88.png", "timestamp": "2024-02-15T20:52:35.933712+00:00"}}, {"id": "18d46f48-35dd-46c7-beb2-74e858cc6e1f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.449619+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a graffiti-covered wall on one side and a few trees on the other. The road is wet from recent rain, and there are a few puddles on the surface. There is moderate traffic on the road, with cars and trucks moving in both directions. In the distance, there is a bridge overpass.", "snapshot": {"id": "127508bc-9ddb-49c0-9ae7-5cb5b3840f88", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/127508bc-9ddb-49c0-9ae7-5cb5b3840f88.png", "timestamp": "2024-02-15T20:52:35.933712+00:00"}}, {"id": "515e8b19-1e90-4c1d-8766-966af36206f1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.242707+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "127508bc-9ddb-49c0-9ae7-5cb5b3840f88", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/127508bc-9ddb-49c0-9ae7-5cb5b3840f88.png", "timestamp": "2024-02-15T20:52:35.933712+00:00"}}, {"id": "fe1200ca-ade5-42f5-98b8-43f468872224", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.943883+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few puddles on the surface.", "snapshot": {"id": "127508bc-9ddb-49c0-9ae7-5cb5b3840f88", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/127508bc-9ddb-49c0-9ae7-5cb5b3840f88.png", "timestamp": "2024-02-15T20:52:35.933712+00:00"}}, {"id": "63082365-45e0-453e-bd61-971dc57d445f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:47.651179+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are a few puddles on the surface.", "snapshot": {"id": "127508bc-9ddb-49c0-9ae7-5cb5b3840f88", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/127508bc-9ddb-49c0-9ae7-5cb5b3840f88.png", "timestamp": "2024-02-15T20:52:35.933712+00:00"}}, {"id": "c0695dd3-2f42-4e0d-a5f4-d12da785b6b5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.465045+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7.png", "timestamp": "2024-02-15T20:55:02.821505+00:00"}}, {"id": "fb8bd9e0-7a33-4642-b30a-bf691c87ce24", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.729610+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7.png", "timestamp": "2024-02-15T20:55:02.821505+00:00"}}, {"id": "48c0275d-ab50-4556-b58c-ac19ff631981", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.004430+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a graffiti-covered wall on one side and a few trees on the other. There are vehicles on the road, and the weather appears to be overcast.", "snapshot": {"id": "2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7.png", "timestamp": "2024-02-15T20:55:02.821505+00:00"}}, {"id": "7daabe74-db0d-4f29-a15b-95e5c492cd1d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.910805+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7.png", "timestamp": "2024-02-15T20:55:02.821505+00:00"}}, {"id": "b8f76a5e-c6ce-44b0-874f-57228a710e66", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.720818+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7.png", "timestamp": "2024-02-15T20:55:02.821505+00:00"}}, {"id": "16737fa4-9d7e-4447-b942-5f3a2ce20e71", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.217167+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7", "camera_id": "001389", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001389/2e1b5c6d-9d6b-4590-81ea-6dbe3a46efe7.png", "timestamp": "2024-02-15T20:55:02.821505+00:00"}}]}, {"id": "001522", "name": "R. C\u00c2NDIDO BEN\u00cdCIO, 1757 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.896959, "longitude": -43.351512, "objects": ["road_blockade", "traffic", "image_corrupted", "rain", "water_level", "image_description"], "identifications": []}, {"id": "001478", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. PRAIA DE BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9506, "longitude": -43.181605, "objects": ["road_blockade", "image_description", "traffic", "image_corrupted", "rain", "water_level"], "identifications": [{"id": "3fa5f806-10e4-4d26-881b-4684da734539", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.233245+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "61a9aee9-523a-4e3d-a78b-8da247dda0a1", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/61a9aee9-523a-4e3d-a78b-8da247dda0a1.png", "timestamp": "2024-02-15T20:30:08.533326+00:00"}}, {"id": "a94918cd-c004-4ebe-b4ca-0ba309d796f5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.910819+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed. Vehicles are able to navigate the wet road conditions without difficulty.", "snapshot": {"id": "61a9aee9-523a-4e3d-a78b-8da247dda0a1", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/61a9aee9-523a-4e3d-a78b-8da247dda0a1.png", "timestamp": "2024-02-15T20:30:08.533326+00:00"}}, {"id": "c65962f6-531c-4f29-ad1c-195d151e2aef", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.505568+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While it is raining, the water is not accumulating or causing any visible hindrance to traffic.", "snapshot": {"id": "61a9aee9-523a-4e3d-a78b-8da247dda0a1", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/61a9aee9-523a-4e3d-a78b-8da247dda0a1.png", "timestamp": "2024-02-15T20:30:08.533326+00:00"}}, {"id": "f7979f37-01d1-4212-9c1d-c23d8287c98d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:22.999812+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no major distortions or data loss.", "snapshot": {"id": "61a9aee9-523a-4e3d-a78b-8da247dda0a1", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/61a9aee9-523a-4e3d-a78b-8da247dda0a1.png", "timestamp": "2024-02-15T20:30:08.533326+00:00"}}, {"id": "0b27f660-32d5-4b54-a2b5-09bd1e8a4c5b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.428729+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is raining, and the road surface is wet but without significant water accumulation.", "snapshot": {"id": "61a9aee9-523a-4e3d-a78b-8da247dda0a1", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/61a9aee9-523a-4e3d-a78b-8da247dda0a1.png", "timestamp": "2024-02-15T20:30:08.533326+00:00"}}, {"id": "f5644788-dd3e-4501-9462-dd1b62d1966b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.842117+00:00", "label": "true", "label_explanation": "The road surface is wet, and raindrops are visible on the windshield of the vehicles.", "snapshot": {"id": "61a9aee9-523a-4e3d-a78b-8da247dda0a1", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/61a9aee9-523a-4e3d-a78b-8da247dda0a1.png", "timestamp": "2024-02-15T20:30:08.533326+00:00"}}, {"id": "630f23ba-78b2-459f-8d9f-d722c2234d7c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.016397+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "469895c9-9594-43c7-a801-505039ac00b8", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/469895c9-9594-43c7-a801-505039ac00b8.png", "timestamp": "2024-02-15T20:45:00.808304+00:00"}}, {"id": "88a0d2a9-a7b9-42bc-98ea-a4493da3bff1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.516722+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road, but they do not impede traffic flow significantly.", "snapshot": {"id": "469895c9-9594-43c7-a801-505039ac00b8", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/469895c9-9594-43c7-a801-505039ac00b8.png", "timestamp": "2024-02-15T20:45:00.808304+00:00"}}, {"id": "4df05a27-0d46-47b5-83d2-d7a0b8290ed6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.034058+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "469895c9-9594-43c7-a801-505039ac00b8", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/469895c9-9594-43c7-a801-505039ac00b8.png", "timestamp": "2024-02-15T20:45:00.808304+00:00"}}, {"id": "6173fd74-7c94-4106-8e7d-a3dc1ccbbc5c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:12.793595+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "469895c9-9594-43c7-a801-505039ac00b8", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/469895c9-9594-43c7-a801-505039ac00b8.png", "timestamp": "2024-02-15T20:45:00.808304+00:00"}}, {"id": "c31a8bc3-0b1b-4509-a609-88ab446b638b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.631262+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with cars, buses, and pedestrians.", "snapshot": {"id": "469895c9-9594-43c7-a801-505039ac00b8", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/469895c9-9594-43c7-a801-505039ac00b8.png", "timestamp": "2024-02-15T20:45:00.808304+00:00"}}, {"id": "0b55705f-27f4-4e10-aa35-8552a350a9b1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:11.410978+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "469895c9-9594-43c7-a801-505039ac00b8", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/469895c9-9594-43c7-a801-505039ac00b8.png", "timestamp": "2024-02-15T20:45:00.808304+00:00"}}, {"id": "f7fae156-ca0c-4d98-a798-2948318bfc67", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.796340+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a bus driving in the foreground. It appears to be daytime and slightly wet, with some greenery on the sides of the road.", "snapshot": {"id": "72beec9e-d3ef-4ecc-b8b7-353306e20e7c", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/72beec9e-d3ef-4ecc-b8b7-353306e20e7c.png", "timestamp": "2024-02-15T20:37:37.955921+00:00"}}, {"id": "2c2dd176-4373-4e3a-8a03-4d7a09aab33d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.090543+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no major distortions or data loss.", "snapshot": {"id": "72beec9e-d3ef-4ecc-b8b7-353306e20e7c", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/72beec9e-d3ef-4ecc-b8b7-353306e20e7c.png", "timestamp": "2024-02-15T20:37:37.955921+00:00"}}, {"id": "55cb29a7-0e76-42f7-b9b6-428b4b6aadaf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:57.599110+00:00", "label": "free", "label_explanation": "The road is free of any obstructions or blockades. There are no visible barriers or hazards that would impede traffic flow.", "snapshot": {"id": "72beec9e-d3ef-4ecc-b8b7-353306e20e7c", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/72beec9e-d3ef-4ecc-b8b7-353306e20e7c.png", "timestamp": "2024-02-15T20:37:37.955921+00:00"}}, {"id": "5b6407af-c75e-49a6-8b4e-7f02774e1635", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.586593+00:00", "label": "easy", "label_explanation": "The traffic flow appears smooth, with no major congestion or obstacles hindering movement. Vehicles are able to navigate the road without significant difficulty.", "snapshot": {"id": "72beec9e-d3ef-4ecc-b8b7-353306e20e7c", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/72beec9e-d3ef-4ecc-b8b7-353306e20e7c.png", "timestamp": "2024-02-15T20:37:37.955921+00:00"}}, {"id": "4ece9890-d7c9-44aa-9f16-05620b0cda27", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.149170+00:00", "label": "low", "label_explanation": "The road surface is mostly dry, with only minimal traces of water. The water level can be classified as 'low' as per the guidelines.", "snapshot": {"id": "72beec9e-d3ef-4ecc-b8b7-353306e20e7c", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/72beec9e-d3ef-4ecc-b8b7-353306e20e7c.png", "timestamp": "2024-02-15T20:37:37.955921+00:00"}}, {"id": "7155d333-c1c7-4a26-a7f3-3a074701a443", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.285763+00:00", "label": "false", "label_explanation": "Although the road surface is not completely dry, it is not heavily wet either. There are no visible signs of puddles or significant water accumulation.", "snapshot": {"id": "72beec9e-d3ef-4ecc-b8b7-353306e20e7c", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/72beec9e-d3ef-4ecc-b8b7-353306e20e7c.png", "timestamp": "2024-02-15T20:37:37.955921+00:00"}}, {"id": "0c4d01ba-7ba4-4def-8208-122875fc20c7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.037754+00:00", "label": "true", "label_explanation": "The road surface is wet, and rain is visible in the image.", "snapshot": {"id": "471441d2-5200-40e8-b61a-b540a4270d47", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/471441d2-5200-40e8-b61a-b540a4270d47.png", "timestamp": "2024-02-15T20:35:08.477152+00:00"}}, {"id": "062b0719-2f3f-41c8-8eab-0bd365d74832", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.302918+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is raining, and the road surface is wet.", "snapshot": {"id": "471441d2-5200-40e8-b61a-b540a4270d47", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/471441d2-5200-40e8-b61a-b540a4270d47.png", "timestamp": "2024-02-15T20:35:08.477152+00:00"}}, {"id": "40261481-0e54-48a5-b6d3-41feb32ed88b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.562504+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area or pose a major hindrance to traffic.", "snapshot": {"id": "471441d2-5200-40e8-b61a-b540a4270d47", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/471441d2-5200-40e8-b61a-b540a4270d47.png", "timestamp": "2024-02-15T20:35:08.477152+00:00"}}, {"id": "b387853b-e415-45eb-a40d-827d05727790", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.554202+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no signs of data loss or corruption.", "snapshot": {"id": "471441d2-5200-40e8-b61a-b540a4270d47", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/471441d2-5200-40e8-b61a-b540a4270d47.png", "timestamp": "2024-02-15T20:35:08.477152+00:00"}}, {"id": "9257a420-ee32-4de4-8ff9-ab1c726c1904", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.024677+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no significant congestion or delays observed.", "snapshot": {"id": "471441d2-5200-40e8-b61a-b540a4270d47", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/471441d2-5200-40e8-b61a-b540a4270d47.png", "timestamp": "2024-02-15T20:35:08.477152+00:00"}}, {"id": "0e220b4f-eae9-4f3e-8c52-f8d2d3ae9b32", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.746032+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "471441d2-5200-40e8-b61a-b540a4270d47", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/471441d2-5200-40e8-b61a-b540a4270d47.png", "timestamp": "2024-02-15T20:35:08.477152+00:00"}}, {"id": "7f5f2268-fc55-4605-87d5-e3bb3ba4ca1c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.042569+00:00", "label": "free", "label_explanation": "The road is clear, with no blockades or obstructions hindering traffic flow.", "snapshot": {"id": "6117c4ae-e7a3-41ef-9fce-577eef622a72", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/6117c4ae-e7a3-41ef-9fce-577eef622a72.png", "timestamp": "2024-02-15T20:40:09.806673+00:00"}}, {"id": "cda70445-109a-4f13-8e0a-045d972acab3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.272343+00:00", "label": "true", "label_explanation": "The road surface is wet, and raindrops are visible on the windshield of the vehicles.", "snapshot": {"id": "6117c4ae-e7a3-41ef-9fce-577eef622a72", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/6117c4ae-e7a3-41ef-9fce-577eef622a72.png", "timestamp": "2024-02-15T20:40:09.806673+00:00"}}, {"id": "a7427a76-2bd7-4919-bf1b-c720be2cdec5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:23.333118+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "6117c4ae-e7a3-41ef-9fce-577eef622a72", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/6117c4ae-e7a3-41ef-9fce-577eef622a72.png", "timestamp": "2024-02-15T20:40:09.806673+00:00"}}, {"id": "3caf8723-dce2-4152-9071-cfd010f3951e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:22.756069+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, only a thin layer of water from the rain.", "snapshot": {"id": "6117c4ae-e7a3-41ef-9fce-577eef622a72", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/6117c4ae-e7a3-41ef-9fce-577eef622a72.png", "timestamp": "2024-02-15T20:40:09.806673+00:00"}}, {"id": "553aa961-7ffc-4272-aaa3-447cc2d3a74b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:21.542742+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is raining, and the road surface is wet but without significant water accumulation.", "snapshot": {"id": "6117c4ae-e7a3-41ef-9fce-577eef622a72", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/6117c4ae-e7a3-41ef-9fce-577eef622a72.png", "timestamp": "2024-02-15T20:40:09.806673+00:00"}}, {"id": "c985fac7-4953-4c88-b0bc-fd820f8017ca", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:20.990229+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no signs of data loss or corruption.", "snapshot": {"id": "6117c4ae-e7a3-41ef-9fce-577eef622a72", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/6117c4ae-e7a3-41ef-9fce-577eef622a72.png", "timestamp": "2024-02-15T20:40:09.806673+00:00"}}, {"id": "8f02fd29-6bb1-4d7c-814a-128db12f2584", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.100399+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "2f4130ba-cae6-41e6-b1af-4e806c1619db", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/2f4130ba-cae6-41e6-b1af-4e806c1619db.png", "timestamp": "2024-02-15T20:42:37.591771+00:00"}}, {"id": "a4990cb6-b0c2-4764-9a46-fe0959792867", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.193517+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles scattered around. The majority of the road surface is dry.", "snapshot": {"id": "2f4130ba-cae6-41e6-b1af-4e806c1619db", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/2f4130ba-cae6-41e6-b1af-4e806c1619db.png", "timestamp": "2024-02-15T20:42:37.591771+00:00"}}, {"id": "b4215943-1150-4362-a1ab-7d1d1122eea5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.436401+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast.", "snapshot": {"id": "2f4130ba-cae6-41e6-b1af-4e806c1619db", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/2f4130ba-cae6-41e6-b1af-4e806c1619db.png", "timestamp": "2024-02-15T20:42:37.591771+00:00"}}, {"id": "4a306565-f59d-485f-bee2-ddb990cb243d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.818448+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also small puddles of water on the road.", "snapshot": {"id": "2f4130ba-cae6-41e6-b1af-4e806c1619db", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/2f4130ba-cae6-41e6-b1af-4e806c1619db.png", "timestamp": "2024-02-15T20:42:37.591771+00:00"}}, {"id": "31a9755a-563b-45f6-8813-05d3a44661b6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:48.205969+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no major distortions or data loss.", "snapshot": {"id": "2f4130ba-cae6-41e6-b1af-4e806c1619db", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/2f4130ba-cae6-41e6-b1af-4e806c1619db.png", "timestamp": "2024-02-15T20:42:37.591771+00:00"}}, {"id": "8264f473-e5a8-4cdc-9dbd-1149fa359c83", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:49.573919+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or congestion visible.", "snapshot": {"id": "2f4130ba-cae6-41e6-b1af-4e806c1619db", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/2f4130ba-cae6-41e6-b1af-4e806c1619db.png", "timestamp": "2024-02-15T20:42:37.591771+00:00"}}, {"id": "277fe44e-477d-407a-9e97-05c998b7e78b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.308687+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are cars on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "f15de4b0-1107-4084-8a76-94753325175b", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/f15de4b0-1107-4084-8a76-94753325175b.png", "timestamp": "2024-02-15T20:47:24.133966+00:00"}}, {"id": "1f30b4c4-c51c-473e-845f-40969d87598d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:34.551805+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a pedestrian crossing. There are cars on the road, and a person is crossing the road on the pedestrian crossing.", "snapshot": {"id": "f15de4b0-1107-4084-8a76-94753325175b", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/f15de4b0-1107-4084-8a76-94753325175b.png", "timestamp": "2024-02-15T20:47:24.133966+00:00"}}, {"id": "2e210518-db97-43ba-97fd-15677c05ea6b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.107098+00:00", "label": "low", "label_explanation": "There is no standing water on the road. The road is wet, but this is likely due to recent rain.", "snapshot": {"id": "f15de4b0-1107-4084-8a76-94753325175b", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/f15de4b0-1107-4084-8a76-94753325175b.png", "timestamp": "2024-02-15T20:47:24.133966+00:00"}}, {"id": "bc971936-7eef-4cbc-8cd5-12a39da32bf7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.518333+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable.", "snapshot": {"id": "f15de4b0-1107-4084-8a76-94753325175b", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/f15de4b0-1107-4084-8a76-94753325175b.png", "timestamp": "2024-02-15T20:47:24.133966+00:00"}}, {"id": "b9198f53-86d5-40da-8d0a-6dcddacdfe0b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:34.845039+00:00", "label": "true", "label_explanation": "The road is wet, but there is no standing water. It appears to have rained recently.", "snapshot": {"id": "f15de4b0-1107-4084-8a76-94753325175b", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/f15de4b0-1107-4084-8a76-94753325175b.png", "timestamp": "2024-02-15T20:47:24.133966+00:00"}}, {"id": "45dd5c5a-258a-4000-a8fc-0fd2fc6fcc73", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:34.240390+00:00", "label": "false", "label_explanation": "The image is slightly blurry, but overall clear. There are no signs of data loss or corruption.", "snapshot": {"id": "f15de4b0-1107-4084-8a76-94753325175b", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/f15de4b0-1107-4084-8a76-94753325175b.png", "timestamp": "2024-02-15T20:47:24.133966+00:00"}}, {"id": "82a2087d-006c-4c71-b619-e756fa06ce0d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:49.425674+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "799dad2d-28e6-4c94-995b-78b1e3c058b5", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/799dad2d-28e6-4c94-995b-78b1e3c058b5.png", "timestamp": "2024-02-15T20:32:33.695621+00:00"}}, {"id": "424e809a-d735-493a-91f7-2f931273e25f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:46.449859+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is raining, and the road surface is wet but without significant water accumulation.", "snapshot": {"id": "799dad2d-28e6-4c94-995b-78b1e3c058b5", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/799dad2d-28e6-4c94-995b-78b1e3c058b5.png", "timestamp": "2024-02-15T20:32:33.695621+00:00"}}, {"id": "03556143-d35d-4f79-a70c-16fff4e53afc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:45.591820+00:00", "label": "true", "label_explanation": "The image is slightly blurred, but overall clear with no major distortions or data loss.", "snapshot": {"id": "799dad2d-28e6-4c94-995b-78b1e3c058b5", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/799dad2d-28e6-4c94-995b-78b1e3c058b5.png", "timestamp": "2024-02-15T20:32:33.695621+00:00"}}, {"id": "777afc30-8279-488e-8a72-f9f7d11f722e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:47.194881+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "799dad2d-28e6-4c94-995b-78b1e3c058b5", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/799dad2d-28e6-4c94-995b-78b1e3c058b5.png", "timestamp": "2024-02-15T20:32:33.695621+00:00"}}, {"id": "ce138c36-3783-41b6-ad56-b7f72dc4fc4b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:48.644961+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "799dad2d-28e6-4c94-995b-78b1e3c058b5", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/799dad2d-28e6-4c94-995b-78b1e3c058b5.png", "timestamp": "2024-02-15T20:32:33.695621+00:00"}}, {"id": "cde5d1a6-b0f9-4b95-8042-690b76c212d6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:47.745972+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, only a thin layer of water from the rain.", "snapshot": {"id": "799dad2d-28e6-4c94-995b-78b1e3c058b5", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/799dad2d-28e6-4c94-995b-78b1e3c058b5.png", "timestamp": "2024-02-15T20:32:33.695621+00:00"}}, {"id": "7c2a1c98-aae0-4ba1-bfbb-d514e334b0a7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:49.594858+00:00", "label": "free", "label_explanation": "The road is free of any obstructions or blockades, allowing vehicles to pass without difficulty.", "snapshot": {"id": "13ede890-ade5-4d2a-9771-f69e287f2b08", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/13ede890-ade5-4d2a-9771-f69e287f2b08.png", "timestamp": "2024-02-15T20:54:38.901176+00:00"}}, {"id": "daf99064-2b6d-4c13-a8d6-882b3c73b16c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:48.126636+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is not raining, and the road surface appears dry.", "snapshot": {"id": "13ede890-ade5-4d2a-9771-f69e287f2b08", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/13ede890-ade5-4d2a-9771-f69e287f2b08.png", "timestamp": "2024-02-15T20:54:38.901176+00:00"}}, {"id": "41bfac0b-b8cc-415f-88a3-6f75198d8322", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:47.914465+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no major distortions or data loss.", "snapshot": {"id": "13ede890-ade5-4d2a-9771-f69e287f2b08", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/13ede890-ade5-4d2a-9771-f69e287f2b08.png", "timestamp": "2024-02-15T20:54:38.901176+00:00"}}, {"id": "fb2e223a-5c4c-4bea-b973-cee1c73f6d8f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:48.337694+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "13ede890-ade5-4d2a-9771-f69e287f2b08", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/13ede890-ade5-4d2a-9771-f69e287f2b08.png", "timestamp": "2024-02-15T20:54:38.901176+00:00"}}, {"id": "8c8f236a-0a1d-416f-bf4e-dbcb51b0245c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:49.088421+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with multiple vehicles visible on the road. The vehicles are able to move without significant hindrance.", "snapshot": {"id": "13ede890-ade5-4d2a-9771-f69e287f2b08", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/13ede890-ade5-4d2a-9771-f69e287f2b08.png", "timestamp": "2024-02-15T20:54:38.901176+00:00"}}, {"id": "eaa355f9-45d2-4f61-b69e-b660511b993a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:48.691573+00:00", "label": "low", "label_explanation": "The road surface is dry with no signs of water accumulation.", "snapshot": {"id": "13ede890-ade5-4d2a-9771-f69e287f2b08", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/13ede890-ade5-4d2a-9771-f69e287f2b08.png", "timestamp": "2024-02-15T20:54:38.901176+00:00"}}, {"id": "b9fb35ca-0331-4f7f-8f25-0531b244d7fc", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.682439+00:00", "label": "free", "label_explanation": "The road is clear and free of any blockades or obstructions.", "snapshot": {"id": "d8568473-2fc2-4596-bb4b-e5dff39af7cc", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/d8568473-2fc2-4596-bb4b-e5dff39af7cc.png", "timestamp": "2024-02-15T20:52:12.813224+00:00"}}, {"id": "298c1068-a862-4732-b268-6a0c30e835be", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.967263+00:00", "label": "low", "label_explanation": "The road surface appears dry with no visible water accumulation.", "snapshot": {"id": "d8568473-2fc2-4596-bb4b-e5dff39af7cc", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/d8568473-2fc2-4596-bb4b-e5dff39af7cc.png", "timestamp": "2024-02-15T20:52:12.813224+00:00"}}, {"id": "248ca21e-347c-4ff5-bb03-8596125cef64", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.587339+00:00", "label": "false", "label_explanation": "While the image is not completely clear, there are no obvious signs of rain or wet road surfaces.", "snapshot": {"id": "d8568473-2fc2-4596-bb4b-e5dff39af7cc", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/d8568473-2fc2-4596-bb4b-e5dff39af7cc.png", "timestamp": "2024-02-15T20:52:12.813224+00:00"}}, {"id": "fe14e5d9-7b6f-43be-bfc5-8327012562dd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.225853+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. There are several people crossing the road at a crosswalk, and cars on the street.", "snapshot": {"id": "d8568473-2fc2-4596-bb4b-e5dff39af7cc", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/d8568473-2fc2-4596-bb4b-e5dff39af7cc.png", "timestamp": "2024-02-15T20:52:12.813224+00:00"}}, {"id": "95927028-5787-4df3-af30-e6fe618696bc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:23.019914+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no signs of data loss or corruption.", "snapshot": {"id": "d8568473-2fc2-4596-bb4b-e5dff39af7cc", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/d8568473-2fc2-4596-bb4b-e5dff39af7cc.png", "timestamp": "2024-02-15T20:52:12.813224+00:00"}}, {"id": "b802db5c-7d52-4981-acf5-d238be8e3044", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:24.367829+00:00", "label": "easy", "label_explanation": "The traffic flow seems moderate, with both cars and pedestrians using the road. There are no major obstructions or congestion observed.", "snapshot": {"id": "d8568473-2fc2-4596-bb4b-e5dff39af7cc", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/d8568473-2fc2-4596-bb4b-e5dff39af7cc.png", "timestamp": "2024-02-15T20:52:12.813224+00:00"}}, {"id": "66303007-1b72-4809-af33-855101f279c0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:00.819640+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few small puddles scattered around. These puddles do not pose a significant hindrance to traffic.", "snapshot": {"id": "7b993cfd-6842-4257-aeb8-bd9a59c30853", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/7b993cfd-6842-4257-aeb8-bd9a59c30853.png", "timestamp": "2024-02-15T20:49:49.579270+00:00"}}, {"id": "af12b5e4-8f7f-4f38-ad31-2f9b92c78cce", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:00.428889+00:00", "label": "true", "label_explanation": "Although it is not raining at the moment, there are some small puddles on the road surface, indicating recent rainfall.", "snapshot": {"id": "7b993cfd-6842-4257-aeb8-bd9a59c30853", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/7b993cfd-6842-4257-aeb8-bd9a59c30853.png", "timestamp": "2024-02-15T20:49:49.579270+00:00"}}, {"id": "9ddc9d04-e420-4642-a559-656300e57418", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:49:59.971822+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no major distortions or data loss.", "snapshot": {"id": "7b993cfd-6842-4257-aeb8-bd9a59c30853", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/7b993cfd-6842-4257-aeb8-bd9a59c30853.png", "timestamp": "2024-02-15T20:49:49.579270+00:00"}}, {"id": "08e95e78-0cbd-461d-8c15-5fd99d19031e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:01.046750+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed. Vehicles are able to navigate the road without difficulty.", "snapshot": {"id": "7b993cfd-6842-4257-aeb8-bd9a59c30853", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/7b993cfd-6842-4257-aeb8-bd9a59c30853.png", "timestamp": "2024-02-15T20:49:49.579270+00:00"}}, {"id": "888a168e-bf37-4f29-9031-929d7d789673", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:00.225793+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is not raining, and the road surface is mostly dry.", "snapshot": {"id": "7b993cfd-6842-4257-aeb8-bd9a59c30853", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/7b993cfd-6842-4257-aeb8-bd9a59c30853.png", "timestamp": "2024-02-15T20:49:49.579270+00:00"}}, {"id": "cd7100df-8cff-436a-ae84-5aec09ff2d8a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:01.378559+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "7b993cfd-6842-4257-aeb8-bd9a59c30853", "camera_id": "001478", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001478/7b993cfd-6842-4257-aeb8-bd9a59c30853.png", "timestamp": "2024-02-15T20:49:49.579270+00:00"}}]}, {"id": "001556", "name": "AV. PRES. VARGAS, 3107 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909763, "longitude": -43.204178, "objects": ["road_blockade", "image_corrupted", "water_level", "rain", "traffic", "image_description"], "identifications": [{"id": "159011bf-23d7-404c-92cd-0c3f7def15c8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.273506+00:00", "label": "free", "label_explanation": "There is a construction fence along the sidewalk, but it does not obstruct the road or impede traffic flow.", "snapshot": {"id": "3f902f92-1e37-404f-8f71-d6050f4635df", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/3f902f92-1e37-404f-8f71-d6050f4635df.png", "timestamp": "2024-02-15T20:30:09.113473+00:00"}}, {"id": "fcdb6b70-5225-41db-8d9e-efa895c58d7e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.954822+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet conditions. There are no major obstructions or blockages on the road.", "snapshot": {"id": "3f902f92-1e37-404f-8f71-d6050f4635df", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/3f902f92-1e37-404f-8f71-d6050f4635df.png", "timestamp": "2024-02-15T20:30:09.113473+00:00"}}, {"id": "1c54f775-e897-48c9-8cd1-45dea1ec8666", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.690292+00:00", "label": "low", "label_explanation": "The water appears to be shallow and does not cover the entire road surface. There are no significant puddles or areas where the water is deep enough to cause a hazard.", "snapshot": {"id": "3f902f92-1e37-404f-8f71-d6050f4635df", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/3f902f92-1e37-404f-8f71-d6050f4635df.png", "timestamp": "2024-02-15T20:30:09.113473+00:00"}}, {"id": "500b0b57-8d35-435b-8f89-4aff2939dd9b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.131750+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining.", "snapshot": {"id": "3f902f92-1e37-404f-8f71-d6050f4635df", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/3f902f92-1e37-404f-8f71-d6050f4635df.png", "timestamp": "2024-02-15T20:30:09.113473+00:00"}}, {"id": "9ebc4c91-2e4d-41e8-aacd-ea586297a228", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.391349+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3f902f92-1e37-404f-8f71-d6050f4635df", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/3f902f92-1e37-404f-8f71-d6050f4635df.png", "timestamp": "2024-02-15T20:30:09.113473+00:00"}}, {"id": "53c8d40d-c705-4fee-918d-5c10004191fb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.848082+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a partial view of a building on the left, a construction fence along the sidewalk, and a street with vehicles in the background. The weather appears to be overcast, and the street is wet from recent rain.", "snapshot": {"id": "3f902f92-1e37-404f-8f71-d6050f4635df", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/3f902f92-1e37-404f-8f71-d6050f4635df.png", "timestamp": "2024-02-15T20:30:09.113473+00:00"}}, {"id": "f5f06dd5-2056-4e9d-a251-96086b76e32c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.472244+00:00", "label": "easy", "label_explanation": "The traffic appears to be flowing smoothly, with no major congestion or disruptions. Vehicles are able to navigate the wet road without difficulty.", "snapshot": {"id": "a1a9997b-da28-4c42-9483-2d224b0f8236", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a1a9997b-da28-4c42-9483-2d224b0f8236.png", "timestamp": "2024-02-15T20:45:02.156911+00:00"}}, {"id": "2de0c69d-9d40-4a1a-bb2d-27d6db5821e9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.750439+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions on the street. The construction fence along the sidewalk does not impede traffic flow.", "snapshot": {"id": "a1a9997b-da28-4c42-9483-2d224b0f8236", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a1a9997b-da28-4c42-9483-2d224b0f8236.png", "timestamp": "2024-02-15T20:45:02.156911+00:00"}}, {"id": "9353f3a3-d7be-4049-9825-a4390bb7539f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.012853+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a partial view of a building on the left, a construction fence along the sidewalk, and a street with parked vehicles on the right. The weather appears cloudy, and the street is wet from recent rain.", "snapshot": {"id": "a1a9997b-da28-4c42-9483-2d224b0f8236", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a1a9997b-da28-4c42-9483-2d224b0f8236.png", "timestamp": "2024-02-15T20:45:02.156911+00:00"}}, {"id": "25d5058c-29de-4690-9250-ed7320a49bdf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.747013+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a1a9997b-da28-4c42-9483-2d224b0f8236", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a1a9997b-da28-4c42-9483-2d224b0f8236.png", "timestamp": "2024-02-15T20:45:02.156911+00:00"}}, {"id": "9f026aa6-d28d-461f-8526-fde0bed3ecad", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.149292+00:00", "label": "low", "label_explanation": "The water level on the street is low, with only small puddles visible. The majority of the street surface is dry.", "snapshot": {"id": "a1a9997b-da28-4c42-9483-2d224b0f8236", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a1a9997b-da28-4c42-9483-2d224b0f8236.png", "timestamp": "2024-02-15T20:45:02.156911+00:00"}}, {"id": "eb6cdca5-99f5-4aee-a67a-bd77380203ae", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.312611+00:00", "label": "true", "label_explanation": "The presence of water on the street indicates that it has been raining recently. The water is not deep and does not appear to be causing any significant traffic disruptions.", "snapshot": {"id": "a1a9997b-da28-4c42-9483-2d224b0f8236", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a1a9997b-da28-4c42-9483-2d224b0f8236.png", "timestamp": "2024-02-15T20:45:02.156911+00:00"}}, {"id": "a857a501-59b5-41e8-b016-7c84e17198b5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.485830+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "8d99f6e1-c86e-4c2b-be17-169305709ad1", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/8d99f6e1-c86e-4c2b-be17-169305709ad1.png", "timestamp": "2024-02-15T20:47:25.925039+00:00"}}, {"id": "78e7235e-3941-4dc9-8361-339c0a836742", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.687348+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions. Traffic is flowing smoothly in both directions.", "snapshot": {"id": "8d99f6e1-c86e-4c2b-be17-169305709ad1", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/8d99f6e1-c86e-4c2b-be17-169305709ad1.png", "timestamp": "2024-02-15T20:47:25.925039+00:00"}}, {"id": "1131c866-d06d-4f90-9381-daf12e242218", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.145813+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "8d99f6e1-c86e-4c2b-be17-169305709ad1", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/8d99f6e1-c86e-4c2b-be17-169305709ad1.png", "timestamp": "2024-02-15T20:47:25.925039+00:00"}}, {"id": "4248a956-a4c6-480f-882b-028c9607963f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.038834+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is completely clear.", "snapshot": {"id": "8d99f6e1-c86e-4c2b-be17-169305709ad1", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/8d99f6e1-c86e-4c2b-be17-169305709ad1.png", "timestamp": "2024-02-15T20:47:25.925039+00:00"}}, {"id": "73a6040b-9d28-400a-91ab-70121379c1dc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.550436+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8d99f6e1-c86e-4c2b-be17-169305709ad1", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/8d99f6e1-c86e-4c2b-be17-169305709ad1.png", "timestamp": "2024-02-15T20:47:25.925039+00:00"}}, {"id": "fd278553-ac9b-42bc-9994-60d46e00144f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.788754+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, paved road with a gray fence on one side and buildings on the other. There are several cars parked along the road, and the weather appears to be clear.", "snapshot": {"id": "8d99f6e1-c86e-4c2b-be17-169305709ad1", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/8d99f6e1-c86e-4c2b-be17-169305709ad1.png", "timestamp": "2024-02-15T20:47:25.925039+00:00"}}, {"id": "434f2f6a-a9cd-4698-b83e-48b2e9566d89", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.277204+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a partial view of a building on the left and a street on the right. The street is wet from recent rain, and there are a few parked cars on the side of the road. The sidewalk on the left is partially blocked by a metal fence.", "snapshot": {"id": "77e0996a-f7c6-4b4a-98f0-05101db93eb2", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/77e0996a-f7c6-4b4a-98f0-05101db93eb2.png", "timestamp": "2024-02-15T20:35:09.948989+00:00"}}, {"id": "9bb844f3-3aa6-40eb-9291-61460de3d37e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.608887+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "77e0996a-f7c6-4b4a-98f0-05101db93eb2", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/77e0996a-f7c6-4b4a-98f0-05101db93eb2.png", "timestamp": "2024-02-15T20:35:09.948989+00:00"}}, {"id": "78a1a15c-1d09-4ee5-8c13-2ad74b11f9b1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:26.291523+00:00", "label": "partially", "label_explanation": "The sidewalk on the left is partially blocked by a metal fence. The fence is about 2 meters high and extends for about 10 meters along the sidewalk. There is a small gap in the fence, but it is not wide enough for a person to pass through.", "snapshot": {"id": "77e0996a-f7c6-4b4a-98f0-05101db93eb2", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/77e0996a-f7c6-4b4a-98f0-05101db93eb2.png", "timestamp": "2024-02-15T20:35:09.948989+00:00"}}, {"id": "2f503dbc-9289-4d81-9010-996ab6c0725c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.764031+00:00", "label": "easy", "label_explanation": "There is no traffic visible on the street, likely due to the recent rain. There are a few parked cars on the side of the road, but no moving vehicles.", "snapshot": {"id": "77e0996a-f7c6-4b4a-98f0-05101db93eb2", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/77e0996a-f7c6-4b4a-98f0-05101db93eb2.png", "timestamp": "2024-02-15T20:35:09.948989+00:00"}}, {"id": "0c0249e3-ef4e-45c0-8801-35dc51ffabbe", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.264152+00:00", "label": "low", "label_explanation": "The water level on the street is low, with only a few small puddles. The sidewalk is also dry, with no standing water.", "snapshot": {"id": "77e0996a-f7c6-4b4a-98f0-05101db93eb2", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/77e0996a-f7c6-4b4a-98f0-05101db93eb2.png", "timestamp": "2024-02-15T20:35:09.948989+00:00"}}, {"id": "01c648b9-c67a-46a8-9985-7ac52cecbeb2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.736611+00:00", "label": "true", "label_explanation": "The street is wet, and there are small puddles of water on the sidewalk. The rain is likely to have stopped recently, as the water is not actively falling.", "snapshot": {"id": "77e0996a-f7c6-4b4a-98f0-05101db93eb2", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/77e0996a-f7c6-4b4a-98f0-05101db93eb2.png", "timestamp": "2024-02-15T20:35:09.948989+00:00"}}, {"id": "b440112b-5574-45bd-86fd-2808955d6844", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.286177+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street and surrounding buildings. It is daytime, and the weather appears to be clear, with no visible rain or significant water on the road surface.", "snapshot": {"id": "a4c5ce74-acbb-478c-8bfc-123fd9032b44", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a4c5ce74-acbb-478c-8bfc-123fd9032b44.png", "timestamp": "2024-02-15T20:37:38.875141+00:00"}}, {"id": "c662c789-c550-4abc-b0bb-4873c9988320", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.925911+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a4c5ce74-acbb-478c-8bfc-123fd9032b44", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a4c5ce74-acbb-478c-8bfc-123fd9032b44.png", "timestamp": "2024-02-15T20:37:38.875141+00:00"}}, {"id": "a0591eea-420a-4bcc-aa26-0c4826435b9e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.568998+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles scattered around. These puddles do not appear to be causing any significant hindrance to traffic.", "snapshot": {"id": "a4c5ce74-acbb-478c-8bfc-123fd9032b44", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a4c5ce74-acbb-478c-8bfc-123fd9032b44.png", "timestamp": "2024-02-15T20:37:38.875141+00:00"}}, {"id": "79bf395e-5f4b-4dd6-aaaa-f6df25fb81cc", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.217881+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely without any impediments.", "snapshot": {"id": "a4c5ce74-acbb-478c-8bfc-123fd9032b44", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a4c5ce74-acbb-478c-8bfc-123fd9032b44.png", "timestamp": "2024-02-15T20:37:38.875141+00:00"}}, {"id": "35c852e5-4bd1-4ccf-8b66-58cbc44fd20d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:57.343527+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be smooth, with no major congestion or disruptions observed. Vehicles are able to navigate the road without difficulty.", "snapshot": {"id": "a4c5ce74-acbb-478c-8bfc-123fd9032b44", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a4c5ce74-acbb-478c-8bfc-123fd9032b44.png", "timestamp": "2024-02-15T20:37:38.875141+00:00"}}, {"id": "de8b85c2-ef50-4512-8e19-7c9b887c0d17", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.191537+00:00", "label": "true", "label_explanation": "While there is no active rain visible in the image, there are small puddles of water on the road surface, indicating that it may have rained recently.", "snapshot": {"id": "a4c5ce74-acbb-478c-8bfc-123fd9032b44", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/a4c5ce74-acbb-478c-8bfc-123fd9032b44.png", "timestamp": "2024-02-15T20:37:38.875141+00:00"}}, {"id": "cb7ad55c-dc64-471b-b35e-8b4cd4134035", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.928891+00:00", "label": "null", "label_explanation": "The image shows a wet road with a few cars on it. There is a fence on the left side of the image and a building on the right side.", "snapshot": {"id": "b5850501-25fb-4a7f-880d-e2f6e71ae68e", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/b5850501-25fb-4a7f-880d-e2f6e71ae68e.png", "timestamp": "2024-02-15T20:40:11.601642+00:00"}}, {"id": "ad6c0790-2877-4758-9b11-a6a45aa0d9f0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.019439+00:00", "label": "easy", "label_explanation": "The traffic is light, with a few cars on the road.", "snapshot": {"id": "b5850501-25fb-4a7f-880d-e2f6e71ae68e", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/b5850501-25fb-4a7f-880d-e2f6e71ae68e.png", "timestamp": "2024-02-15T20:40:11.601642+00:00"}}, {"id": "668ff45e-efbf-43b8-b19d-ffd26444e85c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:28.593412+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "b5850501-25fb-4a7f-880d-e2f6e71ae68e", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/b5850501-25fb-4a7f-880d-e2f6e71ae68e.png", "timestamp": "2024-02-15T20:40:11.601642+00:00"}}, {"id": "21326de9-9476-4456-aec0-3ff7001f0c8d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.648293+00:00", "label": "free", "label_explanation": "There are no road blockades.", "snapshot": {"id": "b5850501-25fb-4a7f-880d-e2f6e71ae68e", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/b5850501-25fb-4a7f-880d-e2f6e71ae68e.png", "timestamp": "2024-02-15T20:40:11.601642+00:00"}}, {"id": "4c104e1e-e475-4a87-9a87-3493a846ed15", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.090979+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "b5850501-25fb-4a7f-880d-e2f6e71ae68e", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/b5850501-25fb-4a7f-880d-e2f6e71ae68e.png", "timestamp": "2024-02-15T20:40:11.601642+00:00"}}, {"id": "77b4d21d-1de7-493f-bb81-a9b7afe6ab3d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:27.568227+00:00", "label": "true", "label_explanation": "The road is wet, but there is no standing water.", "snapshot": {"id": "b5850501-25fb-4a7f-880d-e2f6e71ae68e", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/b5850501-25fb-4a7f-880d-e2f6e71ae68e.png", "timestamp": "2024-02-15T20:40:11.601642+00:00"}}, {"id": "131691a9-2dd0-4eba-947b-430b1d93efb9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.142021+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "cd32d4d9-3e8f-4e48-afab-5dce3ad332c3", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/cd32d4d9-3e8f-4e48-afab-5dce3ad332c3.png", "timestamp": "2024-02-15T20:42:39.822493+00:00"}}, {"id": "6896526a-7bbd-4fd1-b127-16486792295e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.818750+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "cd32d4d9-3e8f-4e48-afab-5dce3ad332c3", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/cd32d4d9-3e8f-4e48-afab-5dce3ad332c3.png", "timestamp": "2024-02-15T20:42:39.822493+00:00"}}, {"id": "00d1b018-a8e6-4e10-a0b3-ceb439fe2dcd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.607861+00:00", "label": "easy", "label_explanation": "The bus is driving smoothly, and there are no visible traffic obstructions.", "snapshot": {"id": "cd32d4d9-3e8f-4e48-afab-5dce3ad332c3", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/cd32d4d9-3e8f-4e48-afab-5dce3ad332c3.png", "timestamp": "2024-02-15T20:42:39.822493+00:00"}}, {"id": "79cc2169-f43e-4a00-991f-280a38b050b1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.872983+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a bus driving on the rightmost lane, parallel to a sidewalk on the left. The sidewalk has a metal fence and some vegetation. There are buildings in the background.", "snapshot": {"id": "cd32d4d9-3e8f-4e48-afab-5dce3ad332c3", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/cd32d4d9-3e8f-4e48-afab-5dce3ad332c3.png", "timestamp": "2024-02-15T20:42:39.822493+00:00"}}, {"id": "77932b12-80ca-4b88-b69d-5565625733f3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:50.527314+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cd32d4d9-3e8f-4e48-afab-5dce3ad332c3", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/cd32d4d9-3e8f-4e48-afab-5dce3ad332c3.png", "timestamp": "2024-02-15T20:42:39.822493+00:00"}}, {"id": "56de1098-0b26-4ead-9a64-5ded799d665f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.399140+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "cd32d4d9-3e8f-4e48-afab-5dce3ad332c3", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/cd32d4d9-3e8f-4e48-afab-5dce3ad332c3.png", "timestamp": "2024-02-15T20:42:39.822493+00:00"}}, {"id": "da0d9f96-3578-489d-8610-de1846af02ed", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.147223+00:00", "label": "free", "label_explanation": "There is no road blockade.", "snapshot": {"id": "d4003b29-f4d9-4924-8d79-bd9dd3d97645", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d4003b29-f4d9-4924-8d79-bd9dd3d97645.png", "timestamp": "2024-02-15T20:32:35.048293+00:00"}}, {"id": "8ba08a1d-c6c9-4d75-b569-54e540b12d2a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.932800+00:00", "label": "true", "label_explanation": "The road is wet, and there are no signs of water on the road.", "snapshot": {"id": "d4003b29-f4d9-4924-8d79-bd9dd3d97645", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d4003b29-f4d9-4924-8d79-bd9dd3d97645.png", "timestamp": "2024-02-15T20:32:35.048293+00:00"}}, {"id": "19c9bb3a-39d8-41ca-b44c-fef828a2a292", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.514885+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d4003b29-f4d9-4924-8d79-bd9dd3d97645", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d4003b29-f4d9-4924-8d79-bd9dd3d97645.png", "timestamp": "2024-02-15T20:32:35.048293+00:00"}}, {"id": "a8468a90-c5b6-4eab-adaa-52b7c332a5f2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:55.323632+00:00", "label": "easy", "label_explanation": "There are a few cars on the road, and the traffic is moving smoothly.", "snapshot": {"id": "d4003b29-f4d9-4924-8d79-bd9dd3d97645", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d4003b29-f4d9-4924-8d79-bd9dd3d97645.png", "timestamp": "2024-02-15T20:32:35.048293+00:00"}}, {"id": "33e9a747-bd99-4c58-86d2-c8a096024cc8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:54.602841+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "d4003b29-f4d9-4924-8d79-bd9dd3d97645", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d4003b29-f4d9-4924-8d79-bd9dd3d97645.png", "timestamp": "2024-02-15T20:32:35.048293+00:00"}}, {"id": "3613d05b-a2d5-48ee-af95-814fabb668c9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.351859+00:00", "label": "null", "label_explanation": "The image shows a wet road with a few cars on it. There is a fence on the left side of the road and a building on the right side.", "snapshot": {"id": "d4003b29-f4d9-4924-8d79-bd9dd3d97645", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d4003b29-f4d9-4924-8d79-bd9dd3d97645.png", "timestamp": "2024-02-15T20:32:35.048293+00:00"}}, {"id": "d44436d9-beff-4e9f-acc6-de6a7765b932", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.101361+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The entire road surface is accessible to traffic.", "snapshot": {"id": "07443d03-231c-4cd8-8844-5b71563ed695", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/07443d03-231c-4cd8-8844-5b71563ed695.png", "timestamp": "2024-02-15T20:54:42.214177+00:00"}}, {"id": "99fa3ffc-baf2-4d6b-93b7-fc504cbaeac2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.775385+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with cars and buses moving at a steady pace. There are no major obstructions or congestion visible in the image.", "snapshot": {"id": "07443d03-231c-4cd8-8844-5b71563ed695", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/07443d03-231c-4cd8-8844-5b71563ed695.png", "timestamp": "2024-02-15T20:54:42.214177+00:00"}}, {"id": "d7999e51-a001-422c-9333-9c2c1608a440", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.453543+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a partial view of a building on the left, a construction fence along the sidewalk, and a street with cars and buses in the background. The weather appears overcast, and the street is wet from recent rain.", "snapshot": {"id": "07443d03-231c-4cd8-8844-5b71563ed695", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/07443d03-231c-4cd8-8844-5b71563ed695.png", "timestamp": "2024-02-15T20:54:42.214177+00:00"}}, {"id": "882b86f9-663a-4e2f-8b45-a77b0c8ce726", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.651034+00:00", "label": "true", "label_explanation": "The presence of rain is indicated by the wet road surface and the rain drops visible on the windshield of the bus in the background.", "snapshot": {"id": "07443d03-231c-4cd8-8844-5b71563ed695", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/07443d03-231c-4cd8-8844-5b71563ed695.png", "timestamp": "2024-02-15T20:54:42.214177+00:00"}}, {"id": "27914e33-b1b1-45a8-b890-5a3dbf7f1b51", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.307338+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles visible in some areas. The majority of the road surface is dry.", "snapshot": {"id": "07443d03-231c-4cd8-8844-5b71563ed695", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/07443d03-231c-4cd8-8844-5b71563ed695.png", "timestamp": "2024-02-15T20:54:42.214177+00:00"}}, {"id": "99571d0c-0bd8-4f05-a25c-60da4d0386fa", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.794085+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "07443d03-231c-4cd8-8844-5b71563ed695", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/07443d03-231c-4cd8-8844-5b71563ed695.png", "timestamp": "2024-02-15T20:54:42.214177+00:00"}}, {"id": "14c07056-fe16-4198-a221-496a80621273", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.229309+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, but the road is wet from the rain.", "snapshot": {"id": "bfc0d821-1728-4708-8591-565ad47cc92b", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/bfc0d821-1728-4708-8591-565ad47cc92b.png", "timestamp": "2024-02-15T20:49:51.721218+00:00"}}, {"id": "c4093f25-b183-4162-a3c9-93011c072a15", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.554235+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "bfc0d821-1728-4708-8591-565ad47cc92b", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/bfc0d821-1728-4708-8591-565ad47cc92b.png", "timestamp": "2024-02-15T20:49:51.721218+00:00"}}, {"id": "2f9eb652-00e5-4067-b0b4-33417eec8a52", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.501172+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and a wide road on the right. It is daytime and the weather appears to be cloudy and rainy. There are several vehicles on the road, including cars, buses, and motorcycles.", "snapshot": {"id": "bfc0d821-1728-4708-8591-565ad47cc92b", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/bfc0d821-1728-4708-8591-565ad47cc92b.png", "timestamp": "2024-02-15T20:49:51.721218+00:00"}}, {"id": "f1f20e72-6ad1-42ed-ae3a-238666b67417", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.287213+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bfc0d821-1728-4708-8591-565ad47cc92b", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/bfc0d821-1728-4708-8591-565ad47cc92b.png", "timestamp": "2024-02-15T20:49:51.721218+00:00"}}, {"id": "9fc8febb-7004-4e75-8a7a-ef3c24875105", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.866193+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "bfc0d821-1728-4708-8591-565ad47cc92b", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/bfc0d821-1728-4708-8591-565ad47cc92b.png", "timestamp": "2024-02-15T20:49:51.721218+00:00"}}, {"id": "31a142e7-66f2-4601-b065-0e86f3425de3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.825537+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "bfc0d821-1728-4708-8591-565ad47cc92b", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/bfc0d821-1728-4708-8591-565ad47cc92b.png", "timestamp": "2024-02-15T20:49:51.721218+00:00"}}, {"id": "f8fd2ff9-b26b-4d3a-bed2-ee4ac78d6155", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.967356+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are several small puddles, indicating that it has been raining recently.", "snapshot": {"id": "d3bcc134-9c9e-4b90-9224-e1ee02c7c51a", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d3bcc134-9c9e-4b90-9224-e1ee02c7c51a.png", "timestamp": "2024-02-15T20:52:13.790137+00:00"}}, {"id": "6c5e8868-7400-49e5-ba8e-1002be82244b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.247937+00:00", "label": "partially", "label_explanation": "The road is partially blocked by a construction zone. The metal fence and caution tape indicate that there is work being done on the road, and vehicles need to proceed with caution.", "snapshot": {"id": "d3bcc134-9c9e-4b90-9224-e1ee02c7c51a", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d3bcc134-9c9e-4b90-9224-e1ee02c7c51a.png", "timestamp": "2024-02-15T20:52:13.790137+00:00"}}, {"id": "d7f3d29c-e209-4d6e-8d46-64c149b31ffc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.586474+00:00", "label": "moderate", "label_explanation": "There is moderate traffic on the road, with cars and buses moving in both directions. The traffic is slowed down slightly by the wet road conditions and the construction zone.", "snapshot": {"id": "d3bcc134-9c9e-4b90-9224-e1ee02c7c51a", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d3bcc134-9c9e-4b90-9224-e1ee02c7c51a.png", "timestamp": "2024-02-15T20:52:13.790137+00:00"}}, {"id": "e4e0e9a5-c1f2-4f7a-adfa-0996a1f034fa", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.252353+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The road is still passable for vehicles.", "snapshot": {"id": "d3bcc134-9c9e-4b90-9224-e1ee02c7c51a", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d3bcc134-9c9e-4b90-9224-e1ee02c7c51a.png", "timestamp": "2024-02-15T20:52:13.790137+00:00"}}, {"id": "2ec25d86-69d7-4a49-bbe4-b322650893bb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.497912+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d3bcc134-9c9e-4b90-9224-e1ee02c7c51a", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d3bcc134-9c9e-4b90-9224-e1ee02c7c51a.png", "timestamp": "2024-02-15T20:52:13.790137+00:00"}}, {"id": "8bf44587-905b-4c0e-b22a-183865a3452f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.723509+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. On the left side of the image, there is a grey building with a glass door and a small garden area with a tree. The road is to the right of the building, separated by a metal fence. The road surface is wet from recent rain, and there are several small puddles. There is moderate traffic on the road, with cars and buses moving in both directions. The road is partially blocked by a construction zone, with a metal fence and caution tape. There are no visible signs of flooding or other hazards.", "snapshot": {"id": "d3bcc134-9c9e-4b90-9224-e1ee02c7c51a", "camera_id": "001556", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001556/d3bcc134-9c9e-4b90-9224-e1ee02c7c51a.png", "timestamp": "2024-02-15T20:52:13.790137+00:00"}}]}, {"id": "000010", "name": "RUA SANTANA X RUA FREI CANECA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911155, "longitude": -43.193351, "objects": ["image_description", "traffic", "road_blockade", "water_level", "rain", "image_corrupted"], "identifications": [{"id": "1ef7df48-7aaf-47b5-a2b4-979e0b8b0b87", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.632319+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. Traffic is able to flow freely in both directions.", "snapshot": {"id": "de544682-39e9-4478-af07-f5d37002dc61", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/de544682-39e9-4478-af07-f5d37002dc61.png", "timestamp": "2024-02-15T20:30:18.864679+00:00"}}, {"id": "1495538a-cef3-4b1b-8965-e33731670621", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.446077+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy, with some light reflecting on the wet road surface. There are several vehicles on the road, including cars, buses, and motorcycles. The road is lined with buildings and trees, and there are traffic lights and signs visible.", "snapshot": {"id": "de544682-39e9-4478-af07-f5d37002dc61", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/de544682-39e9-4478-af07-f5d37002dc61.png", "timestamp": "2024-02-15T20:30:18.864679+00:00"}}, {"id": "b088125b-152b-45ad-8a78-6aee894ca380", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.172557+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "de544682-39e9-4478-af07-f5d37002dc61", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/de544682-39e9-4478-af07-f5d37002dc61.png", "timestamp": "2024-02-15T20:30:18.864679+00:00"}}, {"id": "6dc0d55c-df73-4636-a06e-768e12d47fe0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.030502+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions. The water is mostly confined to the left side of the road, near the curb.", "snapshot": {"id": "de544682-39e9-4478-af07-f5d37002dc61", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/de544682-39e9-4478-af07-f5d37002dc61.png", "timestamp": "2024-02-15T20:30:18.864679+00:00"}}, {"id": "c51e1cbe-66bb-46da-9c03-6c3995ee7377", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.712174+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently raining.", "snapshot": {"id": "de544682-39e9-4478-af07-f5d37002dc61", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/de544682-39e9-4478-af07-f5d37002dc61.png", "timestamp": "2024-02-15T20:30:18.864679+00:00"}}, {"id": "e4804da7-768d-4072-8956-9e60cee83d44", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.402701+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "de544682-39e9-4478-af07-f5d37002dc61", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/de544682-39e9-4478-af07-f5d37002dc61.png", "timestamp": "2024-02-15T20:30:18.864679+00:00"}}, {"id": "e8d935e4-a909-4535-a586-d17fecfd2c47", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:05.700860+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "d5cc0348-de4a-45cf-a20b-d517198f3512", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/d5cc0348-de4a-45cf-a20b-d517198f3512.png", "timestamp": "2024-02-15T20:32:45.591191+00:00"}}, {"id": "5e0c950d-8d43-4539-a8d1-f46460c89794", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:04.540130+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "d5cc0348-de4a-45cf-a20b-d517198f3512", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/d5cc0348-de4a-45cf-a20b-d517198f3512.png", "timestamp": "2024-02-15T20:32:45.591191+00:00"}}, {"id": "0d376981-0fa2-4a91-9d5e-06ae2685a51c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:04.997626+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "d5cc0348-de4a-45cf-a20b-d517198f3512", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/d5cc0348-de4a-45cf-a20b-d517198f3512.png", "timestamp": "2024-02-15T20:32:45.591191+00:00"}}, {"id": "9d04afd9-0f6a-49e5-ad3a-c767b67af9c2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:04.205725+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d5cc0348-de4a-45cf-a20b-d517198f3512", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/d5cc0348-de4a-45cf-a20b-d517198f3512.png", "timestamp": "2024-02-15T20:32:45.591191+00:00"}}, {"id": "7fd6fc65-0d44-4225-b495-ba01b06509ad", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:03.709207+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and people.", "snapshot": {"id": "d5cc0348-de4a-45cf-a20b-d517198f3512", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/d5cc0348-de4a-45cf-a20b-d517198f3512.png", "timestamp": "2024-02-15T20:32:45.591191+00:00"}}, {"id": "14fce4fe-590a-4d7d-8cce-79637d969282", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:03.068816+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d5cc0348-de4a-45cf-a20b-d517198f3512", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/d5cc0348-de4a-45cf-a20b-d517198f3512.png", "timestamp": "2024-02-15T20:32:45.591191+00:00"}}, {"id": "ea2c2f78-0947-4461-b5f3-0d486fcb78aa", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.740225+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "5baed940-febd-4e1b-98d2-dfa4d51063b5", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5baed940-febd-4e1b-98d2-dfa4d51063b5.png", "timestamp": "2024-02-15T20:45:11.383090+00:00"}}, {"id": "08c63272-fc14-4d10-ad20-459a9c2b52dd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.018554+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades visible on the road. Traffic is flowing freely in all directions.", "snapshot": {"id": "5baed940-febd-4e1b-98d2-dfa4d51063b5", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5baed940-febd-4e1b-98d2-dfa4d51063b5.png", "timestamp": "2024-02-15T20:45:11.383090+00:00"}}, {"id": "f5eb5735-7fba-4938-bd24-cbbe6ec04257", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.591613+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "5baed940-febd-4e1b-98d2-dfa4d51063b5", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5baed940-febd-4e1b-98d2-dfa4d51063b5.png", "timestamp": "2024-02-15T20:45:11.383090+00:00"}}, {"id": "578a11d5-6209-4b72-aedd-1a278bd6f814", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.235956+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "5baed940-febd-4e1b-98d2-dfa4d51063b5", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5baed940-febd-4e1b-98d2-dfa4d51063b5.png", "timestamp": "2024-02-15T20:45:11.383090+00:00"}}, {"id": "d4d78660-cdc8-4f62-9e60-aede5f6e7825", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.516977+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "5baed940-febd-4e1b-98d2-dfa4d51063b5", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5baed940-febd-4e1b-98d2-dfa4d51063b5.png", "timestamp": "2024-02-15T20:45:11.383090+00:00"}}, {"id": "61285117-6cdb-4eda-802d-2c7c6f1e5ede", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.317925+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5baed940-febd-4e1b-98d2-dfa4d51063b5", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5baed940-febd-4e1b-98d2-dfa4d51063b5.png", "timestamp": "2024-02-15T20:45:11.383090+00:00"}}, {"id": "f969bf7c-6659-4142-bcd6-a2dff6d6557a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.053564+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "9ddeb8f0-3097-4488-a5b4-792070000a72", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/9ddeb8f0-3097-4488-a5b4-792070000a72.png", "timestamp": "2024-02-15T20:35:17.421135+00:00"}}, {"id": "fb34712b-a10d-48ff-b2b3-233f44183c76", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.915908+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "9ddeb8f0-3097-4488-a5b4-792070000a72", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/9ddeb8f0-3097-4488-a5b4-792070000a72.png", "timestamp": "2024-02-15T20:35:17.421135+00:00"}}, {"id": "94603423-3fdc-4fef-8271-e14d81f4b3f6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:32.979762+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "9ddeb8f0-3097-4488-a5b4-792070000a72", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/9ddeb8f0-3097-4488-a5b4-792070000a72.png", "timestamp": "2024-02-15T20:35:17.421135+00:00"}}, {"id": "6c5f1ddb-ebc9-4db3-903e-4dddb5d00ae2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:34.595480+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "9ddeb8f0-3097-4488-a5b4-792070000a72", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/9ddeb8f0-3097-4488-a5b4-792070000a72.png", "timestamp": "2024-02-15T20:35:17.421135+00:00"}}, {"id": "83431691-2590-4aaa-983b-2d3d741566ad", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.284139+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "9ddeb8f0-3097-4488-a5b4-792070000a72", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/9ddeb8f0-3097-4488-a5b4-792070000a72.png", "timestamp": "2024-02-15T20:35:17.421135+00:00"}}, {"id": "2e3a17ff-2453-4012-9812-1847a4dd6c8c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:32.356182+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9ddeb8f0-3097-4488-a5b4-792070000a72", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/9ddeb8f0-3097-4488-a5b4-792070000a72.png", "timestamp": "2024-02-15T20:35:17.421135+00:00"}}, {"id": "60734d51-5f3d-4d3b-bd72-9d375453637a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:06.253469+00:00", "label": "easy", "label_explanation": "The traffic appears to be moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "55a9eca4-f8ef-426b-90dc-90a0e6a2d115", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/55a9eca4-f8ef-426b-90dc-90a0e6a2d115.png", "timestamp": "2024-02-15T20:37:49.552368+00:00"}}, {"id": "24b455a6-8441-47ec-ac75-7df7d88312d8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:05.632211+00:00", "label": "low", "label_explanation": "While the road is wet due to rain, there are no significant puddles or water accumulation observed.", "snapshot": {"id": "55a9eca4-f8ef-426b-90dc-90a0e6a2d115", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/55a9eca4-f8ef-426b-90dc-90a0e6a2d115.png", "timestamp": "2024-02-15T20:37:49.552368+00:00"}}, {"id": "36ccfa7e-4a62-4dcd-b400-d30893c5f97c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:03.872016+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "55a9eca4-f8ef-426b-90dc-90a0e6a2d115", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/55a9eca4-f8ef-426b-90dc-90a0e6a2d115.png", "timestamp": "2024-02-15T20:37:49.552368+00:00"}}, {"id": "3cb054ba-16a6-4d40-9967-099861e17075", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:06.523971+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "55a9eca4-f8ef-426b-90dc-90a0e6a2d115", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/55a9eca4-f8ef-426b-90dc-90a0e6a2d115.png", "timestamp": "2024-02-15T20:37:49.552368+00:00"}}, {"id": "db36b436-b6b1-4a00-a345-3ed7bc101e9e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:04.509767+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road surface is wet. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, walking on the sidewalks and crossing the street. The road is lined with buildings and trees.", "snapshot": {"id": "55a9eca4-f8ef-426b-90dc-90a0e6a2d115", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/55a9eca4-f8ef-426b-90dc-90a0e6a2d115.png", "timestamp": "2024-02-15T20:37:49.552368+00:00"}}, {"id": "f2510b67-a9c5-4a63-b060-4f5046ea5c26", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:05.113347+00:00", "label": "true", "label_explanation": "The image clearly shows rain falling on the road surface, creating reflections and a wet appearance.", "snapshot": {"id": "55a9eca4-f8ef-426b-90dc-90a0e6a2d115", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/55a9eca4-f8ef-426b-90dc-90a0e6a2d115.png", "timestamp": "2024-02-15T20:37:49.552368+00:00"}}, {"id": "8c885351-b1c2-4490-b48a-3b4abe6dad3b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.752894+00:00", "label": "low", "label_explanation": "The wet patches on the road are relatively small and shallow, with no significant accumulation of water.", "snapshot": {"id": "c2893e0b-3e96-45a2-b877-fe77dbd924c6", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/c2893e0b-3e96-45a2-b877-fe77dbd924c6.png", "timestamp": "2024-02-15T20:40:22.109673+00:00"}}, {"id": "e99b45a9-ef25-4c6a-94dc-1d3d4e68ee7f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.207026+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some wet patches on the road.", "snapshot": {"id": "c2893e0b-3e96-45a2-b877-fe77dbd924c6", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/c2893e0b-3e96-45a2-b877-fe77dbd924c6.png", "timestamp": "2024-02-15T20:40:22.109673+00:00"}}, {"id": "92276203-d050-4672-aa6e-a82f94d0381f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.993037+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "c2893e0b-3e96-45a2-b877-fe77dbd924c6", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/c2893e0b-3e96-45a2-b877-fe77dbd924c6.png", "timestamp": "2024-02-15T20:40:22.109673+00:00"}}, {"id": "05119805-1c13-4fbe-98ee-40ea9a12fb7b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.989050+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c2893e0b-3e96-45a2-b877-fe77dbd924c6", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/c2893e0b-3e96-45a2-b877-fe77dbd924c6.png", "timestamp": "2024-02-15T20:40:22.109673+00:00"}}, {"id": "4b8a3ca9-0fee-4448-b6b0-2e2d799be69e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.474679+00:00", "label": "true", "label_explanation": "There are some wet patches on the road, indicating recent rain.", "snapshot": {"id": "c2893e0b-3e96-45a2-b877-fe77dbd924c6", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/c2893e0b-3e96-45a2-b877-fe77dbd924c6.png", "timestamp": "2024-02-15T20:40:22.109673+00:00"}}, {"id": "3bb416aa-9a54-4220-b78d-c12ba17ffac8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.380220+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades.", "snapshot": {"id": "c2893e0b-3e96-45a2-b877-fe77dbd924c6", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/c2893e0b-3e96-45a2-b877-fe77dbd924c6.png", "timestamp": "2024-02-15T20:40:22.109673+00:00"}}, {"id": "116e29fc-9f72-4c26-966c-ddaf1d505bdf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.103627+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. The road surface is wet, but there are no significant puddles or standing water. There are various vehicles on the road, including cars, buses, and motorcycles. The road is lined with buildings and trees, and there are a few pedestrians visible on the sidewalks.", "snapshot": {"id": "0d531abb-5dbc-4dec-9b50-2ba31fe8d231", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/0d531abb-5dbc-4dec-9b50-2ba31fe8d231.png", "timestamp": "2024-02-15T20:47:36.678658+00:00"}}, {"id": "6bf595f8-2996-4e09-8e0a-14e48d270dfd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.390119+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades visible on the road. Traffic is flowing freely.", "snapshot": {"id": "0d531abb-5dbc-4dec-9b50-2ba31fe8d231", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/0d531abb-5dbc-4dec-9b50-2ba31fe8d231.png", "timestamp": "2024-02-15T20:47:36.678658+00:00"}}, {"id": "78926ee1-d624-4e14-a4c1-c40d540e52cd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.893750+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0d531abb-5dbc-4dec-9b50-2ba31fe8d231", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/0d531abb-5dbc-4dec-9b50-2ba31fe8d231.png", "timestamp": "2024-02-15T20:47:36.678658+00:00"}}, {"id": "2b684e0a-7839-4e0d-8280-2e1a95003bb4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.003770+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "0d531abb-5dbc-4dec-9b50-2ba31fe8d231", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/0d531abb-5dbc-4dec-9b50-2ba31fe8d231.png", "timestamp": "2024-02-15T20:47:36.678658+00:00"}}, {"id": "c35c1b8d-986d-4795-bd05-14b9181fe0e6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.819809+00:00", "label": "low", "label_explanation": "There is no standing water or significant puddles on the road surface. The water level is low.", "snapshot": {"id": "0d531abb-5dbc-4dec-9b50-2ba31fe8d231", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/0d531abb-5dbc-4dec-9b50-2ba31fe8d231.png", "timestamp": "2024-02-15T20:47:36.678658+00:00"}}, {"id": "311e1024-b74a-4238-9c2b-76400910005d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.448237+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently raining.", "snapshot": {"id": "0d531abb-5dbc-4dec-9b50-2ba31fe8d231", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/0d531abb-5dbc-4dec-9b50-2ba31fe8d231.png", "timestamp": "2024-02-15T20:47:36.678658+00:00"}}, {"id": "b6d1016a-6872-49d0-ab8d-4376b52bb56d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:00.119322+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible. Traffic is able to flow freely in all directions.", "snapshot": {"id": "a744464e-99b4-4a6b-8f24-4e6bc16e64fd", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/a744464e-99b4-4a6b-8f24-4e6bc16e64fd.png", "timestamp": "2024-02-15T20:42:47.751040+00:00"}}, {"id": "a54c02c8-9227-4823-840b-a724d39a225e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:59.453009+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles visible on the road surface. The majority of the road is dry and can be safely navigated by vehicles.", "snapshot": {"id": "a744464e-99b4-4a6b-8f24-4e6bc16e64fd", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/a744464e-99b4-4a6b-8f24-4e6bc16e64fd.png", "timestamp": "2024-02-15T20:42:47.751040+00:00"}}, {"id": "9f0c9662-2423-42dd-b603-57358e622968", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:59.241892+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the water level is low and does not pose a significant risk to traffic.", "snapshot": {"id": "a744464e-99b4-4a6b-8f24-4e6bc16e64fd", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/a744464e-99b4-4a6b-8f24-4e6bc16e64fd.png", "timestamp": "2024-02-15T20:42:47.751040+00:00"}}, {"id": "244d25b7-b257-44f1-ab45-8c00768198cd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:59.864877+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "a744464e-99b4-4a6b-8f24-4e6bc16e64fd", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/a744464e-99b4-4a6b-8f24-4e6bc16e64fd.png", "timestamp": "2024-02-15T20:42:47.751040+00:00"}}, {"id": "670a5973-b89f-490c-9be7-33778f6b9f1f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:58.620518+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a744464e-99b4-4a6b-8f24-4e6bc16e64fd", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/a744464e-99b4-4a6b-8f24-4e6bc16e64fd.png", "timestamp": "2024-02-15T20:42:47.751040+00:00"}}, {"id": "1fab7367-3127-4976-9fc4-1755365a0998", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:58.839990+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy with some light reflecting on the wet road surface. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians can be seen crossing the street in the background.", "snapshot": {"id": "a744464e-99b4-4a6b-8f24-4e6bc16e64fd", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/a744464e-99b4-4a6b-8f24-4e6bc16e64fd.png", "timestamp": "2024-02-15T20:42:47.751040+00:00"}}, {"id": "daeb9c5a-9ab6-4e25-bb40-f5d212d571c4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.717445+00:00", "label": "low", "label_explanation": "There is no significant water on the road's surface, only slight wetness from recent rain.", "snapshot": {"id": "5ed636bb-be42-40a7-a9e7-0a6f3bef477c", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5ed636bb-be42-40a7-a9e7-0a6f3bef477c.png", "timestamp": "2024-02-15T20:52:23.840847+00:00"}}, {"id": "0dacc9f8-c5f0-4a84-87d3-0a480fad0334", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.452016+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "5ed636bb-be42-40a7-a9e7-0a6f3bef477c", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5ed636bb-be42-40a7-a9e7-0a6f3bef477c.png", "timestamp": "2024-02-15T20:52:23.840847+00:00"}}, {"id": "6b62f5b5-5305-4f22-a8af-94c2d5f9ce5e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.265088+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime, and the weather appears to be clear. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, but there are no significant puddles or standing water. The traffic lights are visible in the background, showing green for the vehicles on the main road and red for those on the side street. There are also several pedestrians crossing the intersection, and they are all using the crosswalk.", "snapshot": {"id": "5ed636bb-be42-40a7-a9e7-0a6f3bef477c", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5ed636bb-be42-40a7-a9e7-0a6f3bef477c.png", "timestamp": "2024-02-15T20:52:23.840847+00:00"}}, {"id": "5884f4f8-8cb5-4467-97c0-1a4d0807bb6c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.169195+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "5ed636bb-be42-40a7-a9e7-0a6f3bef477c", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5ed636bb-be42-40a7-a9e7-0a6f3bef477c.png", "timestamp": "2024-02-15T20:52:23.840847+00:00"}}, {"id": "034acbfb-7c98-4d36-bc53-4cdee0f9457a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.940399+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5ed636bb-be42-40a7-a9e7-0a6f3bef477c", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5ed636bb-be42-40a7-a9e7-0a6f3bef477c.png", "timestamp": "2024-02-15T20:52:23.840847+00:00"}}, {"id": "008390df-d852-4bc8-9387-1c10b36eb572", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.952851+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with several vehicles on the road, including cars, buses, and motorcycles. The traffic lights are visible in the background, showing green for the vehicles on the main road and red for those on the side street. There are also several pedestrians crossing the intersection, and they are all using the crosswalk.", "snapshot": {"id": "5ed636bb-be42-40a7-a9e7-0a6f3bef477c", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/5ed636bb-be42-40a7-a9e7-0a6f3bef477c.png", "timestamp": "2024-02-15T20:52:23.840847+00:00"}}, {"id": "dacd090d-62b8-452a-ba9f-f1f702a01492", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.840761+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "76c33c1f-8b7e-40ca-97a2-f14009e53db8", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/76c33c1f-8b7e-40ca-97a2-f14009e53db8.png", "timestamp": "2024-02-15T20:54:52.426378+00:00"}}, {"id": "d01e7201-335d-4577-be25-20c1234d30ff", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:03.935397+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including a bus, cars, and motorcycles. Pedestrians are also visible on the sidewalks and crossing the street. The road surface is wet from recent rain, but there are no significant puddles or flooding.", "snapshot": {"id": "76c33c1f-8b7e-40ca-97a2-f14009e53db8", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/76c33c1f-8b7e-40ca-97a2-f14009e53db8.png", "timestamp": "2024-02-15T20:54:52.426378+00:00"}}, {"id": "1ad41700-0344-4bf5-9f00-14c1a85250d9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:03.578448+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "76c33c1f-8b7e-40ca-97a2-f14009e53db8", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/76c33c1f-8b7e-40ca-97a2-f14009e53db8.png", "timestamp": "2024-02-15T20:54:52.426378+00:00"}}, {"id": "8be6d6e6-5375-4676-9d90-579e325f9a56", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.247305+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy and there is no standing water on the road.", "snapshot": {"id": "76c33c1f-8b7e-40ca-97a2-f14009e53db8", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/76c33c1f-8b7e-40ca-97a2-f14009e53db8.png", "timestamp": "2024-02-15T20:54:52.426378+00:00"}}, {"id": "51d7608f-b020-433f-baa1-d6bbae1392d0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.032101+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "76c33c1f-8b7e-40ca-97a2-f14009e53db8", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/76c33c1f-8b7e-40ca-97a2-f14009e53db8.png", "timestamp": "2024-02-15T20:54:52.426378+00:00"}}, {"id": "ecad94a6-3ceb-43ca-ab44-e462d1ca778f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.466050+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but this is likely due to recent rain and not flooding.", "snapshot": {"id": "76c33c1f-8b7e-40ca-97a2-f14009e53db8", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/76c33c1f-8b7e-40ca-97a2-f14009e53db8.png", "timestamp": "2024-02-15T20:54:52.426378+00:00"}}, {"id": "0e3f0b3c-11c2-478f-8f2c-41d81fd36e8c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.023989+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate lighting conditions. It is daytime, and the weather appears to be overcast, as direct sunlight is not visible. The road surface is wet, but there are no significant puddles or standing water. There are several vehicles on the road, including cars and buses, and the traffic appears to be flowing smoothly.", "snapshot": {"id": "62e97caf-f07c-4308-9607-1f60cf9c3828", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/62e97caf-f07c-4308-9607-1f60cf9c3828.png", "timestamp": "2024-02-15T20:50:00.334713+00:00"}}, {"id": "8009890f-78f5-4407-a799-8ce175062129", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:11.879226+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "62e97caf-f07c-4308-9607-1f60cf9c3828", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/62e97caf-f07c-4308-9607-1f60cf9c3828.png", "timestamp": "2024-02-15T20:50:00.334713+00:00"}}, {"id": "91817f5e-50d7-48c6-8d91-992084640dad", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.427547+00:00", "label": "low", "label_explanation": "The water level on the road is low. While the road is wet, there are no significant accumulations of water, and the road surface is still clearly visible.", "snapshot": {"id": "62e97caf-f07c-4308-9607-1f60cf9c3828", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/62e97caf-f07c-4308-9607-1f60cf9c3828.png", "timestamp": "2024-02-15T20:50:00.334713+00:00"}}, {"id": "cf011827-b161-42d0-aed7-4f0b13696d5a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.823055+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "62e97caf-f07c-4308-9607-1f60cf9c3828", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/62e97caf-f07c-4308-9607-1f60cf9c3828.png", "timestamp": "2024-02-15T20:50:00.334713+00:00"}}, {"id": "e61106c9-7baa-4449-add9-c7c673834fc9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.621353+00:00", "label": "easy", "label_explanation": "The traffic appears to be flowing smoothly, with no major disruptions or congestion. Vehicles are able to navigate the road without difficulty.", "snapshot": {"id": "62e97caf-f07c-4308-9607-1f60cf9c3828", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/62e97caf-f07c-4308-9607-1f60cf9c3828.png", "timestamp": "2024-02-15T20:50:00.334713+00:00"}}, {"id": "a657b6df-43db-42ef-8345-ff2f04ef1c83", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.206783+00:00", "label": "true", "label_explanation": "As mentioned earlier, the road surface is wet, indicating that it has been raining or there is residual moisture from previous precipitation.", "snapshot": {"id": "62e97caf-f07c-4308-9607-1f60cf9c3828", "camera_id": "000010", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000010/62e97caf-f07c-4308-9607-1f60cf9c3828.png", "timestamp": "2024-02-15T20:50:00.334713+00:00"}}]}, {"id": "001507", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. REAL GRANDEZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95434572, "longitude": -43.19297012, "objects": ["image_corrupted", "road_blockade", "rain", "water_level", "traffic", "image_description"], "identifications": [{"id": "3e007744-2a09-4ff8-a90e-7cf303ca5ca2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.973068+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major delays or congestion.", "snapshot": {"id": "a9866d1e-f832-4a3e-b9ab-e21703efbca3", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/a9866d1e-f832-4a3e-b9ab-e21703efbca3.png", "timestamp": "2024-02-15T20:30:11.671959+00:00"}}, {"id": "fffefa4d-4c9b-4cb6-b413-8a9be4fcc3ab", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.518253+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "a9866d1e-f832-4a3e-b9ab-e21703efbca3", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/a9866d1e-f832-4a3e-b9ab-e21703efbca3.png", "timestamp": "2024-02-15T20:30:11.671959+00:00"}}, {"id": "edb83d19-3af8-4800-a897-7f74da5854d7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:27.914869+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, walking on the sidewalks and crossing the street. The road is in good condition, with no visible potholes or cracks. There are trees and buildings in the background.", "snapshot": {"id": "a9866d1e-f832-4a3e-b9ab-e21703efbca3", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/a9866d1e-f832-4a3e-b9ab-e21703efbca3.png", "timestamp": "2024-02-15T20:30:11.671959+00:00"}}, {"id": "60095563-2778-49b0-9f5a-27a10026bf06", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.247706+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. Traffic is able to flow freely.", "snapshot": {"id": "a9866d1e-f832-4a3e-b9ab-e21703efbca3", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/a9866d1e-f832-4a3e-b9ab-e21703efbca3.png", "timestamp": "2024-02-15T20:30:11.671959+00:00"}}, {"id": "1485d135-567d-4df4-b8ed-882e4da5843b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.202962+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy and does not appear to be causing any significant problems for traffic.", "snapshot": {"id": "a9866d1e-f832-4a3e-b9ab-e21703efbca3", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/a9866d1e-f832-4a3e-b9ab-e21703efbca3.png", "timestamp": "2024-02-15T20:30:11.671959+00:00"}}, {"id": "f7b8b03b-90b0-42e5-bf56-323b9e95bd1a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:27.619535+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a9866d1e-f832-4a3e-b9ab-e21703efbca3", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/a9866d1e-f832-4a3e-b9ab-e21703efbca3.png", "timestamp": "2024-02-15T20:30:11.671959+00:00"}}, {"id": "4e0e44f3-5e38-4e00-8b96-692cbc5a2f87", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:01.358440+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles and pedestrians.", "snapshot": {"id": "19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e.png", "timestamp": "2024-02-15T20:32:38.366707+00:00"}}, {"id": "c5711908-106a-4408-b929-96859b393eb6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:00.647953+00:00", "label": "easy", "label_explanation": "The traffic is moderate. Vehicles are moving at a steady pace and there are no major congestion or delays.", "snapshot": {"id": "19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e.png", "timestamp": "2024-02-15T20:32:38.366707+00:00"}}, {"id": "f4961386-37ee-4d55-87bc-c249c9e7e2c6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:59.057963+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e.png", "timestamp": "2024-02-15T20:32:38.366707+00:00"}}, {"id": "4c8fef49-7e5f-42f8-a9fc-6d9e695bb512", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:58.304056+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e.png", "timestamp": "2024-02-15T20:32:38.366707+00:00"}}, {"id": "050a2736-2a2e-433e-90c4-da99b6a2e948", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:57.721828+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e.png", "timestamp": "2024-02-15T20:32:38.366707+00:00"}}, {"id": "465f3c6a-79ba-4b8a-91f6-4bb4efd52453", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:59.829074+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/19d1f8c1-cfa4-4dfb-a42a-b4e9c32aec9e.png", "timestamp": "2024-02-15T20:32:38.366707+00:00"}}, {"id": "790a112b-6c63-4dc7-9c31-5c88524ef24e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.931970+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "adcee9b5-109d-4059-9b57-788f27d5593b", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/adcee9b5-109d-4059-9b57-788f27d5593b.png", "timestamp": "2024-02-15T20:37:43.706777+00:00"}}, {"id": "b7719752-7093-429c-baf4-eeca84174372", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:57.606304+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "adcee9b5-109d-4059-9b57-788f27d5593b", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/adcee9b5-109d-4059-9b57-788f27d5593b.png", "timestamp": "2024-02-15T20:37:43.706777+00:00"}}, {"id": "71b599d7-6c48-4286-89da-7e3582fd79f4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.226526+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "adcee9b5-109d-4059-9b57-788f27d5593b", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/adcee9b5-109d-4059-9b57-788f27d5593b.png", "timestamp": "2024-02-15T20:37:43.706777+00:00"}}, {"id": "b2dc9eae-4276-4591-bc6c-39445b8b6aaf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.581152+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "adcee9b5-109d-4059-9b57-788f27d5593b", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/adcee9b5-109d-4059-9b57-788f27d5593b.png", "timestamp": "2024-02-15T20:37:43.706777+00:00"}}, {"id": "fa215696-e1da-4cde-b877-e7fd9dcc34ae", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.961983+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "adcee9b5-109d-4059-9b57-788f27d5593b", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/adcee9b5-109d-4059-9b57-788f27d5593b.png", "timestamp": "2024-02-15T20:37:43.706777+00:00"}}, {"id": "e64e564d-ac6a-4bf2-a844-f549429ebdb9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.564603+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "adcee9b5-109d-4059-9b57-788f27d5593b", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/adcee9b5-109d-4059-9b57-788f27d5593b.png", "timestamp": "2024-02-15T20:37:43.706777+00:00"}}, {"id": "1f3eb096-0eef-45e3-afab-ff02ef72be38", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.410474+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for all types of vehicles.", "snapshot": {"id": "f1f0e965-d030-4ac4-9e0a-bc4dceca8697", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/f1f0e965-d030-4ac4-9e0a-bc4dceca8697.png", "timestamp": "2024-02-15T20:35:12.364625+00:00"}}, {"id": "4dbc7fdf-2640-4a38-a116-3dbc7e52ed95", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:26.933432+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also small puddles of water on the road.", "snapshot": {"id": "f1f0e965-d030-4ac4-9e0a-bc4dceca8697", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/f1f0e965-d030-4ac4-9e0a-bc4dceca8697.png", "timestamp": "2024-02-15T20:35:12.364625+00:00"}}, {"id": "fa438e16-62df-41da-add2-8cdd4fe279b1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.782022+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f1f0e965-d030-4ac4-9e0a-bc4dceca8697", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/f1f0e965-d030-4ac4-9e0a-bc4dceca8697.png", "timestamp": "2024-02-15T20:35:12.364625+00:00"}}, {"id": "f4f6780e-5f5b-42c4-998f-5e6ea256398c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.130801+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are all moving at a steady pace. There are no major delays or disruptions.", "snapshot": {"id": "f1f0e965-d030-4ac4-9e0a-bc4dceca8697", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/f1f0e965-d030-4ac4-9e0a-bc4dceca8697.png", "timestamp": "2024-02-15T20:35:12.364625+00:00"}}, {"id": "9bd10bfc-e3cf-45dd-8195-2df4aa5bd7f0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.660090+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are small puddles of water, but they are not deep enough to cause any significant problems for traffic.", "snapshot": {"id": "f1f0e965-d030-4ac4-9e0a-bc4dceca8697", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/f1f0e965-d030-4ac4-9e0a-bc4dceca8697.png", "timestamp": "2024-02-15T20:35:12.364625+00:00"}}, {"id": "209b45b1-a0ab-44a0-b049-9c7dd33d6e53", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:26.506022+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "f1f0e965-d030-4ac4-9e0a-bc4dceca8697", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/f1f0e965-d030-4ac4-9e0a-bc4dceca8697.png", "timestamp": "2024-02-15T20:35:12.364625+00:00"}}, {"id": "6c502ea9-7251-4b8f-8776-087b0acfa727", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.865450+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are several vehicles on the road, including cars, buses, and motorcycles. The vehicles are moving slowly due to the wet conditions. There are also a few pedestrians on the sidewalk, and they are all wearing raincoats or carrying umbrellas.", "snapshot": {"id": "d3a8e358-35c2-4fa3-a61e-63fbd0716276", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d3a8e358-35c2-4fa3-a61e-63fbd0716276.png", "timestamp": "2024-02-15T20:40:14.908501+00:00"}}, {"id": "db487506-95e3-4f6e-b9f8-cdfff34b6cd5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:32.161818+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "d3a8e358-35c2-4fa3-a61e-63fbd0716276", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d3a8e358-35c2-4fa3-a61e-63fbd0716276.png", "timestamp": "2024-02-15T20:40:14.908501+00:00"}}, {"id": "6fe0283b-96b4-45d0-ba44-a4e2d6e0d76d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.695478+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving slowly due to the wet conditions.", "snapshot": {"id": "d3a8e358-35c2-4fa3-a61e-63fbd0716276", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d3a8e358-35c2-4fa3-a61e-63fbd0716276.png", "timestamp": "2024-02-15T20:40:14.908501+00:00"}}, {"id": "b084f98f-772e-4859-9ecd-1a304dc2eec6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.119410+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "d3a8e358-35c2-4fa3-a61e-63fbd0716276", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d3a8e358-35c2-4fa3-a61e-63fbd0716276.png", "timestamp": "2024-02-15T20:40:14.908501+00:00"}}, {"id": "73cbfe45-1cdf-4050-a882-28387a9e614d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.253590+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d3a8e358-35c2-4fa3-a61e-63fbd0716276", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d3a8e358-35c2-4fa3-a61e-63fbd0716276.png", "timestamp": "2024-02-15T20:40:14.908501+00:00"}}, {"id": "80e05593-c28f-41e3-9112-11988dad683f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.350507+00:00", "label": "low", "label_explanation": "The water level is low, with no significant puddles or standing water.", "snapshot": {"id": "d3a8e358-35c2-4fa3-a61e-63fbd0716276", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d3a8e358-35c2-4fa3-a61e-63fbd0716276.png", "timestamp": "2024-02-15T20:40:14.908501+00:00"}}, {"id": "cc3e62e7-6a37-4124-a92a-def6565c6598", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.379551+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "d9bcab71-b0d6-4584-8217-d58e3346bcc4", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d9bcab71-b0d6-4584-8217-d58e3346bcc4.png", "timestamp": "2024-02-15T20:42:42.466780+00:00"}}, {"id": "2c4b0661-db55-449c-988b-6fb12abace11", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.888781+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "d9bcab71-b0d6-4584-8217-d58e3346bcc4", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d9bcab71-b0d6-4584-8217-d58e3346bcc4.png", "timestamp": "2024-02-15T20:42:42.466780+00:00"}}, {"id": "1c9646f1-bdec-4871-9e86-33ba03d5654a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.157109+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "d9bcab71-b0d6-4584-8217-d58e3346bcc4", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d9bcab71-b0d6-4584-8217-d58e3346bcc4.png", "timestamp": "2024-02-15T20:42:42.466780+00:00"}}, {"id": "b78e12c3-c1a1-487d-8a12-a66e3678bfc2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.691949+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d9bcab71-b0d6-4584-8217-d58e3346bcc4", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d9bcab71-b0d6-4584-8217-d58e3346bcc4.png", "timestamp": "2024-02-15T20:42:42.466780+00:00"}}, {"id": "c21e116e-40c8-4d37-b761-a754d2b44c30", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.145513+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d9bcab71-b0d6-4584-8217-d58e3346bcc4", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d9bcab71-b0d6-4584-8217-d58e3346bcc4.png", "timestamp": "2024-02-15T20:42:42.466780+00:00"}}, {"id": "8cb8d428-0751-43b5-9d6e-bd08843c8e9b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.466438+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "d9bcab71-b0d6-4584-8217-d58e3346bcc4", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/d9bcab71-b0d6-4584-8217-d58e3346bcc4.png", "timestamp": "2024-02-15T20:42:42.466780+00:00"}}, {"id": "439c0957-7726-4236-bd3a-b69a71263fa5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.522577+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "98ff24f1-996b-41a8-bf34-71bcccb21461", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/98ff24f1-996b-41a8-bf34-71bcccb21461.png", "timestamp": "2024-02-15T20:47:28.371899+00:00"}}, {"id": "1ecf7b30-2409-4e08-a5f4-e503988a8265", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.301735+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. The rain is not heavy enough to cause any significant traffic disruptions.", "snapshot": {"id": "98ff24f1-996b-41a8-bf34-71bcccb21461", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/98ff24f1-996b-41a8-bf34-71bcccb21461.png", "timestamp": "2024-02-15T20:47:28.371899+00:00"}}, {"id": "eaf3c298-90e9-4b57-9894-cdbc8df3bddf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.101275+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rain. There are several vehicles on the road, including cars, a bus, and a bicycle. The road is lined with buildings and trees.", "snapshot": {"id": "98ff24f1-996b-41a8-bf34-71bcccb21461", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/98ff24f1-996b-41a8-bf34-71bcccb21461.png", "timestamp": "2024-02-15T20:47:28.371899+00:00"}}, {"id": "521ddc59-37ee-4e08-84d6-f8380d31bd8c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.963534+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays. Vehicles are able to move at the posted speed limit.", "snapshot": {"id": "98ff24f1-996b-41a8-bf34-71bcccb21461", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/98ff24f1-996b-41a8-bf34-71bcccb21461.png", "timestamp": "2024-02-15T20:47:28.371899+00:00"}}, {"id": "771deb7e-e0d2-42d9-a6bf-1e334f2e25a9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.810989+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "98ff24f1-996b-41a8-bf34-71bcccb21461", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/98ff24f1-996b-41a8-bf34-71bcccb21461.png", "timestamp": "2024-02-15T20:47:28.371899+00:00"}}, {"id": "06ff48bb-5869-4ca6-b277-6338cc82fde0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.246781+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "98ff24f1-996b-41a8-bf34-71bcccb21461", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/98ff24f1-996b-41a8-bf34-71bcccb21461.png", "timestamp": "2024-02-15T20:47:28.371899+00:00"}}, {"id": "9274a335-aeff-4313-8690-48f8ef8d5893", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.727604+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road, but they are not deep enough to cause any significant traffic disruptions.", "snapshot": {"id": "1e392a2c-51f1-4051-92ac-f98273e76c66", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/1e392a2c-51f1-4051-92ac-f98273e76c66.png", "timestamp": "2024-02-15T20:45:05.350321+00:00"}}, {"id": "f148795a-b58b-4256-af24-36958a7a69d4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.586564+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "1e392a2c-51f1-4051-92ac-f98273e76c66", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/1e392a2c-51f1-4051-92ac-f98273e76c66.png", "timestamp": "2024-02-15T20:45:05.350321+00:00"}}, {"id": "128cc018-35ad-4baf-9398-31dd6787e259", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:17.057897+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1e392a2c-51f1-4051-92ac-f98273e76c66", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/1e392a2c-51f1-4051-92ac-f98273e76c66.png", "timestamp": "2024-02-15T20:45:05.350321+00:00"}}, {"id": "53fe2b82-b9d4-41ee-a329-d8b37a23d2dd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.472030+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "1e392a2c-51f1-4051-92ac-f98273e76c66", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/1e392a2c-51f1-4051-92ac-f98273e76c66.png", "timestamp": "2024-02-15T20:45:05.350321+00:00"}}, {"id": "ca17a99a-40fa-46bd-a9fa-09e39cdb5742", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.175161+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is rush hour, and there is moderate traffic on the road. The road is wet from recent rain, but there are no major obstructions.", "snapshot": {"id": "1e392a2c-51f1-4051-92ac-f98273e76c66", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/1e392a2c-51f1-4051-92ac-f98273e76c66.png", "timestamp": "2024-02-15T20:45:05.350321+00:00"}}, {"id": "7d98133a-a6f1-403f-8905-c6f066b71a31", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.332965+00:00", "label": "moderate", "label_explanation": "Traffic is moving slowly due to the wet road conditions, but there are no major delays.", "snapshot": {"id": "1e392a2c-51f1-4051-92ac-f98273e76c66", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/1e392a2c-51f1-4051-92ac-f98273e76c66.png", "timestamp": "2024-02-15T20:45:05.350321+00:00"}}, {"id": "e71e8a18-571f-4ff2-97a7-c5b4c0ca5c5c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.179359+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy and there is no standing water.", "snapshot": {"id": "c392c8d3-c0ea-42a6-867e-76b7ba6b9a82", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/c392c8d3-c0ea-42a6-867e-76b7ba6b9a82.png", "timestamp": "2024-02-15T20:52:16.246419+00:00"}}, {"id": "31bee3c9-4a88-45f7-9d3b-30d8d8e6d942", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.541104+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c392c8d3-c0ea-42a6-867e-76b7ba6b9a82", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/c392c8d3-c0ea-42a6-867e-76b7ba6b9a82.png", "timestamp": "2024-02-15T20:52:16.246419+00:00"}}, {"id": "2276627f-5559-436d-ad5d-b17d985a5e5e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.920653+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, crossing the road at a zebra crossing. The road is wet from recent rain, but there are no significant puddles or flooding.", "snapshot": {"id": "c392c8d3-c0ea-42a6-867e-76b7ba6b9a82", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/c392c8d3-c0ea-42a6-867e-76b7ba6b9a82.png", "timestamp": "2024-02-15T20:52:16.246419+00:00"}}, {"id": "63691b1b-8491-4709-8ceb-5f6582c1a7fb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.831224+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or obstructions.", "snapshot": {"id": "c392c8d3-c0ea-42a6-867e-76b7ba6b9a82", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/c392c8d3-c0ea-42a6-867e-76b7ba6b9a82.png", "timestamp": "2024-02-15T20:52:16.246419+00:00"}}, {"id": "fb9f0d1f-1220-41f0-b9d6-bb1ae450fd3d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.535695+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but this is likely due to recent rain and not flooding.", "snapshot": {"id": "c392c8d3-c0ea-42a6-867e-76b7ba6b9a82", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/c392c8d3-c0ea-42a6-867e-76b7ba6b9a82.png", "timestamp": "2024-02-15T20:52:16.246419+00:00"}}, {"id": "9bd0f575-866a-4be6-a6ae-cbde6791aa8b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.124941+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "c392c8d3-c0ea-42a6-867e-76b7ba6b9a82", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/c392c8d3-c0ea-42a6-867e-76b7ba6b9a82.png", "timestamp": "2024-02-15T20:52:16.246419+00:00"}}, {"id": "e92a4aae-6221-45c0-8a82-10bdfac42dc9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.794692+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "2f23a8d5-e05b-4720-b01e-b0ba1d9d763f", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/2f23a8d5-e05b-4720-b01e-b0ba1d9d763f.png", "timestamp": "2024-02-15T20:49:52.926784+00:00"}}, {"id": "2ff93180-ef51-46b8-93b1-45d4b44f5d61", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.030959+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible in the image. Traffic is able to flow freely in both directions.", "snapshot": {"id": "2f23a8d5-e05b-4720-b01e-b0ba1d9d763f", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/2f23a8d5-e05b-4720-b01e-b0ba1d9d763f.png", "timestamp": "2024-02-15T20:49:52.926784+00:00"}}, {"id": "4329112d-35e5-45a8-964d-fc10d55d76e8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.068570+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy and the road is still passable.", "snapshot": {"id": "2f23a8d5-e05b-4720-b01e-b0ba1d9d763f", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/2f23a8d5-e05b-4720-b01e-b0ba1d9d763f.png", "timestamp": "2024-02-15T20:49:52.926784+00:00"}}, {"id": "85d467e0-bba2-4db2-8e57-f4ad4b36440d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.372211+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "2f23a8d5-e05b-4720-b01e-b0ba1d9d763f", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/2f23a8d5-e05b-4720-b01e-b0ba1d9d763f.png", "timestamp": "2024-02-15T20:49:52.926784+00:00"}}, {"id": "51878892-6825-4a46-9760-c53fada04f0c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.834222+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "2f23a8d5-e05b-4720-b01e-b0ba1d9d763f", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/2f23a8d5-e05b-4720-b01e-b0ba1d9d763f.png", "timestamp": "2024-02-15T20:49:52.926784+00:00"}}, {"id": "25a6ed08-6837-4e02-a8ef-b1b3c17075ab", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.495754+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2f23a8d5-e05b-4720-b01e-b0ba1d9d763f", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/2f23a8d5-e05b-4720-b01e-b0ba1d9d763f.png", "timestamp": "2024-02-15T20:49:52.926784+00:00"}}, {"id": "887f3bb6-8c9b-4001-9ca5-4665d7dced69", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:58.614153+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "02f7cb62-378c-41fb-9e0b-7352d1507a23", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/02f7cb62-378c-41fb-9e0b-7352d1507a23.png", "timestamp": "2024-02-15T20:54:45.544817+00:00"}}, {"id": "ee5c34e1-fe3f-4d26-a76d-b9615d4220aa", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:58.371815+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a steady pace. There are no major delays or congestion.", "snapshot": {"id": "02f7cb62-378c-41fb-9e0b-7352d1507a23", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/02f7cb62-378c-41fb-9e0b-7352d1507a23.png", "timestamp": "2024-02-15T20:54:45.544817+00:00"}}, {"id": "195aea49-6ff8-4faa-9ae1-4c76df54984d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.833559+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also small puddles of water on the road.", "snapshot": {"id": "02f7cb62-378c-41fb-9e0b-7352d1507a23", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/02f7cb62-378c-41fb-9e0b-7352d1507a23.png", "timestamp": "2024-02-15T20:54:45.544817+00:00"}}, {"id": "9075c6fd-9269-4031-914d-cd193a4d0302", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.448797+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "02f7cb62-378c-41fb-9e0b-7352d1507a23", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/02f7cb62-378c-41fb-9e0b-7352d1507a23.png", "timestamp": "2024-02-15T20:54:45.544817+00:00"}}, {"id": "4b6a04c4-416e-44c2-875d-b7a912efa786", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:58.069928+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are small puddles of water, but they are not deep enough to cause any significant hazards or impede traffic flow.", "snapshot": {"id": "02f7cb62-378c-41fb-9e0b-7352d1507a23", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/02f7cb62-378c-41fb-9e0b-7352d1507a23.png", "timestamp": "2024-02-15T20:54:45.544817+00:00"}}, {"id": "179b0660-82bd-45e8-86e0-ac7a8071a0b4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.154628+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "02f7cb62-378c-41fb-9e0b-7352d1507a23", "camera_id": "001507", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001507/02f7cb62-378c-41fb-9e0b-7352d1507a23.png", "timestamp": "2024-02-15T20:54:45.544817+00:00"}}]}, {"id": "001508", "name": "R. FRANCISCO EUG\u00caNIO, 329 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907555, "longitude": -43.219223, "objects": ["rain", "image_description", "road_blockade", "traffic", "image_corrupted", "water_level"], "identifications": [{"id": "7d543495-7eab-486f-b9ce-f7eee361d69d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.602965+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9fe52a35-aa38-4ea1-9d27-26d53fe269b3", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/9fe52a35-aa38-4ea1-9d27-26d53fe269b3.png", "timestamp": "2024-02-15T20:30:10.326808+00:00"}}, {"id": "e936b939-4c57-4623-924a-a41db4043dbc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.650919+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles scattered around. The majority of the road surface is still visible and dry.", "snapshot": {"id": "9fe52a35-aa38-4ea1-9d27-26d53fe269b3", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/9fe52a35-aa38-4ea1-9d27-26d53fe269b3.png", "timestamp": "2024-02-15T20:30:10.326808+00:00"}}, {"id": "610f683d-9cc1-4fd1-9568-9ff161a13c1f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.436456+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining recently.", "snapshot": {"id": "9fe52a35-aa38-4ea1-9d27-26d53fe269b3", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/9fe52a35-aa38-4ea1-9d27-26d53fe269b3.png", "timestamp": "2024-02-15T20:30:10.326808+00:00"}}, {"id": "47e2c413-b581-471c-a13b-0dc0bef59467", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.992897+00:00", "label": "easy", "label_explanation": "The yellow taxi is driving cautiously on the wet road, with no other vehicles visible in the immediate vicinity. Traffic flow appears to be moderate, with no major congestion or disruptions.", "snapshot": {"id": "9fe52a35-aa38-4ea1-9d27-26d53fe269b3", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/9fe52a35-aa38-4ea1-9d27-26d53fe269b3.png", "timestamp": "2024-02-15T20:30:10.326808+00:00"}}, {"id": "a148e213-03c8-47b0-b877-0267e982d5de", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.065187+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a yellow taxi driving in the rightmost lane. The road is wet from recent rain, with small puddles scattered across the surface. On either side of the road, there are green trees and shrubs, with buildings and structures visible in the background.", "snapshot": {"id": "9fe52a35-aa38-4ea1-9d27-26d53fe269b3", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/9fe52a35-aa38-4ea1-9d27-26d53fe269b3.png", "timestamp": "2024-02-15T20:30:10.326808+00:00"}}, {"id": "d2999bce-cde0-42b2-b299-1ed519c9a03d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:33.384842+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. The yellow taxi is able to proceed without any hindrance.", "snapshot": {"id": "9fe52a35-aa38-4ea1-9d27-26d53fe269b3", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/9fe52a35-aa38-4ea1-9d27-26d53fe269b3.png", "timestamp": "2024-02-15T20:30:10.326808+00:00"}}, {"id": "8f645a2c-9ac4-42e9-b0fb-44b97d215713", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:01.253496+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a steady flow of vehicles moving in both directions. The vehicles are able to move freely, and there are no visible signs of congestion or traffic disruptions.", "snapshot": {"id": "5f9d5782-7ad5-4b1d-a4be-d8602b31a617", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5f9d5782-7ad5-4b1d-a4be-d8602b31a617.png", "timestamp": "2024-02-15T20:32:36.648881+00:00"}}, {"id": "f30349a0-375b-44e6-8c47-c32c73d18c07", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:59.918670+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water on the road.", "snapshot": {"id": "5f9d5782-7ad5-4b1d-a4be-d8602b31a617", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5f9d5782-7ad5-4b1d-a4be-d8602b31a617.png", "timestamp": "2024-02-15T20:32:36.648881+00:00"}}, {"id": "87d32690-1697-4061-b58b-2dd84ea8f7e6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:59.058917+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5f9d5782-7ad5-4b1d-a4be-d8602b31a617", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5f9d5782-7ad5-4b1d-a4be-d8602b31a617.png", "timestamp": "2024-02-15T20:32:36.648881+00:00"}}, {"id": "7e7d4263-d62c-4d6b-827c-f6c640ad6452", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:01.959927+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is clear and free for vehicles to pass.", "snapshot": {"id": "5f9d5782-7ad5-4b1d-a4be-d8602b31a617", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5f9d5782-7ad5-4b1d-a4be-d8602b31a617.png", "timestamp": "2024-02-15T20:32:36.648881+00:00"}}, {"id": "8289711e-fc41-4bbd-a0fc-d722b284d621", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:00.646762+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "5f9d5782-7ad5-4b1d-a4be-d8602b31a617", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5f9d5782-7ad5-4b1d-a4be-d8602b31a617.png", "timestamp": "2024-02-15T20:32:36.648881+00:00"}}, {"id": "55fe2918-9ca3-4457-9e89-0fe54929b3c9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:59.409803+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for vehicle movement. The road surface is paved and in good condition, with visible lane markings. There are trees on either side of the road, and buildings and other structures can be seen in the background. The image is clear and provides a good view of the road and its surroundings.", "snapshot": {"id": "5f9d5782-7ad5-4b1d-a4be-d8602b31a617", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5f9d5782-7ad5-4b1d-a4be-d8602b31a617.png", "timestamp": "2024-02-15T20:32:36.648881+00:00"}}, {"id": "c148f310-751c-4fe1-bdbe-2c5da065206a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.774123+00:00", "label": "true", "label_explanation": "There is light rain falling, which is visible in the image as small droplets on the road surface and the leaves of the trees. The rain is not heavy enough to cause any significant pooling or flooding on the road.", "snapshot": {"id": "5ed194a3-5e55-42d3-959c-3d12dfc482ff", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5ed194a3-5e55-42d3-959c-3d12dfc482ff.png", "timestamp": "2024-02-15T20:45:04.228851+00:00"}}, {"id": "3562ff56-e6a7-4cac-b414-35d4f71005cd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.518760+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for vehicle movement. The road surface is paved and in good condition, with visible lane markings. There are trees on either side of the road, and buildings and other structures can be seen in the background. The image is clear and provides a good view of the road and its surroundings.", "snapshot": {"id": "5ed194a3-5e55-42d3-959c-3d12dfc482ff", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5ed194a3-5e55-42d3-959c-3d12dfc482ff.png", "timestamp": "2024-02-15T20:45:04.228851+00:00"}}, {"id": "9b9160d1-9e22-49d6-ae51-4c0aa6cc0aa2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.214453+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5ed194a3-5e55-42d3-959c-3d12dfc482ff", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5ed194a3-5e55-42d3-959c-3d12dfc482ff.png", "timestamp": "2024-02-15T20:45:04.228851+00:00"}}, {"id": "72adf464-5cf5-4045-9a20-0bad490f931c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.917013+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, and traffic is able to flow freely in both directions.", "snapshot": {"id": "5ed194a3-5e55-42d3-959c-3d12dfc482ff", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5ed194a3-5e55-42d3-959c-3d12dfc482ff.png", "timestamp": "2024-02-15T20:45:04.228851+00:00"}}, {"id": "57d76943-2f50-4d32-897f-286ef4d0f2b3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.694368+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate, with a steady flow of vehicles moving in both directions. The rain is not causing any significant disruptions to traffic, and vehicles are able to proceed at a normal speed.", "snapshot": {"id": "5ed194a3-5e55-42d3-959c-3d12dfc482ff", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5ed194a3-5e55-42d3-959c-3d12dfc482ff.png", "timestamp": "2024-02-15T20:45:04.228851+00:00"}}, {"id": "f52581f7-8f25-4f98-b6ad-9e5df1f80f6f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.442698+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles forming in a few areas. The majority of the road surface is dry, and vehicles can navigate the road without difficulty.", "snapshot": {"id": "5ed194a3-5e55-42d3-959c-3d12dfc482ff", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/5ed194a3-5e55-42d3-959c-3d12dfc482ff.png", "timestamp": "2024-02-15T20:45:04.228851+00:00"}}, {"id": "fb9e9967-f40d-4902-bf27-569ad1e69a11", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.010324+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and free of any obstructions, allowing for normal traffic flow.", "snapshot": {"id": "78aa4aca-5529-48a4-9863-57f69e900296", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/78aa4aca-5529-48a4-9863-57f69e900296.png", "timestamp": "2024-02-15T20:37:43.248874+00:00"}}, {"id": "f8a4314f-5602-4723-9204-a35ff375fe34", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:01.310860+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a few vehicles visible in the image, and they are moving at a moderate speed. There are no visible signs of congestion or traffic disruptions.", "snapshot": {"id": "78aa4aca-5529-48a4-9863-57f69e900296", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/78aa4aca-5529-48a4-9863-57f69e900296.png", "timestamp": "2024-02-15T20:37:43.248874+00:00"}}, {"id": "3eaf07e9-19a9-4eda-a34b-41936f01c85a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.450487+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no visible signs of water accumulation, and the road surface is dry.", "snapshot": {"id": "78aa4aca-5529-48a4-9863-57f69e900296", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/78aa4aca-5529-48a4-9863-57f69e900296.png", "timestamp": "2024-02-15T20:37:43.248874+00:00"}}, {"id": "6fe9b786-8de5-4a77-b037-5135065d5354", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.958076+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water accumulation.", "snapshot": {"id": "78aa4aca-5529-48a4-9863-57f69e900296", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/78aa4aca-5529-48a4-9863-57f69e900296.png", "timestamp": "2024-02-15T20:37:43.248874+00:00"}}, {"id": "3548863c-e32a-4ce2-a0d8-b10195247cb5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.689498+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for vehicle movement. The road surface is paved and in good condition, with visible lane markings. Trees are present on either side of the road, and there are buildings and other structures in the background. The image is clear and provides a good view of the road and its surroundings.", "snapshot": {"id": "78aa4aca-5529-48a4-9863-57f69e900296", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/78aa4aca-5529-48a4-9863-57f69e900296.png", "timestamp": "2024-02-15T20:37:43.248874+00:00"}}, {"id": "ecfd97f9-dd9e-422d-a585-e0d5de0675d5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.111492+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "78aa4aca-5529-48a4-9863-57f69e900296", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/78aa4aca-5529-48a4-9863-57f69e900296.png", "timestamp": "2024-02-15T20:37:43.248874+00:00"}}, {"id": "4fb89504-16d6-4445-bdcb-9c6f17055d11", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.317727+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain. There are several trees on either side of the road, and buildings and other structures can be seen in the background.", "snapshot": {"id": "988b722d-4418-4993-ba6a-f86d4175c28e", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/988b722d-4418-4993-ba6a-f86d4175c28e.png", "timestamp": "2024-02-15T20:35:11.540608+00:00"}}, {"id": "636f2b3f-6fce-47d3-a523-d08f365229ae", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.807940+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "988b722d-4418-4993-ba6a-f86d4175c28e", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/988b722d-4418-4993-ba6a-f86d4175c28e.png", "timestamp": "2024-02-15T20:35:11.540608+00:00"}}, {"id": "5a702535-c7b9-4f3d-9964-74c6e0c7f332", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:26.330002+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, and traffic is able to flow freely.", "snapshot": {"id": "988b722d-4418-4993-ba6a-f86d4175c28e", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/988b722d-4418-4993-ba6a-f86d4175c28e.png", "timestamp": "2024-02-15T20:35:11.540608+00:00"}}, {"id": "d2414788-590e-4ca7-b7d2-07d886a54159", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.279385+00:00", "label": "low", "label_explanation": "There are a few small puddles of water on the road, but they are not causing any significant traffic disruptions.", "snapshot": {"id": "988b722d-4418-4993-ba6a-f86d4175c28e", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/988b722d-4418-4993-ba6a-f86d4175c28e.png", "timestamp": "2024-02-15T20:35:11.540608+00:00"}}, {"id": "44b737f7-8ac0-4184-9091-34afb0562194", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.743151+00:00", "label": "true", "label_explanation": "There is some light rain falling, but the road surface is still mostly dry.", "snapshot": {"id": "988b722d-4418-4993-ba6a-f86d4175c28e", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/988b722d-4418-4993-ba6a-f86d4175c28e.png", "timestamp": "2024-02-15T20:35:11.540608+00:00"}}, {"id": "50661c0d-2bc5-4471-8d6e-1f98937a3a81", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.788119+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "988b722d-4418-4993-ba6a-f86d4175c28e", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/988b722d-4418-4993-ba6a-f86d4175c28e.png", "timestamp": "2024-02-15T20:35:11.540608+00:00"}}, {"id": "afaad9e6-210a-4ddf-8405-0d0b20dc4d05", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.838093+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear for traffic.", "snapshot": {"id": "f8ec561d-04d6-4f04-b6b8-65042c5e1b33", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f8ec561d-04d6-4f04-b6b8-65042c5e1b33.png", "timestamp": "2024-02-15T20:40:13.596389+00:00"}}, {"id": "b3c75542-eb57-480e-9914-c636e419b311", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.578375+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move without any major difficulty.", "snapshot": {"id": "f8ec561d-04d6-4f04-b6b8-65042c5e1b33", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f8ec561d-04d6-4f04-b6b8-65042c5e1b33.png", "timestamp": "2024-02-15T20:40:13.596389+00:00"}}, {"id": "717897d6-601e-43cd-a696-c0add53b36a7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.907183+00:00", "label": "true", "label_explanation": "The road is wet and there are several puddles of water on the surface. It is actively raining in the image.", "snapshot": {"id": "f8ec561d-04d6-4f04-b6b8-65042c5e1b33", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f8ec561d-04d6-4f04-b6b8-65042c5e1b33.png", "timestamp": "2024-02-15T20:40:13.596389+00:00"}}, {"id": "9970d5af-0bf7-4fee-a721-f91322de9a6d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.524356+00:00", "label": "null", "label_explanation": "The image captures a wide, urban road with several lanes. It is daytime and the weather is rainy. There are a few trees on either side of the road, and several parked cars on the right side. There is a building in the background.", "snapshot": {"id": "f8ec561d-04d6-4f04-b6b8-65042c5e1b33", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f8ec561d-04d6-4f04-b6b8-65042c5e1b33.png", "timestamp": "2024-02-15T20:40:13.596389+00:00"}}, {"id": "32a528ca-bfcd-4fb6-8a3c-44ecc0eb9203", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.310990+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f8ec561d-04d6-4f04-b6b8-65042c5e1b33", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f8ec561d-04d6-4f04-b6b8-65042c5e1b33.png", "timestamp": "2024-02-15T20:40:13.596389+00:00"}}, {"id": "8baacd68-8ebb-4f65-ae68-519962c98439", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.248409+00:00", "label": "low", "label_explanation": "The water level on the road is low. While there are puddles, they are shallow and do not cover a significant portion of the road surface.", "snapshot": {"id": "f8ec561d-04d6-4f04-b6b8-65042c5e1b33", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f8ec561d-04d6-4f04-b6b8-65042c5e1b33.png", "timestamp": "2024-02-15T20:40:13.596389+00:00"}}, {"id": "24073de5-9752-4ab3-9ccf-b1485919ef7d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.814146+00:00", "label": "low", "label_explanation": "While the road surface is wet, there are no significant puddles or standing water observed.", "snapshot": {"id": "081d8fe4-ef5f-41b9-b298-b423822631d4", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/081d8fe4-ef5f-41b9-b298-b423822631d4.png", "timestamp": "2024-02-15T20:47:27.332821+00:00"}}, {"id": "9619d415-153f-4785-aa69-504b32624c8e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.581583+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the vehicle capturing the scene.", "snapshot": {"id": "081d8fe4-ef5f-41b9-b298-b423822631d4", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/081d8fe4-ef5f-41b9-b298-b423822631d4.png", "timestamp": "2024-02-15T20:47:27.332821+00:00"}}, {"id": "966b6684-e514-4442-87a9-6dcd0a40611e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.325925+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road surface is wet. There are several vehicles on the road, and the traffic appears to be moderate.", "snapshot": {"id": "081d8fe4-ef5f-41b9-b298-b423822631d4", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/081d8fe4-ef5f-41b9-b298-b423822631d4.png", "timestamp": "2024-02-15T20:47:27.332821+00:00"}}, {"id": "5320aab9-d18c-406d-bae8-fa21f125c57e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.105443+00:00", "label": "moderate", "label_explanation": "The traffic appears to be moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "081d8fe4-ef5f-41b9-b298-b423822631d4", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/081d8fe4-ef5f-41b9-b298-b423822631d4.png", "timestamp": "2024-02-15T20:47:27.332821+00:00"}}, {"id": "cb558f3e-6a61-485c-9341-ab36309ffb82", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.306874+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road.", "snapshot": {"id": "081d8fe4-ef5f-41b9-b298-b423822631d4", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/081d8fe4-ef5f-41b9-b298-b423822631d4.png", "timestamp": "2024-02-15T20:47:27.332821+00:00"}}, {"id": "b2dd2610-f7c0-4300-a786-acd918bbc753", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.123079+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "081d8fe4-ef5f-41b9-b298-b423822631d4", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/081d8fe4-ef5f-41b9-b298-b423822631d4.png", "timestamp": "2024-02-15T20:47:27.332821+00:00"}}, {"id": "6fba426d-2317-496e-8186-34364532cbbf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.164807+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road surface is wet. There are several parked cars on the side of the road, and a few trees can be seen lining the street.", "snapshot": {"id": "cb9f6dd1-be96-407c-9a9c-158f02250816", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/cb9f6dd1-be96-407c-9a9c-158f02250816.png", "timestamp": "2024-02-15T20:42:42.197215+00:00"}}, {"id": "981d7ec0-1998-42de-9b2e-3be7c98a968b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.683923+00:00", "label": "low", "label_explanation": "There are several puddles of water on the road surface, but they are relatively shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "cb9f6dd1-be96-407c-9a9c-158f02250816", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/cb9f6dd1-be96-407c-9a9c-158f02250816.png", "timestamp": "2024-02-15T20:42:42.197215+00:00"}}, {"id": "462e1126-bda9-4765-b9b2-5848c3e0cbf7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:53.920823+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cb9f6dd1-be96-407c-9a9c-158f02250816", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/cb9f6dd1-be96-407c-9a9c-158f02250816.png", "timestamp": "2024-02-15T20:42:42.197215+00:00"}}, {"id": "fb964574-e250-42a2-ac25-65822ec0b409", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.960176+00:00", "label": "moderate", "label_explanation": "The traffic is moving slowly due to the wet road conditions, but there are no major disruptions.", "snapshot": {"id": "cb9f6dd1-be96-407c-9a9c-158f02250816", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/cb9f6dd1-be96-407c-9a9c-158f02250816.png", "timestamp": "2024-02-15T20:42:42.197215+00:00"}}, {"id": "c29a3876-788d-441d-a095-865716674e36", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.473564+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the car in the foreground.", "snapshot": {"id": "cb9f6dd1-be96-407c-9a9c-158f02250816", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/cb9f6dd1-be96-407c-9a9c-158f02250816.png", "timestamp": "2024-02-15T20:42:42.197215+00:00"}}, {"id": "eeb94f9f-975d-4007-91b7-17b3e69b1603", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.159515+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "cb9f6dd1-be96-407c-9a9c-158f02250816", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/cb9f6dd1-be96-407c-9a9c-158f02250816.png", "timestamp": "2024-02-15T20:42:42.197215+00:00"}}, {"id": "540a79a7-e0a0-4f21-8747-90a7091f82ca", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.308403+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime and the road is moderately wide, with two lanes visible. The road surface is wet from recent rain, with some small puddles forming.", "snapshot": {"id": "8e709deb-d246-4880-8f22-21044d2d4585", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/8e709deb-d246-4880-8f22-21044d2d4585.png", "timestamp": "2024-02-15T20:54:43.902235+00:00"}}, {"id": "5d0fc3e3-9fee-44b6-9e95-3b21d85b6b14", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.130888+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving at a steady pace. There are no major obstructions or congestion visible in the image.", "snapshot": {"id": "8e709deb-d246-4880-8f22-21044d2d4585", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/8e709deb-d246-4880-8f22-21044d2d4585.png", "timestamp": "2024-02-15T20:54:43.902235+00:00"}}, {"id": "0a289344-2e0e-4234-a203-202977221431", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.543122+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "8e709deb-d246-4880-8f22-21044d2d4585", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/8e709deb-d246-4880-8f22-21044d2d4585.png", "timestamp": "2024-02-15T20:54:43.902235+00:00"}}, {"id": "fd0a6b97-ff59-4ce3-8d15-12fd2420b44d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.866158+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles scattered around. The majority of the road surface is still visible and dry.", "snapshot": {"id": "8e709deb-d246-4880-8f22-21044d2d4585", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/8e709deb-d246-4880-8f22-21044d2d4585.png", "timestamp": "2024-02-15T20:54:43.902235+00:00"}}, {"id": "958b657c-4f82-4d34-9e99-17bbf75d517a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.748180+00:00", "label": "true", "label_explanation": "The image is slightly blurry, but overall clear with no major distortions or data loss.", "snapshot": {"id": "8e709deb-d246-4880-8f22-21044d2d4585", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/8e709deb-d246-4880-8f22-21044d2d4585.png", "timestamp": "2024-02-15T20:54:43.902235+00:00"}}, {"id": "c0e2ea89-522b-4f37-babc-b1bdb61d24d3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.366929+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades. Traffic is able to flow freely in both directions.", "snapshot": {"id": "8e709deb-d246-4880-8f22-21044d2d4585", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/8e709deb-d246-4880-8f22-21044d2d4585.png", "timestamp": "2024-02-15T20:54:43.902235+00:00"}}, {"id": "f34f2c41-c09e-426d-b179-808ad0bf20f3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.680024+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable for vehicles.", "snapshot": {"id": "f35d6db0-3d9b-40fa-ab74-f2b72767bafb", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f35d6db0-3d9b-40fa-ab74-f2b72767bafb.png", "timestamp": "2024-02-15T20:52:15.438520+00:00"}}, {"id": "fbc8cc74-653e-4e5d-8f5b-a2bdbd6eba48", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.346741+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move through the puddles without difficulty.", "snapshot": {"id": "f35d6db0-3d9b-40fa-ab74-f2b72767bafb", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f35d6db0-3d9b-40fa-ab74-f2b72767bafb.png", "timestamp": "2024-02-15T20:52:15.438520+00:00"}}, {"id": "231e9895-5715-4161-848f-1d9b1d5b1bc5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.112478+00:00", "label": "medium", "label_explanation": "The water level on the road is moderate. The puddles are large and numerous, but they do not cover the entire road surface. Vehicles can still pass through the puddles without difficulty.", "snapshot": {"id": "f35d6db0-3d9b-40fa-ab74-f2b72767bafb", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f35d6db0-3d9b-40fa-ab74-f2b72767bafb.png", "timestamp": "2024-02-15T20:52:15.438520+00:00"}}, {"id": "7746f476-915c-4fc7-b1a2-15f87d703285", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.578374+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several large puddles on the road surface, but the road is still passable for vehicles.", "snapshot": {"id": "f35d6db0-3d9b-40fa-ab74-f2b72767bafb", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f35d6db0-3d9b-40fa-ab74-f2b72767bafb.png", "timestamp": "2024-02-15T20:52:15.438520+00:00"}}, {"id": "5c9a0f28-f372-40a7-bc30-167537ac8f08", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.275622+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f35d6db0-3d9b-40fa-ab74-f2b72767bafb", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f35d6db0-3d9b-40fa-ab74-f2b72767bafb.png", "timestamp": "2024-02-15T20:52:15.438520+00:00"}}, {"id": "b6b7815c-235c-4678-abba-430c39c310b6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.785943+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are several large puddles on the road surface.", "snapshot": {"id": "f35d6db0-3d9b-40fa-ab74-f2b72767bafb", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/f35d6db0-3d9b-40fa-ab74-f2b72767bafb.png", "timestamp": "2024-02-15T20:52:15.438520+00:00"}}, {"id": "76c75a3a-6d4d-497b-8063-76911193938c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.546552+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "3265ef3b-3aa0-4df1-b243-cbd9c7337800", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/3265ef3b-3aa0-4df1-b243-cbd9c7337800.png", "timestamp": "2024-02-15T20:49:51.997788+00:00"}}, {"id": "d84c20a3-6123-4c60-a541-614ed03ef977", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.288248+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "3265ef3b-3aa0-4df1-b243-cbd9c7337800", "camera_id": "001508", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001508/3265ef3b-3aa0-4df1-b243-cbd9c7337800.png", "timestamp": "2024-02-15T20:49:51.997788+00:00"}}]}, {"id": "001384", "name": "AV. AYRTON SENNA, 5850 - EM FRENTE AO ESPA\u00c7O HALL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.123/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9603695, "longitude": -43.35732, "objects": ["traffic", "image_description", "rain", "road_blockade", "image_corrupted", "water_level"], "identifications": [{"id": "23ab1972-bd4a-43a6-86dc-c19f20c7154d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:01.565689+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "30852c82-4acc-4bc5-93b1-44407d169286", "camera_id": "001384", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001384/30852c82-4acc-4bc5-93b1-44407d169286.png", "timestamp": "2024-02-15T20:36:52.669136+00:00"}}, {"id": "4b1ece81-c872-4bdb-9a4c-7426ef054811", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:01.368715+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "30852c82-4acc-4bc5-93b1-44407d169286", "camera_id": "001384", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001384/30852c82-4acc-4bc5-93b1-44407d169286.png", "timestamp": "2024-02-15T20:36:52.669136+00:00"}}]}, {"id": "001080", "name": "ESTR. DO CAFUND\u00c1 X ESTR. MERINGUAVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.121/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914204, "longitude": -43.37502635, "objects": ["image_description", "image_corrupted", "rain", "traffic", "water_level", "road_blockade"], "identifications": [{"id": "e3858e93-e3e7-4267-9996-9fe7848d6eb8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.730702+00:00", "label": "low", "label_explanation": "There are several puddles of water on the road surface, but they are relatively small and shallow, covering only a small portion of the road.", "snapshot": {"id": "25a4dfb7-c4d4-4efb-89af-ca56633acba5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/25a4dfb7-c4d4-4efb-89af-ca56633acba5.png", "timestamp": "2024-02-15T20:30:14.192483+00:00"}}, {"id": "e816fef6-6934-4c24-97be-9e1bb3ac22d1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.861724+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It shows a wide, straight road with commercial buildings on both sides. There are several vehicles parked on the side of the road, and a few cars are driving in the street. The weather appears to be cloudy and wet, as the road is visibly wet and there are water puddles.", "snapshot": {"id": "25a4dfb7-c4d4-4efb-89af-ca56633acba5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/25a4dfb7-c4d4-4efb-89af-ca56633acba5.png", "timestamp": "2024-02-15T20:30:14.192483+00:00"}}, {"id": "13dcc896-2d36-4112-99c1-3b724660bf6d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.986805+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars driving on the road. The parked vehicles on the side of the road do not impede traffic flow.", "snapshot": {"id": "25a4dfb7-c4d4-4efb-89af-ca56633acba5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/25a4dfb7-c4d4-4efb-89af-ca56633acba5.png", "timestamp": "2024-02-15T20:30:14.192483+00:00"}}, {"id": "0bd8ab86-12f1-43b5-a92c-c71b92f51a56", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.341990+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "25a4dfb7-c4d4-4efb-89af-ca56633acba5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/25a4dfb7-c4d4-4efb-89af-ca56633acba5.png", "timestamp": "2024-02-15T20:30:14.192483+00:00"}}, {"id": "d5f5e5dd-07c5-460b-9abc-dadfce244cbf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.505434+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "25a4dfb7-c4d4-4efb-89af-ca56633acba5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/25a4dfb7-c4d4-4efb-89af-ca56633acba5.png", "timestamp": "2024-02-15T20:30:14.192483+00:00"}}, {"id": "c5453b34-0013-4849-9dea-8337688d953f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.295640+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "25a4dfb7-c4d4-4efb-89af-ca56633acba5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/25a4dfb7-c4d4-4efb-89af-ca56633acba5.png", "timestamp": "2024-02-15T20:30:14.192483+00:00"}}, {"id": "a02c7a15-e97d-45a1-83ad-bf6c5715c1af", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:59.385032+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road.", "snapshot": {"id": "34352b52-d85c-4db2-9f99-9d66ad667dd2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/34352b52-d85c-4db2-9f99-9d66ad667dd2.png", "timestamp": "2024-02-15T20:32:39.993055+00:00"}}, {"id": "6fe03268-e4eb-4647-a518-83afa476110c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:58.116380+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not impede traffic flow.", "snapshot": {"id": "34352b52-d85c-4db2-9f99-9d66ad667dd2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/34352b52-d85c-4db2-9f99-9d66ad667dd2.png", "timestamp": "2024-02-15T20:32:39.993055+00:00"}}, {"id": "c16eeb33-210f-4937-b729-7f69faad0285", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:59.046557+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "34352b52-d85c-4db2-9f99-9d66ad667dd2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/34352b52-d85c-4db2-9f99-9d66ad667dd2.png", "timestamp": "2024-02-15T20:32:39.993055+00:00"}}, {"id": "690b63a5-4e24-4b7d-8d62-96f9e6832805", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:57.397962+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "34352b52-d85c-4db2-9f99-9d66ad667dd2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/34352b52-d85c-4db2-9f99-9d66ad667dd2.png", "timestamp": "2024-02-15T20:32:39.993055+00:00"}}, {"id": "8e324729-aefa-4a3a-91da-b3a0e16464a6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.856524+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "34352b52-d85c-4db2-9f99-9d66ad667dd2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/34352b52-d85c-4db2-9f99-9d66ad667dd2.png", "timestamp": "2024-02-15T20:32:39.993055+00:00"}}, {"id": "c8c688a1-0f5c-4e13-bb9c-6c4868ef705e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.462861+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "34352b52-d85c-4db2-9f99-9d66ad667dd2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/34352b52-d85c-4db2-9f99-9d66ad667dd2.png", "timestamp": "2024-02-15T20:32:39.993055+00:00"}}, {"id": "2323d3c5-e51d-4331-9623-e62266f40dd3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.397961+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "fc003634-8f92-40e5-9eb0-e0fae0f994c5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/fc003634-8f92-40e5-9eb0-e0fae0f994c5.png", "timestamp": "2024-02-15T20:37:45.620867+00:00"}}, {"id": "5443a295-075e-4800-a40d-1afff10f9b81", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.445764+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "fc003634-8f92-40e5-9eb0-e0fae0f994c5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/fc003634-8f92-40e5-9eb0-e0fae0f994c5.png", "timestamp": "2024-02-15T20:37:45.620867+00:00"}}, {"id": "b5df1f34-06e2-4fee-a83b-f4011f1e58a2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:01.899611+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles visible.", "snapshot": {"id": "fc003634-8f92-40e5-9eb0-e0fae0f994c5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/fc003634-8f92-40e5-9eb0-e0fae0f994c5.png", "timestamp": "2024-02-15T20:37:45.620867+00:00"}}, {"id": "cf54ffae-f09a-4064-a443-768f84800aeb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:01.122865+00:00", "label": "true", "label_explanation": "There are wet patches on the road surface, indicating recent rainfall.", "snapshot": {"id": "fc003634-8f92-40e5-9eb0-e0fae0f994c5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/fc003634-8f92-40e5-9eb0-e0fae0f994c5.png", "timestamp": "2024-02-15T20:37:45.620867+00:00"}}, {"id": "096f0dd1-b73f-4ed4-9ef0-08472d540d4c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.773360+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "fc003634-8f92-40e5-9eb0-e0fae0f994c5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/fc003634-8f92-40e5-9eb0-e0fae0f994c5.png", "timestamp": "2024-02-15T20:37:45.620867+00:00"}}, {"id": "25cc942d-5994-4a80-8256-04eaa37c542a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.948932+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fc003634-8f92-40e5-9eb0-e0fae0f994c5", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/fc003634-8f92-40e5-9eb0-e0fae0f994c5.png", "timestamp": "2024-02-15T20:37:45.620867+00:00"}}, {"id": "c8784d40-3e5c-4ba2-8c0e-7d597a07ab8d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:30.528881+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear, and traffic is able to flow freely.", "snapshot": {"id": "512fe75b-1048-4258-849d-9da2560a5c2a", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/512fe75b-1048-4258-849d-9da2560a5c2a.png", "timestamp": "2024-02-15T20:35:14.539114+00:00"}}, {"id": "90d6c45b-9674-4d10-81f2-ca399ac6e8b1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.413245+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "512fe75b-1048-4258-849d-9da2560a5c2a", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/512fe75b-1048-4258-849d-9da2560a5c2a.png", "timestamp": "2024-02-15T20:35:14.539114+00:00"}}, {"id": "2f4200e8-66a5-44b6-b163-ea0645c22a89", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.853425+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and trucks. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "512fe75b-1048-4258-849d-9da2560a5c2a", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/512fe75b-1048-4258-849d-9da2560a5c2a.png", "timestamp": "2024-02-15T20:35:14.539114+00:00"}}, {"id": "6c655ed1-118b-450b-9303-8458cae6df7f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:29.940012+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "512fe75b-1048-4258-849d-9da2560a5c2a", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/512fe75b-1048-4258-849d-9da2560a5c2a.png", "timestamp": "2024-02-15T20:35:14.539114+00:00"}}, {"id": "769d09c7-b0bd-4fdd-a127-5ef9c02d6706", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:29.297865+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "512fe75b-1048-4258-849d-9da2560a5c2a", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/512fe75b-1048-4258-849d-9da2560a5c2a.png", "timestamp": "2024-02-15T20:35:14.539114+00:00"}}, {"id": "c24949fd-c9de-41c8-86dd-6f85210b029f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:30.257482+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "512fe75b-1048-4258-849d-9da2560a5c2a", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/512fe75b-1048-4258-849d-9da2560a5c2a.png", "timestamp": "2024-02-15T20:35:14.539114+00:00"}}, {"id": "ed3b8432-5061-47ea-b615-77b6739cad67", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.959750+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and trucks. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "76d40d9c-9e52-4379-a3ab-2040f0432ec1", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/76d40d9c-9e52-4379-a3ab-2040f0432ec1.png", "timestamp": "2024-02-15T20:42:43.116198+00:00"}}, {"id": "1735e35e-0525-4776-8823-9c1145f0e6be", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.116007+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "76d40d9c-9e52-4379-a3ab-2040f0432ec1", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/76d40d9c-9e52-4379-a3ab-2040f0432ec1.png", "timestamp": "2024-02-15T20:42:43.116198+00:00"}}, {"id": "bc59e1d4-6f9b-4cf6-b256-e4a4b1484518", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.990199+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "76d40d9c-9e52-4379-a3ab-2040f0432ec1", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/76d40d9c-9e52-4379-a3ab-2040f0432ec1.png", "timestamp": "2024-02-15T20:42:43.116198+00:00"}}, {"id": "4ae2c5fb-3171-4af6-9aa1-c2bb0c8751c3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.621253+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "76d40d9c-9e52-4379-a3ab-2040f0432ec1", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/76d40d9c-9e52-4379-a3ab-2040f0432ec1.png", "timestamp": "2024-02-15T20:42:43.116198+00:00"}}, {"id": "fc5630aa-a96c-40f8-a40d-37dd575eb972", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.565456+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away.", "snapshot": {"id": "76d40d9c-9e52-4379-a3ab-2040f0432ec1", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/76d40d9c-9e52-4379-a3ab-2040f0432ec1.png", "timestamp": "2024-02-15T20:42:43.116198+00:00"}}, {"id": "622e13ed-348a-4b49-9c7b-96317c13b114", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.777427+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "76d40d9c-9e52-4379-a3ab-2040f0432ec1", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/76d40d9c-9e52-4379-a3ab-2040f0432ec1.png", "timestamp": "2024-02-15T20:42:43.116198+00:00"}}, {"id": "51e0b46c-9d10-45ec-98ab-c702347b10c8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:32.707776+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few vehicles on the road, but they are all moving at a steady pace.", "snapshot": {"id": "10fd5675-620b-46d4-ae77-65d359aa7199", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/10fd5675-620b-46d4-ae77-65d359aa7199.png", "timestamp": "2024-02-15T20:40:15.459317+00:00"}}, {"id": "73ca5416-8c82-440f-a4d1-7d5d08053487", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.807188+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a traffic light at the intersection. There are several vehicles on the road, including a large truck, a white van, and a yellow van. There are also a few pedestrians on the sidewalk.", "snapshot": {"id": "10fd5675-620b-46d4-ae77-65d359aa7199", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/10fd5675-620b-46d4-ae77-65d359aa7199.png", "timestamp": "2024-02-15T20:40:15.459317+00:00"}}, {"id": "2923b903-0b98-481f-8c53-aba5e12b675e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.289350+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "10fd5675-620b-46d4-ae77-65d359aa7199", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/10fd5675-620b-46d4-ae77-65d359aa7199.png", "timestamp": "2024-02-15T20:40:15.459317+00:00"}}, {"id": "0caa2020-4cbc-4636-b80d-79fe2fdba313", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:32.413452+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "10fd5675-620b-46d4-ae77-65d359aa7199", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/10fd5675-620b-46d4-ae77-65d359aa7199.png", "timestamp": "2024-02-15T20:40:15.459317+00:00"}}, {"id": "6936ddbd-d87a-40b7-8604-a9bbcd45c19e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:32.169475+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "10fd5675-620b-46d4-ae77-65d359aa7199", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/10fd5675-620b-46d4-ae77-65d359aa7199.png", "timestamp": "2024-02-15T20:40:15.459317+00:00"}}, {"id": "450dc86c-a3bf-4b60-8533-38729dc7a991", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:32.908489+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is completely clear.", "snapshot": {"id": "10fd5675-620b-46d4-ae77-65d359aa7199", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/10fd5675-620b-46d4-ae77-65d359aa7199.png", "timestamp": "2024-02-15T20:40:15.459317+00:00"}}, {"id": "91029d76-d34b-4721-84de-03d7463f200d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.341827+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are not deep enough to cause any significant hazards or impede traffic flow.", "snapshot": {"id": "f686c182-0eb4-46d4-9c87-45cf210d5ab2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/f686c182-0eb4-46d4-9c87-45cf210d5ab2.png", "timestamp": "2024-02-15T20:45:05.389512+00:00"}}, {"id": "96a9e523-f969-407d-9b15-bdb74337b9bc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.749496+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "f686c182-0eb4-46d4-9c87-45cf210d5ab2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/f686c182-0eb4-46d4-9c87-45cf210d5ab2.png", "timestamp": "2024-02-15T20:45:05.389512+00:00"}}, {"id": "8569c539-b9a9-42d4-9758-c9a7b2818869", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.643987+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "f686c182-0eb4-46d4-9c87-45cf210d5ab2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/f686c182-0eb4-46d4-9c87-45cf210d5ab2.png", "timestamp": "2024-02-15T20:45:05.389512+00:00"}}, {"id": "efcd9f25-bc2d-4fef-bfe5-b68855b37021", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.969952+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, and traffic is able to flow freely.", "snapshot": {"id": "f686c182-0eb4-46d4-9c87-45cf210d5ab2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/f686c182-0eb4-46d4-9c87-45cf210d5ab2.png", "timestamp": "2024-02-15T20:45:05.389512+00:00"}}, {"id": "6eaa2ec6-0eda-4c7e-9916-e0900dac2881", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.445403+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "f686c182-0eb4-46d4-9c87-45cf210d5ab2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/f686c182-0eb4-46d4-9c87-45cf210d5ab2.png", "timestamp": "2024-02-15T20:45:05.389512+00:00"}}, {"id": "9d8356b2-12ed-421e-9c80-63d19675f3af", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.003491+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f686c182-0eb4-46d4-9c87-45cf210d5ab2", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/f686c182-0eb4-46d4-9c87-45cf210d5ab2.png", "timestamp": "2024-02-15T20:45:05.389512+00:00"}}, {"id": "6830125d-ef09-4d28-a341-06873e83b1f1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.368616+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, but there are no large puddles or standing water.", "snapshot": {"id": "9f882cc4-fb6b-4ba5-b745-788039ef3fb8", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/9f882cc4-fb6b-4ba5-b745-788039ef3fb8.png", "timestamp": "2024-02-15T20:47:29.654303+00:00"}}, {"id": "68c27696-5b60-436b-8933-55793a7593b9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.242916+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or disruptions.", "snapshot": {"id": "9f882cc4-fb6b-4ba5-b745-788039ef3fb8", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/9f882cc4-fb6b-4ba5-b745-788039ef3fb8.png", "timestamp": "2024-02-15T20:47:29.654303+00:00"}}, {"id": "ff6b449a-d47d-43f7-a6da-baebddedbd2b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.163017+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9f882cc4-fb6b-4ba5-b745-788039ef3fb8", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/9f882cc4-fb6b-4ba5-b745-788039ef3fb8.png", "timestamp": "2024-02-15T20:47:29.654303+00:00"}}, {"id": "88110d2d-6980-4d10-863c-387e45006929", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.502692+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "9f882cc4-fb6b-4ba5-b745-788039ef3fb8", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/9f882cc4-fb6b-4ba5-b745-788039ef3fb8.png", "timestamp": "2024-02-15T20:47:29.654303+00:00"}}, {"id": "4cfde732-4fba-4e0e-a5e5-5ee877d9cc5a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.966803+00:00", "label": "low", "label_explanation": "There is no standing water on the road. The road is wet, but the water is not deep enough to cause any problems for vehicles.", "snapshot": {"id": "9f882cc4-fb6b-4ba5-b745-788039ef3fb8", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/9f882cc4-fb6b-4ba5-b745-788039ef3fb8.png", "timestamp": "2024-02-15T20:47:29.654303+00:00"}}, {"id": "d5d007d0-aaf9-4a09-87b2-a90435d9ea00", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.618064+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there are no large puddles or standing water.", "snapshot": {"id": "9f882cc4-fb6b-4ba5-b745-788039ef3fb8", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/9f882cc4-fb6b-4ba5-b745-788039ef3fb8.png", "timestamp": "2024-02-15T20:47:29.654303+00:00"}}, {"id": "456da183-e869-453a-abf6-772bd3be7ac5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.521561+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd.png", "timestamp": "2024-02-15T20:49:54.747319+00:00"}}, {"id": "fd74afb6-1f66-4b87-abb1-ad07c3ce1d19", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.216028+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road, and traffic is able to pass freely.", "snapshot": {"id": "747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd.png", "timestamp": "2024-02-15T20:49:54.747319+00:00"}}, {"id": "b65eef16-bf91-495d-b496-0eb2e8f6eed6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.928918+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of corruption or data loss.", "snapshot": {"id": "747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd.png", "timestamp": "2024-02-15T20:49:54.747319+00:00"}}, {"id": "7267a6c4-6d6a-4ebb-9d32-d96880b46bd6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.866932+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are not causing any significant traffic disruptions.", "snapshot": {"id": "747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd.png", "timestamp": "2024-02-15T20:49:54.747319+00:00"}}, {"id": "24782383-de97-4530-a9c9-0ab13b00875f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.036956+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd.png", "timestamp": "2024-02-15T20:49:54.747319+00:00"}}, {"id": "feff29b4-2aa1-41bc-a600-a334ba404db6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.130056+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a traffic light, several parked cars, and a horse-drawn cart.", "snapshot": {"id": "747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/747a6fa6-aba4-4a80-aaf2-0e746f4fb4bd.png", "timestamp": "2024-02-15T20:49:54.747319+00:00"}}, {"id": "a7a07475-75be-4e41-8083-89cae86c4a15", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.330604+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "7724aea4-eb1a-4178-96b2-4f7b6bc1c68e", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/7724aea4-eb1a-4178-96b2-4f7b6bc1c68e.png", "timestamp": "2024-02-15T20:52:17.941775+00:00"}}, {"id": "dec45b96-dd05-4081-a0c3-ce4c82f23455", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.731912+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7724aea4-eb1a-4178-96b2-4f7b6bc1c68e", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/7724aea4-eb1a-4178-96b2-4f7b6bc1c68e.png", "timestamp": "2024-02-15T20:52:17.941775+00:00"}}, {"id": "5f4e2482-4ddd-442f-a7a2-bad91365bfba", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.781583+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "7724aea4-eb1a-4178-96b2-4f7b6bc1c68e", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/7724aea4-eb1a-4178-96b2-4f7b6bc1c68e.png", "timestamp": "2024-02-15T20:52:17.941775+00:00"}}, {"id": "bf6b6445-0ac3-4403-9699-3a5aad335c33", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.000259+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with a wet road surface.", "snapshot": {"id": "7724aea4-eb1a-4178-96b2-4f7b6bc1c68e", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/7724aea4-eb1a-4178-96b2-4f7b6bc1c68e.png", "timestamp": "2024-02-15T20:52:17.941775+00:00"}}, {"id": "79390521-9ad6-491c-9aed-aae9184699b8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.124074+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "7724aea4-eb1a-4178-96b2-4f7b6bc1c68e", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/7724aea4-eb1a-4178-96b2-4f7b6bc1c68e.png", "timestamp": "2024-02-15T20:52:17.941775+00:00"}}, {"id": "130607b0-268b-44a1-9343-0f78b686f9d3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.259536+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "7724aea4-eb1a-4178-96b2-4f7b6bc1c68e", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/7724aea4-eb1a-4178-96b2-4f7b6bc1c68e.png", "timestamp": "2024-02-15T20:52:17.941775+00:00"}}, {"id": "e30b0f85-1a27-4c9e-a42d-559100cc5d12", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.755268+00:00", "label": "low", "label_explanation": "There are some puddles on the road, but the water level is not high enough to cause any significant traffic disruptions.", "snapshot": {"id": "371b5918-491c-47be-b6dc-148cb4948b2d", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/371b5918-491c-47be-b6dc-148cb4948b2d.png", "timestamp": "2024-02-15T20:54:48.066315+00:00"}}, {"id": "eac62f97-35fd-46fc-a697-83fbb652dc93", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.587124+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are some puddles on the surface.", "snapshot": {"id": "371b5918-491c-47be-b6dc-148cb4948b2d", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/371b5918-491c-47be-b6dc-148cb4948b2d.png", "timestamp": "2024-02-15T20:54:48.066315+00:00"}}, {"id": "22ac9250-3190-44d9-b4c1-ba20268c4273", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.296347+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a traffic light at the intersection. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, and there are some puddles on the surface. There is also a horse-drawn cart on the side of the road.", "snapshot": {"id": "371b5918-491c-47be-b6dc-148cb4948b2d", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/371b5918-491c-47be-b6dc-148cb4948b2d.png", "timestamp": "2024-02-15T20:54:48.066315+00:00"}}, {"id": "aca08fa8-f15c-4634-8137-09beca79b074", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.173250+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "371b5918-491c-47be-b6dc-148cb4948b2d", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/371b5918-491c-47be-b6dc-148cb4948b2d.png", "timestamp": "2024-02-15T20:54:48.066315+00:00"}}, {"id": "32762814-a097-4c49-a19a-bf7f282e0e81", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.111921+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "371b5918-491c-47be-b6dc-148cb4948b2d", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/371b5918-491c-47be-b6dc-148cb4948b2d.png", "timestamp": "2024-02-15T20:54:48.066315+00:00"}}, {"id": "dec455d1-0a52-44a3-abbc-b7b533aef708", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.975732+00:00", "label": "moderate", "label_explanation": "The traffic is moving slowly due to the wet road conditions.", "snapshot": {"id": "371b5918-491c-47be-b6dc-148cb4948b2d", "camera_id": "001080", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001080/371b5918-491c-47be-b6dc-148cb4948b2d.png", "timestamp": "2024-02-15T20:54:48.066315+00:00"}}]}, {"id": "001509", "name": "R. FRANCISCO EUG\u00caNIO, 329 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9074784, "longitude": -43.21917874, "objects": ["image_description", "road_blockade", "water_level", "image_corrupted", "rain", "traffic"], "identifications": [{"id": "595bde26-4d86-4c70-b965-c764f9d5bb45", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.107611+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "b5d37041-1366-4358-a2bd-fdb32edbfc1c", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/b5d37041-1366-4358-a2bd-fdb32edbfc1c.png", "timestamp": "2024-02-15T20:30:14.703520+00:00"}}, {"id": "0044e903-7c3e-4fe6-a256-e4a3d6231592", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.772929+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "b5d37041-1366-4358-a2bd-fdb32edbfc1c", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/b5d37041-1366-4358-a2bd-fdb32edbfc1c.png", "timestamp": "2024-02-15T20:30:14.703520+00:00"}}, {"id": "e17e1714-155c-4598-86c0-14ebb0e6cc66", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.674499+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be described.", "snapshot": {"id": "ca9e230a-87bc-4e3b-8a9f-4c322ca454fe", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ca9e230a-87bc-4e3b-8a9f-4c322ca454fe.png", "timestamp": "2024-02-15T20:35:14.724557+00:00"}}, {"id": "5750effd-3041-4a68-86ca-6ea38fb5f9ba", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.090785+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "ca9e230a-87bc-4e3b-8a9f-4c322ca454fe", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ca9e230a-87bc-4e3b-8a9f-4c322ca454fe.png", "timestamp": "2024-02-15T20:35:14.724557+00:00"}}, {"id": "b956584a-a769-4843-86c0-af2ba9dacc6b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.900053+00:00", "label": "low", "label_explanation": "The water level on the road is relatively low, with some areas showing shallow puddles and others appearing dry.", "snapshot": {"id": "010c0f78-0625-4255-800c-5a3c739c5389", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/010c0f78-0625-4255-800c-5a3c739c5389.png", "timestamp": "2024-02-15T20:37:45.746978+00:00"}}, {"id": "b9e7f26a-34b4-4809-8661-0c7962760401", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.345156+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for normal traffic flow.", "snapshot": {"id": "010c0f78-0625-4255-800c-5a3c739c5389", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/010c0f78-0625-4255-800c-5a3c739c5389.png", "timestamp": "2024-02-15T20:37:45.746978+00:00"}}, {"id": "bd71e737-8940-4635-abaf-8e94a60fb518", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:01.875738+00:00", "label": "easy", "label_explanation": "The traffic appears to be moving smoothly, with no major disruptions caused by the rain.", "snapshot": {"id": "010c0f78-0625-4255-800c-5a3c739c5389", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/010c0f78-0625-4255-800c-5a3c739c5389.png", "timestamp": "2024-02-15T20:37:45.746978+00:00"}}, {"id": "91ce209a-de62-47f5-84a1-71f723a9826d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.063664+00:00", "label": "true", "label_explanation": "There is water on the road surface, indicating that it has been raining.", "snapshot": {"id": "010c0f78-0625-4255-800c-5a3c739c5389", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/010c0f78-0625-4255-800c-5a3c739c5389.png", "timestamp": "2024-02-15T20:37:45.746978+00:00"}}, {"id": "00e8febd-abd5-4e24-a0ad-826203527f0b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.700008+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a few pedestrians on the sidewalk and vehicles on the street. It appears to have been taken during the day.", "snapshot": {"id": "010c0f78-0625-4255-800c-5a3c739c5389", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/010c0f78-0625-4255-800c-5a3c739c5389.png", "timestamp": "2024-02-15T20:37:45.746978+00:00"}}, {"id": "2cf08171-4951-4a2a-a9f0-29c895de4c08", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.226287+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "010c0f78-0625-4255-800c-5a3c739c5389", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/010c0f78-0625-4255-800c-5a3c739c5389.png", "timestamp": "2024-02-15T20:37:45.746978+00:00"}}, {"id": "990a2c33-4936-400b-bce6-0cbb5232151d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:33.856038+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, with some puddles on the surface.", "snapshot": {"id": "ddc05e52-6292-46fa-b433-3af8e4fd2c43", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ddc05e52-6292-46fa-b433-3af8e4fd2c43.png", "timestamp": "2024-02-15T20:40:17.348973+00:00"}}, {"id": "c9517df8-06e7-4039-a06c-d5e064a3c2cf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.494510+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars on the road.", "snapshot": {"id": "ddc05e52-6292-46fa-b433-3af8e4fd2c43", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ddc05e52-6292-46fa-b433-3af8e4fd2c43.png", "timestamp": "2024-02-15T20:40:17.348973+00:00"}}, {"id": "603256f5-ab7c-4a4c-accd-f633dee87578", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.222719+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only some puddles on the surface.", "snapshot": {"id": "ddc05e52-6292-46fa-b433-3af8e4fd2c43", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ddc05e52-6292-46fa-b433-3af8e4fd2c43.png", "timestamp": "2024-02-15T20:40:17.348973+00:00"}}, {"id": "40ca7c4a-4bd2-4bf1-abc5-5173405f31cd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.975120+00:00", "label": "free", "label_explanation": "There are no road blockades, and the road is clear for traffic.", "snapshot": {"id": "ddc05e52-6292-46fa-b433-3af8e4fd2c43", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ddc05e52-6292-46fa-b433-3af8e4fd2c43.png", "timestamp": "2024-02-15T20:40:17.348973+00:00"}}, {"id": "d6a1549c-df26-40b5-b621-bed152098432", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:33.457603+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a yellow taxi driving in the rightmost lane. The road is wet from recent rain, with some puddles on the surface. There are trees and buildings on either side of the road, and the sky is overcast.", "snapshot": {"id": "ddc05e52-6292-46fa-b433-3af8e4fd2c43", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ddc05e52-6292-46fa-b433-3af8e4fd2c43.png", "timestamp": "2024-02-15T20:40:17.348973+00:00"}}, {"id": "c17e4d47-2f36-4829-b827-65c25efcd0a5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:33.129860+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "ddc05e52-6292-46fa-b433-3af8e4fd2c43", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ddc05e52-6292-46fa-b433-3af8e4fd2c43.png", "timestamp": "2024-02-15T20:40:17.348973+00:00"}}, {"id": "315e1c1c-8331-4339-be65-0b8a209153d2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:58.199379+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "cad0aced-b538-48d9-8f59-beff6e12f433", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/cad0aced-b538-48d9-8f59-beff6e12f433.png", "timestamp": "2024-02-15T20:42:45.239561+00:00"}}, {"id": "fe5fe861-c8de-4e11-905c-5dd6a5f2c503", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.577936+00:00", "label": "low", "label_explanation": "There are some puddles on the road, but the water level is generally low and does not pose a significant risk to traffic.", "snapshot": {"id": "cad0aced-b538-48d9-8f59-beff6e12f433", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/cad0aced-b538-48d9-8f59-beff6e12f433.png", "timestamp": "2024-02-15T20:42:45.239561+00:00"}}, {"id": "abb9f970-21b6-4c93-907f-6499d23cc776", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.810021+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cad0aced-b538-48d9-8f59-beff6e12f433", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/cad0aced-b538-48d9-8f59-beff6e12f433.png", "timestamp": "2024-02-15T20:42:45.239561+00:00"}}, {"id": "cc2aeb55-a925-49ed-8ad7-10ff5a4e1726", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.938702+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a few cars driving in both directions. Traffic is able to flow smoothly, albeit at a reduced speed due to the wet conditions.", "snapshot": {"id": "cad0aced-b538-48d9-8f59-beff6e12f433", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/cad0aced-b538-48d9-8f59-beff6e12f433.png", "timestamp": "2024-02-15T20:42:45.239561+00:00"}}, {"id": "fb1c1754-6002-4fe1-8bc9-dd96b346a11b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.326216+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the vehicle taking the image.", "snapshot": {"id": "cad0aced-b538-48d9-8f59-beff6e12f433", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/cad0aced-b538-48d9-8f59-beff6e12f433.png", "timestamp": "2024-02-15T20:42:45.239561+00:00"}}, {"id": "d63963a7-53ba-44bf-85fa-1a198d0b4ede", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.015279+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road surface is wet. There are several parked cars on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "cad0aced-b538-48d9-8f59-beff6e12f433", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/cad0aced-b538-48d9-8f59-beff6e12f433.png", "timestamp": "2024-02-15T20:42:45.239561+00:00"}}, {"id": "115b6ad2-b3c3-49ca-8189-c9d8d7c88dd0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.675093+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with a few cars driving on the road.", "snapshot": {"id": "3ac7df37-7a5f-4a0a-bbcb-dd77743aa898", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/3ac7df37-7a5f-4a0a-bbcb-dd77743aa898.png", "timestamp": "2024-02-15T20:47:30.829589+00:00"}}, {"id": "4a536455-9fb0-4820-9dba-ad8ffb0f1119", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.804842+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "3ac7df37-7a5f-4a0a-bbcb-dd77743aa898", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/3ac7df37-7a5f-4a0a-bbcb-dd77743aa898.png", "timestamp": "2024-02-15T20:47:30.829589+00:00"}}, {"id": "4c7a6fff-9dad-44c5-9e35-f058c61fe84e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.303352+00:00", "label": "low", "label_explanation": "The water level on the road is low, with some puddles but no significant accumulation.", "snapshot": {"id": "3ac7df37-7a5f-4a0a-bbcb-dd77743aa898", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/3ac7df37-7a5f-4a0a-bbcb-dd77743aa898.png", "timestamp": "2024-02-15T20:47:30.829589+00:00"}}, {"id": "d56cadc2-cfaf-4db9-a9e4-35b917566fe0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.631793+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3ac7df37-7a5f-4a0a-bbcb-dd77743aa898", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/3ac7df37-7a5f-4a0a-bbcb-dd77743aa898.png", "timestamp": "2024-02-15T20:47:30.829589+00:00"}}, {"id": "5447cd46-c783-482a-9565-679e6c038a2b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.101717+00:00", "label": "true", "label_explanation": "The road surface is wet and there are small puddles of water on the road.", "snapshot": {"id": "3ac7df37-7a5f-4a0a-bbcb-dd77743aa898", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/3ac7df37-7a5f-4a0a-bbcb-dd77743aa898.png", "timestamp": "2024-02-15T20:47:30.829589+00:00"}}, {"id": "7091d503-cfbc-4797-b36b-f8814bab3783", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.964628+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few cars on it. It is daytime and the weather appears to be cloudy and rainy.", "snapshot": {"id": "3ac7df37-7a5f-4a0a-bbcb-dd77743aa898", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/3ac7df37-7a5f-4a0a-bbcb-dd77743aa898.png", "timestamp": "2024-02-15T20:47:30.829589+00:00"}}, {"id": "5e93540a-fa18-48d2-9506-ddd9bec52055", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.624840+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, and there are some small puddles on the road.", "snapshot": {"id": "81d47075-9c62-4ed5-b022-081f91915769", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/81d47075-9c62-4ed5-b022-081f91915769.png", "timestamp": "2024-02-15T20:45:06.675347+00:00"}}, {"id": "94d3f91c-4570-4834-88f7-d93fa2a35ebf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.459411+00:00", "label": "easy", "label_explanation": "The road is wet from rain, but traffic is still able to flow smoothly.", "snapshot": {"id": "81d47075-9c62-4ed5-b022-081f91915769", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/81d47075-9c62-4ed5-b022-081f91915769.png", "timestamp": "2024-02-15T20:45:06.675347+00:00"}}, {"id": "6bf7c071-7197-43b7-ae28-99c6df0cb4fa", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.856629+00:00", "label": "low", "label_explanation": "There are some small puddles on the road, but the water level is not high enough to cause any significant traffic disruptions.", "snapshot": {"id": "81d47075-9c62-4ed5-b022-081f91915769", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/81d47075-9c62-4ed5-b022-081f91915769.png", "timestamp": "2024-02-15T20:45:06.675347+00:00"}}, {"id": "459a1ce1-809d-4c53-b5e5-191cecd32765", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.426714+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few parked cars on the side and a larger white vehicle in the middle of the road. There are trees on either side of the road, and buildings and other structures in the background. The road surface is wet from recent rain, and there are some small puddles on the road.", "snapshot": {"id": "81d47075-9c62-4ed5-b022-081f91915769", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/81d47075-9c62-4ed5-b022-081f91915769.png", "timestamp": "2024-02-15T20:45:06.675347+00:00"}}, {"id": "369e06a3-5d1c-4aa9-992d-0e288f899901", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.713184+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "81d47075-9c62-4ed5-b022-081f91915769", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/81d47075-9c62-4ed5-b022-081f91915769.png", "timestamp": "2024-02-15T20:45:06.675347+00:00"}}, {"id": "1a883e74-4073-440d-8f11-6745cdb5082c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.170796+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "81d47075-9c62-4ed5-b022-081f91915769", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/81d47075-9c62-4ed5-b022-081f91915769.png", "timestamp": "2024-02-15T20:45:06.675347+00:00"}}, {"id": "77ff6a2b-e015-44be-a78e-e68275128273", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:00.805531+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09.png", "timestamp": "2024-02-15T20:32:41.399877+00:00"}}, {"id": "dbff55bd-71be-43e1-939c-a8e8f6145325", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:01.429178+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09.png", "timestamp": "2024-02-15T20:32:41.399877+00:00"}}, {"id": "ecd53aa4-5300-4d9b-8359-996b9c515792", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:59.280684+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and there is water on the road surface. There are several vehicles on the road, and the traffic appears to be moderate.", "snapshot": {"id": "1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09.png", "timestamp": "2024-02-15T20:32:41.399877+00:00"}}, {"id": "5ff9decd-3227-4501-8037-0c56309a9177", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:59.876973+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the vehicle capturing the image.", "snapshot": {"id": "1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09.png", "timestamp": "2024-02-15T20:32:41.399877+00:00"}}, {"id": "2d3739ae-5859-4b15-b541-ffd27a206f5c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:58.942596+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09.png", "timestamp": "2024-02-15T20:32:41.399877+00:00"}}, {"id": "5092342b-ea9d-4370-bb3d-c602dc5f3117", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:00.454266+00:00", "label": "low", "label_explanation": "The water level on the road is relatively low, with some areas showing slight flooding. The deepest parts are located on the left side of the image, near the curb.", "snapshot": {"id": "1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/1b953758-d8c2-4dc9-8a1a-6ba5e31a7d09.png", "timestamp": "2024-02-15T20:32:41.399877+00:00"}}, {"id": "75881bed-de36-4264-b17f-36fc910467f7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.471548+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable in both directions.", "snapshot": {"id": "ea8105bd-ee8c-414e-990f-f74c99963692", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ea8105bd-ee8c-414e-990f-f74c99963692.png", "timestamp": "2024-02-15T20:49:56.681672+00:00"}}, {"id": "8c27f2f5-cb52-4f7a-bf96-8ec6dac0b45b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.117012+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and the road surface is still visible. There is no significant risk of hydroplaning or other water-related hazards.", "snapshot": {"id": "ea8105bd-ee8c-414e-990f-f74c99963692", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ea8105bd-ee8c-414e-990f-f74c99963692.png", "timestamp": "2024-02-15T20:49:56.681672+00:00"}}, {"id": "9cf66ff5-eff1-4bf7-aee2-51a1ee0b29de", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.272620+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a reasonable speed. There are no major traffic jams or delays.", "snapshot": {"id": "ea8105bd-ee8c-414e-990f-f74c99963692", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ea8105bd-ee8c-414e-990f-f74c99963692.png", "timestamp": "2024-02-15T20:49:56.681672+00:00"}}, {"id": "6700964f-9023-4f11-bff3-6b406cc16e2a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.561325+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rainfall. There are several vehicles on the road, including a bus, a motorcycle, and a few cars. The road is lined with trees, and there are buildings and other structures in the background.", "snapshot": {"id": "ea8105bd-ee8c-414e-990f-f74c99963692", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ea8105bd-ee8c-414e-990f-f74c99963692.png", "timestamp": "2024-02-15T20:49:56.681672+00:00"}}, {"id": "33fa5b85-d475-4d93-b6c9-e2b468ab80ea", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.446045+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ea8105bd-ee8c-414e-990f-f74c99963692", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ea8105bd-ee8c-414e-990f-f74c99963692.png", "timestamp": "2024-02-15T20:49:56.681672+00:00"}}, {"id": "0baea515-704c-4b37-a91b-16f6f26d31bd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.776097+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are puddles of water on the road. The reflections on the road surface indicate that the rain has recently stopped.", "snapshot": {"id": "ea8105bd-ee8c-414e-990f-f74c99963692", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/ea8105bd-ee8c-414e-990f-f74c99963692.png", "timestamp": "2024-02-15T20:49:56.681672+00:00"}}, {"id": "53627808-ba5d-4fa4-918c-d5bc813f58a9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.788388+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few parked cars on the side and a larger white truck driving in the center. It is daytime and the weather appears to be cloudy and wet as the road is visibly wet and there are reflections on the road surface.", "snapshot": {"id": "bbf1315c-6ef2-49d9-b748-af86428e1e40", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/bbf1315c-6ef2-49d9-b748-af86428e1e40.png", "timestamp": "2024-02-15T20:52:18.589971+00:00"}}, {"id": "43c3f107-f596-43de-abaa-ab23b14a390c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.926574+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "bbf1315c-6ef2-49d9-b748-af86428e1e40", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/bbf1315c-6ef2-49d9-b748-af86428e1e40.png", "timestamp": "2024-02-15T20:52:18.589971+00:00"}}, {"id": "1ec3f85a-1e6b-487c-9a84-d69c67c706d3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.593972+00:00", "label": "easy", "label_explanation": "The truck is able to drive through the water without any difficulty, indicating that the road is still passable.", "snapshot": {"id": "bbf1315c-6ef2-49d9-b748-af86428e1e40", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/bbf1315c-6ef2-49d9-b748-af86428e1e40.png", "timestamp": "2024-02-15T20:52:18.589971+00:00"}}, {"id": "0ad5ff51-41a5-4eff-a486-fc1be6e6d329", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.344926+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bbf1315c-6ef2-49d9-b748-af86428e1e40", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/bbf1315c-6ef2-49d9-b748-af86428e1e40.png", "timestamp": "2024-02-15T20:52:18.589971+00:00"}}, {"id": "2509741f-5fa1-4f7d-8177-343fe8b4f686", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.037183+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "bbf1315c-6ef2-49d9-b748-af86428e1e40", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/bbf1315c-6ef2-49d9-b748-af86428e1e40.png", "timestamp": "2024-02-15T20:52:18.589971+00:00"}}, {"id": "545c3e6a-46c7-4c89-804d-3599b9d735f8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.322482+00:00", "label": "low", "label_explanation": "There are some puddles on the road, but the water level is generally low and does not pose a significant risk to traffic.", "snapshot": {"id": "bbf1315c-6ef2-49d9-b748-af86428e1e40", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/bbf1315c-6ef2-49d9-b748-af86428e1e40.png", "timestamp": "2024-02-15T20:52:18.589971+00:00"}}, {"id": "b0171e72-c19c-4d1e-b14d-5299e4f515d1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.272258+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. The road surface is wet from recent rain, with some small puddles visible. There are several vehicles on the road, including cars and a bus. Pedestrians are also present, walking on the sidewalks and crossing the street. Trees and buildings line the street.", "snapshot": {"id": "c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a.png", "timestamp": "2024-02-15T20:54:48.070613+00:00"}}, {"id": "fe5e67eb-2e84-42fa-99e9-7f9ced4ac453", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.149500+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with several vehicles on the road. The vehicles are moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a.png", "timestamp": "2024-02-15T20:54:48.070613+00:00"}}, {"id": "e1d6d65d-1985-456e-9bda-648d63d3b23f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.463232+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and passable for vehicles and pedestrians.", "snapshot": {"id": "c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a.png", "timestamp": "2024-02-15T20:54:48.070613+00:00"}}, {"id": "5cfc9a80-9149-4967-a352-898a2c452b12", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.833660+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a.png", "timestamp": "2024-02-15T20:54:48.070613+00:00"}}, {"id": "54cdd4fb-cbdd-4e93-8ce7-5922ea36ca32", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.567989+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, with some small puddles visible.", "snapshot": {"id": "c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a.png", "timestamp": "2024-02-15T20:54:48.070613+00:00"}}, {"id": "266e6b7c-8c5f-44be-843f-a645972385ab", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.963886+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a", "camera_id": "001509", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001509/c9eaf0e8-884d-4564-aa7e-27a1b30bdd9a.png", "timestamp": "2024-02-15T20:54:48.070613+00:00"}}]}, {"id": "001502", "name": "AV. PASTEUR X R. VENCESLAU - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951155, "longitude": -43.175334, "objects": ["image_description", "rain", "water_level", "traffic", "road_blockade", "image_corrupted"], "identifications": [{"id": "a9fd8b57-693b-4874-bcb7-53462bc13d1c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.624171+00:00", "label": "free", "label_explanation": "The road is clear, with no visible blockades or obstructions. Vehicles can\u901a\u884c without any hindrance.", "snapshot": {"id": "322a28be-861b-44ab-8553-f3ccc7106080", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/322a28be-861b-44ab-8553-f3ccc7106080.png", "timestamp": "2024-02-15T20:30:07.343447+00:00"}}, {"id": "1bd65e28-1798-4c01-8f26-12247c525a32", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:22.994653+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also small puddles of water on the road, reflecting the vehicles and buildings nearby.", "snapshot": {"id": "322a28be-861b-44ab-8553-f3ccc7106080", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/322a28be-861b-44ab-8553-f3ccc7106080.png", "timestamp": "2024-02-15T20:30:07.343447+00:00"}}, {"id": "86c8322c-7fe6-47f6-8ec5-797b2e371790", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.943512+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with cars moving steadily in both directions. There are no major obstructions or traffic jams visible in the image.", "snapshot": {"id": "322a28be-861b-44ab-8553-f3ccc7106080", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/322a28be-861b-44ab-8553-f3ccc7106080.png", "timestamp": "2024-02-15T20:30:07.343447+00:00"}}, {"id": "377859b8-9d03-482b-88fa-4c58f42b2eb2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:22.542328+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a residential building on the left, featuring green-tinted windows and a few visible balconies. On the right side of the road, there are several trees, and cars are present on the street, moving in both directions. The weather appears to be overcast, with a grey sky.", "snapshot": {"id": "322a28be-861b-44ab-8553-f3ccc7106080", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/322a28be-861b-44ab-8553-f3ccc7106080.png", "timestamp": "2024-02-15T20:30:07.343447+00:00"}}, {"id": "8403189e-957f-4a87-a595-33e26b3b3bd9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:23.436373+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is still visible and passable for vehicles.", "snapshot": {"id": "322a28be-861b-44ab-8553-f3ccc7106080", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/322a28be-861b-44ab-8553-f3ccc7106080.png", "timestamp": "2024-02-15T20:30:07.343447+00:00"}}, {"id": "21f6af8c-4f62-4cf4-ba91-10a1562a2c75", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:22.207643+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "322a28be-861b-44ab-8553-f3ccc7106080", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/322a28be-861b-44ab-8553-f3ccc7106080.png", "timestamp": "2024-02-15T20:30:07.343447+00:00"}}, {"id": "4294ad33-63e0-4377-be20-734206a390b5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:51.410205+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "238260fc-3e2f-4628-908f-f882a1a7680b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/238260fc-3e2f-4628-908f-f882a1a7680b.png", "timestamp": "2024-02-15T20:32:34.785072+00:00"}}, {"id": "d2ee7a41-0bcc-49d5-9884-c72e0498cbb8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:49.841094+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "238260fc-3e2f-4628-908f-f882a1a7680b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/238260fc-3e2f-4628-908f-f882a1a7680b.png", "timestamp": "2024-02-15T20:32:34.785072+00:00"}}, {"id": "37135563-3fdb-4fe6-820d-1ffcbbefeca6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.640004+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free traffic flow.", "snapshot": {"id": "238260fc-3e2f-4628-908f-f882a1a7680b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/238260fc-3e2f-4628-908f-f882a1a7680b.png", "timestamp": "2024-02-15T20:32:34.785072+00:00"}}, {"id": "9ca50925-d78c-4945-9147-3c8858f31274", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.586554+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with multiple lanes, bordered by buildings and trees. The road is wet from recent rain, but there are no significant puddles or standing water. Traffic is moderate, with a mix of cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "238260fc-3e2f-4628-908f-f882a1a7680b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/238260fc-3e2f-4628-908f-f882a1a7680b.png", "timestamp": "2024-02-15T20:32:34.785072+00:00"}}, {"id": "65c3c9a5-9d34-4e10-8ae9-42fa4cccb81f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.206128+00:00", "label": "low", "label_explanation": "There is no standing water or significant puddles on the road surface.", "snapshot": {"id": "238260fc-3e2f-4628-908f-f882a1a7680b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/238260fc-3e2f-4628-908f-f882a1a7680b.png", "timestamp": "2024-02-15T20:32:34.785072+00:00"}}, {"id": "4e7c3d58-d733-4be9-bee0-b9aef99f9360", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.647995+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with a mix of cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "238260fc-3e2f-4628-908f-f882a1a7680b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/238260fc-3e2f-4628-908f-f882a1a7680b.png", "timestamp": "2024-02-15T20:32:34.785072+00:00"}}, {"id": "26135a19-6f4b-481a-8a2d-47b5f0f9568b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.662117+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "124a044c-63f2-4c96-9538-d84deb1f2a58", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/124a044c-63f2-4c96-9538-d84deb1f2a58.png", "timestamp": "2024-02-15T20:45:02.074116+00:00"}}, {"id": "4165a4c6-1bce-4e65-bfd8-f767e989955a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.438976+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or obstacles visible.", "snapshot": {"id": "124a044c-63f2-4c96-9538-d84deb1f2a58", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/124a044c-63f2-4c96-9538-d84deb1f2a58.png", "timestamp": "2024-02-15T20:45:02.074116+00:00"}}, {"id": "ddafcc1e-f8ff-4cdf-861e-0bc5cede9eb9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.007015+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "124a044c-63f2-4c96-9538-d84deb1f2a58", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/124a044c-63f2-4c96-9538-d84deb1f2a58.png", "timestamp": "2024-02-15T20:45:02.074116+00:00"}}, {"id": "888e6f9b-748a-410b-bef6-157f8a932101", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.034061+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and a wide road on the right. Trees are present on the right side of the road, and the weather appears to be cloudy.", "snapshot": {"id": "124a044c-63f2-4c96-9538-d84deb1f2a58", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/124a044c-63f2-4c96-9538-d84deb1f2a58.png", "timestamp": "2024-02-15T20:45:02.074116+00:00"}}, {"id": "c5135b7f-2069-4ecd-b184-96fa6882fd98", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.855256+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "124a044c-63f2-4c96-9538-d84deb1f2a58", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/124a044c-63f2-4c96-9538-d84deb1f2a58.png", "timestamp": "2024-02-15T20:45:02.074116+00:00"}}, {"id": "afa9e80b-c461-4573-a7f4-b29335145386", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.406861+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "124a044c-63f2-4c96-9538-d84deb1f2a58", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/124a044c-63f2-4c96-9538-d84deb1f2a58.png", "timestamp": "2024-02-15T20:45:02.074116+00:00"}}, {"id": "0d744445-bea6-4af7-a7e2-fae1e22c8271", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.189274+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving slowly due to the wet conditions.", "snapshot": {"id": "b7992189-9970-4758-8488-0b12d9dc9e26", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b7992189-9970-4758-8488-0b12d9dc9e26.png", "timestamp": "2024-02-15T20:37:38.435857+00:00"}}, {"id": "897750bb-7680-4c4d-a34a-6b3ef025468f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.039736+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "b7992189-9970-4758-8488-0b12d9dc9e26", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b7992189-9970-4758-8488-0b12d9dc9e26.png", "timestamp": "2024-02-15T20:37:38.435857+00:00"}}, {"id": "5cff9681-6d38-4f0a-8e3e-144fa2f4f655", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:52.812907+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b7992189-9970-4758-8488-0b12d9dc9e26", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b7992189-9970-4758-8488-0b12d9dc9e26.png", "timestamp": "2024-02-15T20:37:38.435857+00:00"}}, {"id": "d9d33471-038b-4671-9185-6e26959b532c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.590302+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "b7992189-9970-4758-8488-0b12d9dc9e26", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b7992189-9970-4758-8488-0b12d9dc9e26.png", "timestamp": "2024-02-15T20:37:38.435857+00:00"}}, {"id": "c571c7a0-971e-477e-8064-dc4e49eb536a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:53.496865+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and trees on the right. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "b7992189-9970-4758-8488-0b12d9dc9e26", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b7992189-9970-4758-8488-0b12d9dc9e26.png", "timestamp": "2024-02-15T20:37:38.435857+00:00"}}, {"id": "8ea63d05-f59d-4cf3-96b3-edaf9804a9ee", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.877838+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "b7992189-9970-4758-8488-0b12d9dc9e26", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b7992189-9970-4758-8488-0b12d9dc9e26.png", "timestamp": "2024-02-15T20:37:38.435857+00:00"}}, {"id": "3fd9209c-50b4-434c-a000-1c12f1c9e03b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.350712+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "4bf65b00-82c1-4b32-a623-ae2d72524fd8", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4bf65b00-82c1-4b32-a623-ae2d72524fd8.png", "timestamp": "2024-02-15T20:35:09.012056+00:00"}}, {"id": "c9662964-1a42-4f3b-a98a-4bca25710bed", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.476869+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and trees on the right. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "4bf65b00-82c1-4b32-a623-ae2d72524fd8", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4bf65b00-82c1-4b32-a623-ae2d72524fd8.png", "timestamp": "2024-02-15T20:35:09.012056+00:00"}}, {"id": "18a979bf-4653-43d4-9ec8-094b41381717", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.983675+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4bf65b00-82c1-4b32-a623-ae2d72524fd8", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4bf65b00-82c1-4b32-a623-ae2d72524fd8.png", "timestamp": "2024-02-15T20:35:09.012056+00:00"}}, {"id": "9f5c3c11-0d70-4739-b6b4-9a17397e3084", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.871577+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "4bf65b00-82c1-4b32-a623-ae2d72524fd8", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4bf65b00-82c1-4b32-a623-ae2d72524fd8.png", "timestamp": "2024-02-15T20:35:09.012056+00:00"}}, {"id": "4ad53fe7-2ff5-4f5b-9e5e-e580da579800", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.092777+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "4bf65b00-82c1-4b32-a623-ae2d72524fd8", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4bf65b00-82c1-4b32-a623-ae2d72524fd8.png", "timestamp": "2024-02-15T20:35:09.012056+00:00"}}, {"id": "ec7040e8-65d6-468f-a7a1-5018ba605381", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.758849+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "4bf65b00-82c1-4b32-a623-ae2d72524fd8", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4bf65b00-82c1-4b32-a623-ae2d72524fd8.png", "timestamp": "2024-02-15T20:35:09.012056+00:00"}}, {"id": "5a267945-07ec-438f-8b4f-55b2b5febf2d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:27.579678+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "fff7dc35-93f5-4209-a2b2-039e02289d62", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/fff7dc35-93f5-4209-a2b2-039e02289d62.png", "timestamp": "2024-02-15T20:40:11.343195+00:00"}}, {"id": "3b462561-4072-4663-8f67-f6c3de3e4104", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:24.925864+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fff7dc35-93f5-4209-a2b2-039e02289d62", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/fff7dc35-93f5-4209-a2b2-039e02289d62.png", "timestamp": "2024-02-15T20:40:11.343195+00:00"}}, {"id": "0155ff3a-b2d6-450a-824f-6ee48134d5b7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:28.764279+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing traffic to flow freely.", "snapshot": {"id": "fff7dc35-93f5-4209-a2b2-039e02289d62", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/fff7dc35-93f5-4209-a2b2-039e02289d62.png", "timestamp": "2024-02-15T20:40:11.343195+00:00"}}, {"id": "0a219cab-c7b7-4f2b-ac91-a4531a462519", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.178616+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road from other sources.", "snapshot": {"id": "fff7dc35-93f5-4209-a2b2-039e02289d62", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/fff7dc35-93f5-4209-a2b2-039e02289d62.png", "timestamp": "2024-02-15T20:40:11.343195+00:00"}}, {"id": "9edd4367-9f9b-4794-895e-78be1e9eda8f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:25.353464+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. There are several cars on the road, mostly yellow taxis, and a few trees on either side of the road.", "snapshot": {"id": "fff7dc35-93f5-4209-a2b2-039e02289d62", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/fff7dc35-93f5-4209-a2b2-039e02289d62.png", "timestamp": "2024-02-15T20:40:11.343195+00:00"}}, {"id": "e9d4df03-0071-4343-8c22-501e1481ceb6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:26.954924+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "fff7dc35-93f5-4209-a2b2-039e02289d62", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/fff7dc35-93f5-4209-a2b2-039e02289d62.png", "timestamp": "2024-02-15T20:40:11.343195+00:00"}}, {"id": "fdfe7fdc-3db9-4ba0-842b-e813020753ba", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.358250+00:00", "label": "free", "label_explanation": "The road is free of any obstructions or blockades. All lanes are open for traffic, allowing vehicles to pass without hindrance.", "snapshot": {"id": "34dd1573-13cd-418c-b198-956d7d3d679b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/34dd1573-13cd-418c-b198-956d7d3d679b.png", "timestamp": "2024-02-15T20:42:38.989167+00:00"}}, {"id": "fca48e3e-e880-4496-b5df-f64ebb78c4fc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.736050+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a thin layer of water covering the surface. No significant accumulation or pooling of water is observed.", "snapshot": {"id": "34dd1573-13cd-418c-b198-956d7d3d679b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/34dd1573-13cd-418c-b198-956d7d3d679b.png", "timestamp": "2024-02-15T20:42:38.989167+00:00"}}, {"id": "6e1be0fe-89e9-405d-9231-5a4b7706f5ef", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.024238+00:00", "label": "easy", "label_explanation": "Traffic flow appears to be smooth, with vehicles moving at a steady pace. No major congestion or delays are noticeable.", "snapshot": {"id": "34dd1573-13cd-418c-b198-956d7d3d679b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/34dd1573-13cd-418c-b198-956d7d3d679b.png", "timestamp": "2024-02-15T20:42:38.989167+00:00"}}, {"id": "7061fab6-6a15-41fb-93c5-7d3bc29a40fb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.542992+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. However, there are no significant puddles or standing water.", "snapshot": {"id": "34dd1573-13cd-418c-b198-956d7d3d679b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/34dd1573-13cd-418c-b198-956d7d3d679b.png", "timestamp": "2024-02-15T20:42:38.989167+00:00"}}, {"id": "09c3b294-93fe-4f6f-9c9d-0c1e78187e08", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.021575+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "34dd1573-13cd-418c-b198-956d7d3d679b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/34dd1573-13cd-418c-b198-956d7d3d679b.png", "timestamp": "2024-02-15T20:42:38.989167+00:00"}}, {"id": "c0117794-69ea-4a6f-952f-774e0a280421", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.339447+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. Tall buildings and lush trees line the street, with a clear blue sky and scattered clouds in the background.", "snapshot": {"id": "34dd1573-13cd-418c-b198-956d7d3d679b", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/34dd1573-13cd-418c-b198-956d7d3d679b.png", "timestamp": "2024-02-15T20:42:38.989167+00:00"}}, {"id": "45f644cd-9b81-4b09-b5e0-88b5a764a6ca", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.371251+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few puddles on the ground.", "snapshot": {"id": "4c6ae50b-393d-4063-9798-82552e5646d2", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4c6ae50b-393d-4063-9798-82552e5646d2.png", "timestamp": "2024-02-15T20:47:25.957207+00:00"}}, {"id": "0faeb409-bc33-4bef-a4d9-1222f6e9249b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.807366+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are a few puddles on the ground.", "snapshot": {"id": "4c6ae50b-393d-4063-9798-82552e5646d2", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4c6ae50b-393d-4063-9798-82552e5646d2.png", "timestamp": "2024-02-15T20:47:25.957207+00:00"}}, {"id": "3bd47711-c0ac-4344-8258-e557637a9798", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.922134+00:00", "label": "free", "label_explanation": "There are no road blockades, and the road is clear for traffic.", "snapshot": {"id": "4c6ae50b-393d-4063-9798-82552e5646d2", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4c6ae50b-393d-4063-9798-82552e5646d2.png", "timestamp": "2024-02-15T20:47:25.957207+00:00"}}, {"id": "bd9b0f69-26f6-4230-b5a3-ca1594fa39c5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.576714+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars moving slowly due to the wet road conditions.", "snapshot": {"id": "4c6ae50b-393d-4063-9798-82552e5646d2", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4c6ae50b-393d-4063-9798-82552e5646d2.png", "timestamp": "2024-02-15T20:47:25.957207+00:00"}}, {"id": "957642ef-66d5-429c-a0bb-ca4c2185e506", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.579084+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. There are tall buildings on the left and the right, and trees on the right side of the road. The road is wet from recent rain, and there are a few puddles on the ground. There are cars on the road, and a motorcycle is approaching from the opposite direction.", "snapshot": {"id": "4c6ae50b-393d-4063-9798-82552e5646d2", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4c6ae50b-393d-4063-9798-82552e5646d2.png", "timestamp": "2024-02-15T20:47:25.957207+00:00"}}, {"id": "acbc7124-905b-4cb6-a9a2-f517d04cf3c2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.375306+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4c6ae50b-393d-4063-9798-82552e5646d2", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/4c6ae50b-393d-4063-9798-82552e5646d2.png", "timestamp": "2024-02-15T20:47:25.957207+00:00"}}, {"id": "54fb025a-605f-4b2f-823d-102f3fccb39b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.691489+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "6658c3a5-94ef-4d5f-8b9f-e129282034e3", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/6658c3a5-94ef-4d5f-8b9f-e129282034e3.png", "timestamp": "2024-02-15T20:49:51.201485+00:00"}}, {"id": "ec1ed536-102a-4aa9-a8e7-0d9c6a8aabdd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.636393+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6658c3a5-94ef-4d5f-8b9f-e129282034e3", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/6658c3a5-94ef-4d5f-8b9f-e129282034e3.png", "timestamp": "2024-02-15T20:49:51.201485+00:00"}}, {"id": "b2a1ecca-e67e-4665-b849-4b46229c1a73", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.231870+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "6658c3a5-94ef-4d5f-8b9f-e129282034e3", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/6658c3a5-94ef-4d5f-8b9f-e129282034e3.png", "timestamp": "2024-02-15T20:49:51.201485+00:00"}}, {"id": "644a9aa2-6a72-4544-9fef-c17ee2c5e63a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.323347+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "6658c3a5-94ef-4d5f-8b9f-e129282034e3", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/6658c3a5-94ef-4d5f-8b9f-e129282034e3.png", "timestamp": "2024-02-15T20:49:51.201485+00:00"}}, {"id": "aed6184b-7d7e-4f4f-aa53-0bb3479c61fe", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.957414+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "6658c3a5-94ef-4d5f-8b9f-e129282034e3", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/6658c3a5-94ef-4d5f-8b9f-e129282034e3.png", "timestamp": "2024-02-15T20:49:51.201485+00:00"}}, {"id": "43350d27-ba32-4270-b8cd-b73c646a6198", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.941399+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "6658c3a5-94ef-4d5f-8b9f-e129282034e3", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/6658c3a5-94ef-4d5f-8b9f-e129282034e3.png", "timestamp": "2024-02-15T20:49:51.201485+00:00"}}, {"id": "d6ef13d4-790b-48a2-94fc-59224bbccab9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.670312+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and trees on the right. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "b21699d8-eba9-4c9b-8f52-3755d20c3a25", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b21699d8-eba9-4c9b-8f52-3755d20c3a25.png", "timestamp": "2024-02-15T20:52:14.352904+00:00"}}, {"id": "311111bd-c1ae-4a1e-8845-1d2529b48c61", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.175364+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free and uninterrupted traffic flow.", "snapshot": {"id": "b21699d8-eba9-4c9b-8f52-3755d20c3a25", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b21699d8-eba9-4c9b-8f52-3755d20c3a25.png", "timestamp": "2024-02-15T20:52:14.352904+00:00"}}, {"id": "e9beaded-e08e-433f-b2d0-ba76e832de5b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.932947+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "b21699d8-eba9-4c9b-8f52-3755d20c3a25", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b21699d8-eba9-4c9b-8f52-3755d20c3a25.png", "timestamp": "2024-02-15T20:52:14.352904+00:00"}}, {"id": "77e88119-24f0-4ffa-866c-d52c16e02bb6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.590152+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with cars, buses, and taxis moving in both directions. Traffic appears to be flowing smoothly, with no major congestion.", "snapshot": {"id": "b21699d8-eba9-4c9b-8f52-3755d20c3a25", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b21699d8-eba9-4c9b-8f52-3755d20c3a25.png", "timestamp": "2024-02-15T20:52:14.352904+00:00"}}, {"id": "14ebcbe8-4137-4845-9ea9-470c9e245117", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.213946+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "b21699d8-eba9-4c9b-8f52-3755d20c3a25", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b21699d8-eba9-4c9b-8f52-3755d20c3a25.png", "timestamp": "2024-02-15T20:52:14.352904+00:00"}}, {"id": "0c9a7dfe-499d-4fa9-8656-52c0597411b8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.356001+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b21699d8-eba9-4c9b-8f52-3755d20c3a25", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/b21699d8-eba9-4c9b-8f52-3755d20c3a25.png", "timestamp": "2024-02-15T20:52:14.352904+00:00"}}, {"id": "d5e97058-9e06-4879-90a6-ca3e3de99296", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.342470+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible. Traffic is flowing smoothly in both directions.", "snapshot": {"id": "696a2f46-d880-4e0f-a8e7-37b9527f4091", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/696a2f46-d880-4e0f-a8e7-37b9527f4091.png", "timestamp": "2024-02-15T20:54:42.277326+00:00"}}, {"id": "4d36f93b-c90a-4ace-8edf-c74d894c90c1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.321956+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are water droplets visible on the windshield of the vehicle capturing the image. The rain is not heavy enough to cause significant flooding or traffic disruptions.", "snapshot": {"id": "696a2f46-d880-4e0f-a8e7-37b9527f4091", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/696a2f46-d880-4e0f-a8e7-37b9527f4091.png", "timestamp": "2024-02-15T20:54:42.277326+00:00"}}, {"id": "6949396d-4783-4882-960b-5d017ca36ae6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.930410+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is raining, and the road surface is wet but not flooded. There are no visible obstructions or hazards on the road.", "snapshot": {"id": "696a2f46-d880-4e0f-a8e7-37b9527f4091", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/696a2f46-d880-4e0f-a8e7-37b9527f4091.png", "timestamp": "2024-02-15T20:54:42.277326+00:00"}}, {"id": "456c4c58-1ab8-425c-82d5-8d9813399373", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.352004+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "696a2f46-d880-4e0f-a8e7-37b9527f4091", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/696a2f46-d880-4e0f-a8e7-37b9527f4091.png", "timestamp": "2024-02-15T20:54:42.277326+00:00"}}, {"id": "cb7db13e-1209-4c3f-81b2-bc6dc28779cc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.098413+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major congestion or delays visible in the image.", "snapshot": {"id": "696a2f46-d880-4e0f-a8e7-37b9527f4091", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/696a2f46-d880-4e0f-a8e7-37b9527f4091.png", "timestamp": "2024-02-15T20:54:42.277326+00:00"}}, {"id": "51f34f3c-e4f8-480d-a344-91893aa6ad64", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.611758+00:00", "label": "low", "label_explanation": "The water level on the road is low, with no significant accumulation or pooling observed. The road surface is mostly dry, with only a few small puddles visible.", "snapshot": {"id": "696a2f46-d880-4e0f-a8e7-37b9527f4091", "camera_id": "001502", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001502/696a2f46-d880-4e0f-a8e7-37b9527f4091.png", "timestamp": "2024-02-15T20:54:42.277326+00:00"}}]}, {"id": "003306", "name": "AV. SERNAMBETIBA X PRA\u00e7A DO O", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.67/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01274517, "longitude": -43.31835682, "objects": ["image_corrupted", "image_description", "rain", "traffic", "water_level", "road_blockade"], "identifications": [{"id": "d02852b9-67f4-4929-a2c0-222fba37676f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.543239+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "70fc904f-da6e-466b-babc-e5e5aad631c5", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/70fc904f-da6e-466b-babc-e5e5aad631c5.png", "timestamp": "2024-02-15T20:35:12.391415+00:00"}}, {"id": "53d37df0-c6e2-4690-9584-c9d281b65866", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.965923+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "70fc904f-da6e-466b-babc-e5e5aad631c5", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/70fc904f-da6e-466b-babc-e5e5aad631c5.png", "timestamp": "2024-02-15T20:35:12.391415+00:00"}}, {"id": "5506326f-e23f-42c7-9dad-6aa22ac7b8bf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.092797+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. Traffic is flowing freely.", "snapshot": {"id": "70fc904f-da6e-466b-babc-e5e5aad631c5", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/70fc904f-da6e-466b-babc-e5e5aad631c5.png", "timestamp": "2024-02-15T20:35:12.391415+00:00"}}, {"id": "e828ecc4-093e-4e7d-850d-bcd5196d2850", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.996691+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a pedestrian crossing. It is daytime, and the weather appears to be clear. There are trees on either side of the road, and buildings and mountains in the background.", "snapshot": {"id": "70fc904f-da6e-466b-babc-e5e5aad631c5", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/70fc904f-da6e-466b-babc-e5e5aad631c5.png", "timestamp": "2024-02-15T20:35:12.391415+00:00"}}, {"id": "1e6f4bd7-a8c2-4562-ac49-02a86b02a8a0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.593869+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "70fc904f-da6e-466b-babc-e5e5aad631c5", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/70fc904f-da6e-466b-babc-e5e5aad631c5.png", "timestamp": "2024-02-15T20:35:12.391415+00:00"}}, {"id": "553271f5-9900-4477-9e39-70f8b2be36d0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:26.552960+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion. Vehicles are moving smoothly.", "snapshot": {"id": "70fc904f-da6e-466b-babc-e5e5aad631c5", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/70fc904f-da6e-466b-babc-e5e5aad631c5.png", "timestamp": "2024-02-15T20:35:12.391415+00:00"}}, {"id": "c406c64b-71c3-46b4-9eaa-8907d6fcf985", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:01.762858+00:00", "label": "free", "label_explanation": "The road is clear and free of any blockades or obstructions. Traffic can move freely without hindrance.", "snapshot": {"id": "29921f82-15cf-4353-bf7b-6d1f51cb3757", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/29921f82-15cf-4353-bf7b-6d1f51cb3757.png", "timestamp": "2024-02-15T20:37:44.015419+00:00"}}, {"id": "7372a905-6ee9-4d04-a731-bff9143cb234", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.929891+00:00", "label": "easy", "label_explanation": "The traffic flow appears smooth, with vehicles moving at a steady pace. There are no major obstructions or congestion visible in the image.", "snapshot": {"id": "29921f82-15cf-4353-bf7b-6d1f51cb3757", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/29921f82-15cf-4353-bf7b-6d1f51cb3757.png", "timestamp": "2024-02-15T20:37:44.015419+00:00"}}, {"id": "faf226b3-875e-4e3a-a6a5-3f889f1ddf62", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.076987+00:00", "label": "low", "label_explanation": "There is no significant water accumulation on the road. The puddles are shallow and do not pose any hindrance to traffic.", "snapshot": {"id": "29921f82-15cf-4353-bf7b-6d1f51cb3757", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/29921f82-15cf-4353-bf7b-6d1f51cb3757.png", "timestamp": "2024-02-15T20:37:44.015419+00:00"}}, {"id": "70387c74-b556-419e-a0e9-e01b8f43b1bd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.428603+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "29921f82-15cf-4353-bf7b-6d1f51cb3757", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/29921f82-15cf-4353-bf7b-6d1f51cb3757.png", "timestamp": "2024-02-15T20:37:44.015419+00:00"}}, {"id": "11fa7112-8293-429e-b2c5-2e76ff04f92e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.707075+00:00", "label": "false", "label_explanation": "While there are some small puddles on the road surface, the overall road condition is dry.", "snapshot": {"id": "29921f82-15cf-4353-bf7b-6d1f51cb3757", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/29921f82-15cf-4353-bf7b-6d1f51cb3757.png", "timestamp": "2024-02-15T20:37:44.015419+00:00"}}, {"id": "a63bccbc-9046-4fed-9a06-64c55fc81185", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.050755+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road during daytime. It features a yellow bus driving on the left side of the road, along with other vehicles. The road is lined with trees, buildings, and various signages. The weather appears to be clear, with a mix of sun and clouds.", "snapshot": {"id": "29921f82-15cf-4353-bf7b-6d1f51cb3757", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/29921f82-15cf-4353-bf7b-6d1f51cb3757.png", "timestamp": "2024-02-15T20:37:44.015419+00:00"}}, {"id": "e1abd0c7-3105-4350-be50-a079386a44b8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.110480+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "e1610507-2958-43d1-be77-a0539bb6f9ae", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/e1610507-2958-43d1-be77-a0539bb6f9ae.png", "timestamp": "2024-02-15T20:54:45.033492+00:00"}}, {"id": "9dbccc9b-179f-4b47-bb1f-c2c1b6d875cc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.864496+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars on the road.", "snapshot": {"id": "e1610507-2958-43d1-be77-a0539bb6f9ae", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/e1610507-2958-43d1-be77-a0539bb6f9ae.png", "timestamp": "2024-02-15T20:54:45.033492+00:00"}}, {"id": "35d580b4-9d09-4dfa-9b48-6d9ff455968f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.767589+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a yellow taxi driving on the rightmost lane. The road is lined with trees and buildings, with a bus stop on the left side of the road. There are no visible signs of rain or water on the road.", "snapshot": {"id": "e1610507-2958-43d1-be77-a0539bb6f9ae", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/e1610507-2958-43d1-be77-a0539bb6f9ae.png", "timestamp": "2024-02-15T20:54:45.033492+00:00"}}, {"id": "de27eddf-8113-41db-abc1-0e3ce6fc6a32", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.100537+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "e1610507-2958-43d1-be77-a0539bb6f9ae", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/e1610507-2958-43d1-be77-a0539bb6f9ae.png", "timestamp": "2024-02-15T20:54:45.033492+00:00"}}, {"id": "9e798ae9-7cd5-4174-a3bd-0dc2f2ae6238", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.502164+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water.", "snapshot": {"id": "e1610507-2958-43d1-be77-a0539bb6f9ae", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/e1610507-2958-43d1-be77-a0539bb6f9ae.png", "timestamp": "2024-02-15T20:54:45.033492+00:00"}}, {"id": "6b7e2ecc-8af4-4751-9e8f-7fa58b61620c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.514357+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e1610507-2958-43d1-be77-a0539bb6f9ae", "camera_id": "003306", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D003306/e1610507-2958-43d1-be77-a0539bb6f9ae.png", "timestamp": "2024-02-15T20:54:45.033492+00:00"}}]}, {"id": "001143", "name": "AV. BORGES DE MEDEIROS X AV. EPIT\u00c1CIO PESSOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9633544, "longitude": -43.2043092, "objects": ["image_description", "image_corrupted", "road_blockade", "water_level", "rain", "traffic"], "identifications": [{"id": "53369148-6082-476e-a2ec-6994c4a3605c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.785530+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "39dceb78-84b9-4341-9bd4-f1144afe16a8", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/39dceb78-84b9-4341-9bd4-f1144afe16a8.png", "timestamp": "2024-02-15T20:30:10.624619+00:00"}}, {"id": "580aa076-1d75-42cd-ab95-3a0e98e97388", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.310978+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles scattered around.", "snapshot": {"id": "39dceb78-84b9-4341-9bd4-f1144afe16a8", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/39dceb78-84b9-4341-9bd4-f1144afe16a8.png", "timestamp": "2024-02-15T20:30:10.624619+00:00"}}, {"id": "c874d7de-ff28-4c15-9a41-4259f31805ab", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.052277+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining recently.", "snapshot": {"id": "39dceb78-84b9-4341-9bd4-f1144afe16a8", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/39dceb78-84b9-4341-9bd4-f1144afe16a8.png", "timestamp": "2024-02-15T20:30:10.624619+00:00"}}, {"id": "2e5c4a6c-d4f2-4d34-8d9b-608aa760e0de", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.358662+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "39dceb78-84b9-4341-9bd4-f1144afe16a8", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/39dceb78-84b9-4341-9bd4-f1144afe16a8.png", "timestamp": "2024-02-15T20:30:10.624619+00:00"}}, {"id": "c9779953-633f-4dd3-9af1-7822084e9d2f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.695281+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a tree on the right side of the road. Tall buildings can be seen in the background. The road is wet from recent rain, with small puddles visible on the surface.", "snapshot": {"id": "39dceb78-84b9-4341-9bd4-f1144afe16a8", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/39dceb78-84b9-4341-9bd4-f1144afe16a8.png", "timestamp": "2024-02-15T20:30:10.624619+00:00"}}, {"id": "8b1e5bb4-282e-49c0-ac38-ab6a6402ab16", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.061822+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "39dceb78-84b9-4341-9bd4-f1144afe16a8", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/39dceb78-84b9-4341-9bd4-f1144afe16a8.png", "timestamp": "2024-02-15T20:30:10.624619+00:00"}}, {"id": "d58dde9f-ea37-4918-a965-944717add319", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.805903+00:00", "label": "moderate", "label_explanation": "Traffic flow appears to be moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "24b4c103-bc7a-4e69-815e-08c4cbde8c07", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/24b4c103-bc7a-4e69-815e-08c4cbde8c07.png", "timestamp": "2024-02-15T20:32:35.182520+00:00"}}, {"id": "988def42-9095-42d1-b304-688eb6965876", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.810337+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles observed.", "snapshot": {"id": "24b4c103-bc7a-4e69-815e-08c4cbde8c07", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/24b4c103-bc7a-4e69-815e-08c4cbde8c07.png", "timestamp": "2024-02-15T20:32:35.182520+00:00"}}, {"id": "c6dd644f-741f-4ce1-b914-edd4679bd93a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:51.224759+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a tree on the left, buildings in the background, and a bike lane on the right. The road is wet from recent rain, with small puddles visible.", "snapshot": {"id": "24b4c103-bc7a-4e69-815e-08c4cbde8c07", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/24b4c103-bc7a-4e69-815e-08c4cbde8c07.png", "timestamp": "2024-02-15T20:32:35.182520+00:00"}}, {"id": "d06fd592-df97-495f-96b2-46325e3760f3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.167838+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "24b4c103-bc7a-4e69-815e-08c4cbde8c07", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/24b4c103-bc7a-4e69-815e-08c4cbde8c07.png", "timestamp": "2024-02-15T20:32:35.182520+00:00"}}, {"id": "2ad2dfeb-83be-49c6-a9e8-d8d0813f1662", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:54.485675+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, allowing for free traffic flow.", "snapshot": {"id": "24b4c103-bc7a-4e69-815e-08c4cbde8c07", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/24b4c103-bc7a-4e69-815e-08c4cbde8c07.png", "timestamp": "2024-02-15T20:32:35.182520+00:00"}}, {"id": "0ec38ed9-b8e5-4bbd-9e59-2a972825518f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:50.256093+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "24b4c103-bc7a-4e69-815e-08c4cbde8c07", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/24b4c103-bc7a-4e69-815e-08c4cbde8c07.png", "timestamp": "2024-02-15T20:32:35.182520+00:00"}}, {"id": "53731980-3504-4fa8-bca2-fbcebb3eba60", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:57.656349+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "34b3ebae-6b41-46f2-9a0a-22779fa1d1c3", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/34b3ebae-6b41-46f2-9a0a-22779fa1d1c3.png", "timestamp": "2024-02-15T20:37:42.148173+00:00"}}, {"id": "0c4e1bad-954f-414a-a532-3db25f3c3e03", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.723974+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a tree on the left, buildings in the background, and a bike lane on the right. The road is wet from recent rain, but there are no significant puddles or obstructions.", "snapshot": {"id": "34b3ebae-6b41-46f2-9a0a-22779fa1d1c3", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/34b3ebae-6b41-46f2-9a0a-22779fa1d1c3.png", "timestamp": "2024-02-15T20:37:42.148173+00:00"}}, {"id": "4bf8c6c5-97bd-4d68-b89f-7324fbd2e0d3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.714389+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "34b3ebae-6b41-46f2-9a0a-22779fa1d1c3", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/34b3ebae-6b41-46f2-9a0a-22779fa1d1c3.png", "timestamp": "2024-02-15T20:37:42.148173+00:00"}}, {"id": "e603daa9-001d-4958-983d-f6c06e702e23", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.323380+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "34b3ebae-6b41-46f2-9a0a-22779fa1d1c3", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/34b3ebae-6b41-46f2-9a0a-22779fa1d1c3.png", "timestamp": "2024-02-15T20:37:42.148173+00:00"}}, {"id": "a24035b3-2282-4301-a7c1-af9abea806c6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.419470+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "34b3ebae-6b41-46f2-9a0a-22779fa1d1c3", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/34b3ebae-6b41-46f2-9a0a-22779fa1d1c3.png", "timestamp": "2024-02-15T20:37:42.148173+00:00"}}, {"id": "613d98ba-9006-43df-b531-ae6d15d6f34b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.112743+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "34b3ebae-6b41-46f2-9a0a-22779fa1d1c3", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/34b3ebae-6b41-46f2-9a0a-22779fa1d1c3.png", "timestamp": "2024-02-15T20:37:42.148173+00:00"}}, {"id": "944693e4-4baa-4f78-afbc-4afb1db0ce7e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.143477+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no visible signs of water on the road surface.", "snapshot": {"id": "cd479a5c-f293-4b50-ada0-14cea0c5cf27", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/cd479a5c-f293-4b50-ada0-14cea0c5cf27.png", "timestamp": "2024-02-15T20:35:09.988606+00:00"}}, {"id": "c3e22f63-a906-4cc9-838d-99b351cb2ecd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.557688+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a few cars parked on either side of the street, but the road is not congested.", "snapshot": {"id": "cd479a5c-f293-4b50-ada0-14cea0c5cf27", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/cd479a5c-f293-4b50-ada0-14cea0c5cf27.png", "timestamp": "2024-02-15T20:35:09.988606+00:00"}}, {"id": "1c8096a7-d580-4b02-b30f-f68968ef31c8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.672566+00:00", "label": "false", "label_explanation": "There are no signs of rain in the image. The road is dry, and there are no visible puddles or reflections on the road surface.", "snapshot": {"id": "cd479a5c-f293-4b50-ada0-14cea0c5cf27", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/cd479a5c-f293-4b50-ada0-14cea0c5cf27.png", "timestamp": "2024-02-15T20:35:09.988606+00:00"}}, {"id": "b59d6e2c-23cc-46d0-a22e-caca14c46d3c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.074129+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, paved road with a bike lane on the right side. The road is lined with trees and buildings, and there are cars parked on either side of the street. The weather appears to be overcast, as the sky is grey and there are no visible shadows.", "snapshot": {"id": "cd479a5c-f293-4b50-ada0-14cea0c5cf27", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/cd479a5c-f293-4b50-ada0-14cea0c5cf27.png", "timestamp": "2024-02-15T20:35:09.988606+00:00"}}, {"id": "b75d4c33-baf8-4965-af97-3a87ea9ba08d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:26.547712+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cd479a5c-f293-4b50-ada0-14cea0c5cf27", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/cd479a5c-f293-4b50-ada0-14cea0c5cf27.png", "timestamp": "2024-02-15T20:35:09.988606+00:00"}}, {"id": "7f4b5b13-1b3a-45f5-ab89-d9ad2aea2ff9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:29.031782+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "cd479a5c-f293-4b50-ada0-14cea0c5cf27", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/cd479a5c-f293-4b50-ada0-14cea0c5cf27.png", "timestamp": "2024-02-15T20:35:09.988606+00:00"}}, {"id": "1eccb545-46fb-4294-8778-14f1e23b11de", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.886653+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they do not cover a significant portion of the road surface.", "snapshot": {"id": "80311424-3e0e-4448-b45f-48dae5ece581", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/80311424-3e0e-4448-b45f-48dae5ece581.png", "timestamp": "2024-02-15T20:40:12.400790+00:00"}}, {"id": "6c584c9a-dbdc-4362-a82b-6201658d684e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.578197+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are puddles on the surface. This indicates that it has been raining recently.", "snapshot": {"id": "80311424-3e0e-4448-b45f-48dae5ece581", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/80311424-3e0e-4448-b45f-48dae5ece581.png", "timestamp": "2024-02-15T20:40:12.400790+00:00"}}, {"id": "04e99d28-9c02-4645-89f5-aef11206553e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.104695+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, paved road with several lanes, surrounded by tall buildings and lush trees. The road is wet from recent rain, and there are a few puddles on the surface. There are no vehicles visible in the image.", "snapshot": {"id": "80311424-3e0e-4448-b45f-48dae5ece581", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/80311424-3e0e-4448-b45f-48dae5ece581.png", "timestamp": "2024-02-15T20:40:12.400790+00:00"}}, {"id": "a6444f45-c160-43eb-9479-7120f1565387", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.739882+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "80311424-3e0e-4448-b45f-48dae5ece581", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/80311424-3e0e-4448-b45f-48dae5ece581.png", "timestamp": "2024-02-15T20:40:12.400790+00:00"}}, {"id": "51fef4ff-1adb-40cd-9c91-bdf8cf65b0ee", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.686956+00:00", "label": "free", "label_explanation": "There are no obstructions visible in the image, so the road is clear for traffic.", "snapshot": {"id": "80311424-3e0e-4448-b45f-48dae5ece581", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/80311424-3e0e-4448-b45f-48dae5ece581.png", "timestamp": "2024-02-15T20:40:12.400790+00:00"}}, {"id": "1b5e5ba5-5884-4924-bf41-24223bda18f2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.989517+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a tree on the left and buildings in the background. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "3b348d20-6624-4a08-8657-c070a51fa14d", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/3b348d20-6624-4a08-8657-c070a51fa14d.png", "timestamp": "2024-02-15T20:42:40.122830+00:00"}}, {"id": "e403909a-57e5-49be-8f7e-7eeaaff846fb", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:53.217221+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road.", "snapshot": {"id": "3b348d20-6624-4a08-8657-c070a51fa14d", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/3b348d20-6624-4a08-8657-c070a51fa14d.png", "timestamp": "2024-02-15T20:42:40.122830+00:00"}}, {"id": "b6ddd0f4-d734-47a2-a65d-3cf496b923bf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.904775+00:00", "label": "easy", "label_explanation": "The road is clear and there are no obstructions to traffic flow.", "snapshot": {"id": "3b348d20-6624-4a08-8657-c070a51fa14d", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/3b348d20-6624-4a08-8657-c070a51fa14d.png", "timestamp": "2024-02-15T20:42:40.122830+00:00"}}, {"id": "9ddf39b7-0101-40d1-abea-4aed5dbcb026", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.325651+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "3b348d20-6624-4a08-8657-c070a51fa14d", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/3b348d20-6624-4a08-8657-c070a51fa14d.png", "timestamp": "2024-02-15T20:42:40.122830+00:00"}}, {"id": "e77cdb52-5d1b-4c4b-b515-5d5b126df7bf", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.632923+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "3b348d20-6624-4a08-8657-c070a51fa14d", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/3b348d20-6624-4a08-8657-c070a51fa14d.png", "timestamp": "2024-02-15T20:42:40.122830+00:00"}}, {"id": "4017421b-9d82-41e3-a9f3-750fea34dc05", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.772315+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3b348d20-6624-4a08-8657-c070a51fa14d", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/3b348d20-6624-4a08-8657-c070a51fa14d.png", "timestamp": "2024-02-15T20:42:40.122830+00:00"}}, {"id": "eabf7374-20c5-442b-b66b-4471805ada28", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:20.118158+00:00", "label": "free", "label_explanation": "There are no road blockades, and the road is clear for traffic.", "snapshot": {"id": "8351c62d-bddb-497c-ba17-5153d461e5e5", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/8351c62d-bddb-497c-ba17-5153d461e5e5.png", "timestamp": "2024-02-15T20:45:04.292265+00:00"}}, {"id": "4e202188-a5ba-45be-b52b-83aa8d05084e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.497752+00:00", "label": "low", "label_explanation": "The water level is low, with only a few puddles on the ground.", "snapshot": {"id": "8351c62d-bddb-497c-ba17-5153d461e5e5", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/8351c62d-bddb-497c-ba17-5153d461e5e5.png", "timestamp": "2024-02-15T20:45:04.292265+00:00"}}, {"id": "80032b4f-aeb8-4142-b4a7-be787cb0e9cc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.242590+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are a few puddles on the ground.", "snapshot": {"id": "8351c62d-bddb-497c-ba17-5153d461e5e5", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/8351c62d-bddb-497c-ba17-5153d461e5e5.png", "timestamp": "2024-02-15T20:45:04.292265+00:00"}}, {"id": "f47a377b-384a-43e6-87fa-b4f04ab75940", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.759665+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. There are several tall buildings in the background, and trees on either side of the road. The road is wet from recent rain, and there are a few puddles on the ground.", "snapshot": {"id": "8351c62d-bddb-497c-ba17-5153d461e5e5", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/8351c62d-bddb-497c-ba17-5153d461e5e5.png", "timestamp": "2024-02-15T20:45:04.292265+00:00"}}, {"id": "3e06d68b-c312-4e9c-a830-aa319c68e209", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.459082+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8351c62d-bddb-497c-ba17-5153d461e5e5", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/8351c62d-bddb-497c-ba17-5153d461e5e5.png", "timestamp": "2024-02-15T20:45:04.292265+00:00"}}, {"id": "53b69852-9fe2-411c-ae25-ed4fa321e505", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.745759+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars on the road.", "snapshot": {"id": "8351c62d-bddb-497c-ba17-5153d461e5e5", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/8351c62d-bddb-497c-ba17-5153d461e5e5.png", "timestamp": "2024-02-15T20:45:04.292265+00:00"}}, {"id": "813a67a8-0446-439f-9070-aa267b6ef240", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.325199+00:00", "label": "easy", "label_explanation": "The road is dry and clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "32ea43db-ebdc-44f9-9ce5-ec823ee20ab4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/32ea43db-ebdc-44f9-9ce5-ec823ee20ab4.png", "timestamp": "2024-02-15T20:47:26.422887+00:00"}}, {"id": "1bc6eba6-f595-4286-a425-2d9741831a46", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.561325+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "32ea43db-ebdc-44f9-9ce5-ec823ee20ab4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/32ea43db-ebdc-44f9-9ce5-ec823ee20ab4.png", "timestamp": "2024-02-15T20:47:26.422887+00:00"}}, {"id": "69cacb55-ad54-49f0-aa42-1a8030f76dde", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.802152+00:00", "label": "true", "label_explanation": "There is visible water on the road surface, indicating recent rainfall.", "snapshot": {"id": "32ea43db-ebdc-44f9-9ce5-ec823ee20ab4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/32ea43db-ebdc-44f9-9ce5-ec823ee20ab4.png", "timestamp": "2024-02-15T20:47:26.422887+00:00"}}, {"id": "d0f9ad91-2482-4425-ad0a-c905a376e916", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.064339+00:00", "label": "low", "label_explanation": "The water appears to be shallow and covers only small, isolated areas of the road surface, with no significant accumulation.", "snapshot": {"id": "32ea43db-ebdc-44f9-9ce5-ec823ee20ab4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/32ea43db-ebdc-44f9-9ce5-ec823ee20ab4.png", "timestamp": "2024-02-15T20:47:26.422887+00:00"}}, {"id": "242ea1e7-6b1d-4d17-9b56-3a19a42244da", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.136547+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "32ea43db-ebdc-44f9-9ce5-ec823ee20ab4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/32ea43db-ebdc-44f9-9ce5-ec823ee20ab4.png", "timestamp": "2024-02-15T20:47:26.422887+00:00"}}, {"id": "2f3dee6d-3c5a-4a3c-9e16-8c447746108d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.525707+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street, trees, and buildings in the background. It appears to be daytime based on the lighting.", "snapshot": {"id": "32ea43db-ebdc-44f9-9ce5-ec823ee20ab4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/32ea43db-ebdc-44f9-9ce5-ec823ee20ab4.png", "timestamp": "2024-02-15T20:47:26.422887+00:00"}}, {"id": "dccac7f9-0299-4ef3-b020-06b05eecfc18", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.949804+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "95ed82bc-f30b-4a05-a23f-a925436100a7", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/95ed82bc-f30b-4a05-a23f-a925436100a7.png", "timestamp": "2024-02-15T20:49:52.028099+00:00"}}, {"id": "b0c5b992-e93d-4c3d-847b-edc5f99f07e0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.303090+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "95ed82bc-f30b-4a05-a23f-a925436100a7", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/95ed82bc-f30b-4a05-a23f-a925436100a7.png", "timestamp": "2024-02-15T20:49:52.028099+00:00"}}, {"id": "97705247-e838-4861-af6a-5a2d8d323246", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.818275+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "95ed82bc-f30b-4a05-a23f-a925436100a7", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/95ed82bc-f30b-4a05-a23f-a925436100a7.png", "timestamp": "2024-02-15T20:49:52.028099+00:00"}}, {"id": "d25d1a0c-d8a1-4884-92a0-e55d54f77642", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.194656+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street, trees, and buildings in the background.", "snapshot": {"id": "95ed82bc-f30b-4a05-a23f-a925436100a7", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/95ed82bc-f30b-4a05-a23f-a925436100a7.png", "timestamp": "2024-02-15T20:49:52.028099+00:00"}}, {"id": "ef10a1e8-c894-4a2c-ad14-926c832e9c85", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.061116+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or obstacles visible.", "snapshot": {"id": "95ed82bc-f30b-4a05-a23f-a925436100a7", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/95ed82bc-f30b-4a05-a23f-a925436100a7.png", "timestamp": "2024-02-15T20:49:52.028099+00:00"}}, {"id": "9f61f516-b80a-4538-b299-974c14eb3a02", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.494698+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "95ed82bc-f30b-4a05-a23f-a925436100a7", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/95ed82bc-f30b-4a05-a23f-a925436100a7.png", "timestamp": "2024-02-15T20:49:52.028099+00:00"}}, {"id": "80691508-fca8-45a8-b0f7-00255e93e6e3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.320265+00:00", "label": "moderate", "label_explanation": "The traffic flow appears to be moderate, with a few vehicles visible on the road. The presence of water on the road may cause some minor hindrance to traffic.", "snapshot": {"id": "70efe353-2ca5-4eef-acac-20da9e977c22", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/70efe353-2ca5-4eef-acac-20da9e977c22.png", "timestamp": "2024-02-15T20:52:15.080238+00:00"}}, {"id": "4905146a-ea75-4d9a-ae55-30d42f1bf79f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.643645+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for free traffic flow.", "snapshot": {"id": "70efe353-2ca5-4eef-acac-20da9e977c22", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/70efe353-2ca5-4eef-acac-20da9e977c22.png", "timestamp": "2024-02-15T20:52:15.080238+00:00"}}, {"id": "633eb4c6-a3b3-4a25-a1bd-bd313ea8fb16", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.138873+00:00", "label": "low", "label_explanation": "The water level on the road is low, as there are only small puddles of water scattered on the road surface.", "snapshot": {"id": "70efe353-2ca5-4eef-acac-20da9e977c22", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/70efe353-2ca5-4eef-acac-20da9e977c22.png", "timestamp": "2024-02-15T20:52:15.080238+00:00"}}, {"id": "2232198a-0d94-4020-860f-4fd337771f0f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.512424+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street, trees, and buildings in the background. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "70efe353-2ca5-4eef-acac-20da9e977c22", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/70efe353-2ca5-4eef-acac-20da9e977c22.png", "timestamp": "2024-02-15T20:52:15.080238+00:00"}}, {"id": "641564fc-6536-49c9-a972-ee3c43a73f7d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.904559+00:00", "label": "true", "label_explanation": "There is visible rain on the road surface, indicated by the wet appearance of the road and the reflections of light on the water.", "snapshot": {"id": "70efe353-2ca5-4eef-acac-20da9e977c22", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/70efe353-2ca5-4eef-acac-20da9e977c22.png", "timestamp": "2024-02-15T20:52:15.080238+00:00"}}, {"id": "cb472ca7-207a-4175-84ca-19e1eef10a49", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.278913+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "70efe353-2ca5-4eef-acac-20da9e977c22", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/70efe353-2ca5-4eef-acac-20da9e977c22.png", "timestamp": "2024-02-15T20:52:15.080238+00:00"}}, {"id": "66e0dfdf-4eeb-42d0-9bc1-90b4497d414c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.697844+00:00", "label": "moderate", "label_explanation": "The traffic on the road is moderate. There are cars and trucks moving in both directions, but there are no major delays or congestion.", "snapshot": {"id": "f4a07fcc-c4d0-4734-b021-5577daad86a4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/f4a07fcc-c4d0-4734-b021-5577daad86a4.png", "timestamp": "2024-02-15T20:54:43.543647+00:00"}}, {"id": "678754ab-c03f-4020-9ae4-c4e9f96d23af", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.624832+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, paved road with a tree on the left and buildings in the background. The road is wet from recent rain, and there are a few small puddles on the surface. There is moderate traffic on the road, with cars and trucks moving in both directions.", "snapshot": {"id": "f4a07fcc-c4d0-4734-b021-5577daad86a4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/f4a07fcc-c4d0-4734-b021-5577daad86a4.png", "timestamp": "2024-02-15T20:54:43.543647+00:00"}}, {"id": "04578f73-9ded-4eee-80ec-72cdb4fe5444", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.929010+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "f4a07fcc-c4d0-4734-b021-5577daad86a4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/f4a07fcc-c4d0-4734-b021-5577daad86a4.png", "timestamp": "2024-02-15T20:54:43.543647+00:00"}}, {"id": "99a78113-9cd5-4bfd-8cbc-dd626fcc6c99", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.358448+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they do not pose a significant hazard to traffic.", "snapshot": {"id": "f4a07fcc-c4d0-4734-b021-5577daad86a4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/f4a07fcc-c4d0-4734-b021-5577daad86a4.png", "timestamp": "2024-02-15T20:54:43.543647+00:00"}}, {"id": "b6fb85f6-cb03-45dc-b05b-f60b3894dedf", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.103044+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are a few small puddles on the surface. This indicates that it has been raining recently.", "snapshot": {"id": "f4a07fcc-c4d0-4734-b021-5577daad86a4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/f4a07fcc-c4d0-4734-b021-5577daad86a4.png", "timestamp": "2024-02-15T20:54:43.543647+00:00"}}, {"id": "ab85326e-5d09-4209-a640-75e2b08a883a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.392957+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f4a07fcc-c4d0-4734-b021-5577daad86a4", "camera_id": "001143", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001143/f4a07fcc-c4d0-4734-b021-5577daad86a4.png", "timestamp": "2024-02-15T20:54:43.543647+00:00"}}]}, {"id": "001387", "name": "AV. ARMANDO LOMBARDI, 205 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0074709, "longitude": -43.3068961, "objects": ["image_description", "water_level", "traffic", "image_corrupted", "road_blockade", "rain"], "identifications": [{"id": "1195511c-a1f6-4484-9bab-af815af3d6a4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.302338+00:00", "label": "true", "label_explanation": "The image is distorted and unclear, with a uniform grey color. This indicates that the image data is corrupted or lost.", "snapshot": {"id": "67bd5b9a-e04a-4292-97ec-c656c61f05cb", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/67bd5b9a-e04a-4292-97ec-c656c61f05cb.png", "timestamp": "2024-02-15T20:30:08.806837+00:00"}}, {"id": "9a00daa4-94ef-4822-b3d9-5af5544852a9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:21.726177+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "67bd5b9a-e04a-4292-97ec-c656c61f05cb", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/67bd5b9a-e04a-4292-97ec-c656c61f05cb.png", "timestamp": "2024-02-15T20:30:08.806837+00:00"}}, {"id": "c830524d-54fe-4734-976a-810e89e67e93", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.452438+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is completely clear, and there are no obstructions to traffic.", "snapshot": {"id": "33d7aff3-983d-4acc-bf06-68ab732e1aa3", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/33d7aff3-983d-4acc-bf06-68ab732e1aa3.png", "timestamp": "2024-02-15T20:45:04.706871+00:00"}}, {"id": "f396d2d8-79cf-49b2-9059-9fc10740c48b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.803697+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are all moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "33d7aff3-983d-4acc-bf06-68ab732e1aa3", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/33d7aff3-983d-4acc-bf06-68ab732e1aa3.png", "timestamp": "2024-02-15T20:45:04.706871+00:00"}}, {"id": "be2bf836-52a4-4ab0-a01a-7f147b13883d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.491092+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "33d7aff3-983d-4acc-bf06-68ab732e1aa3", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/33d7aff3-983d-4acc-bf06-68ab732e1aa3.png", "timestamp": "2024-02-15T20:45:04.706871+00:00"}}, {"id": "84b7de30-c989-4a66-8ad6-2825b1da954d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.179651+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "33d7aff3-983d-4acc-bf06-68ab732e1aa3", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/33d7aff3-983d-4acc-bf06-68ab732e1aa3.png", "timestamp": "2024-02-15T20:45:04.706871+00:00"}}, {"id": "730ac1f7-9b74-49de-81e2-50c584ea5611", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:16.738403+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. There are several vehicles on the road, including buses and cars. The road is bordered by buildings and trees, and there is a mountain in the background.", "snapshot": {"id": "33d7aff3-983d-4acc-bf06-68ab732e1aa3", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/33d7aff3-983d-4acc-bf06-68ab732e1aa3.png", "timestamp": "2024-02-15T20:45:04.706871+00:00"}}, {"id": "b5468069-6ee0-48a0-8664-5db484346e83", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:16.426848+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "33d7aff3-983d-4acc-bf06-68ab732e1aa3", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/33d7aff3-983d-4acc-bf06-68ab732e1aa3.png", "timestamp": "2024-02-15T20:45:04.706871+00:00"}}, {"id": "46df8596-532f-4ac2-aa67-cb4928e89671", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:22.590730+00:00", "label": "null", "label_explanation": "The image is corrupted and not suitable for analysis.", "snapshot": {"id": "161ee081-dbc3-40d4-a5d3-b6fd3ab9ec27", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/161ee081-dbc3-40d4-a5d3-b6fd3ab9ec27.png", "timestamp": "2024-02-15T20:35:09.991807+00:00"}}, {"id": "f511de55-1510-4726-8e0e-98d460380dcb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:21.936464+00:00", "label": "true", "label_explanation": "The image is corrupted and not suitable for analysis.", "snapshot": {"id": "161ee081-dbc3-40d4-a5d3-b6fd3ab9ec27", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/161ee081-dbc3-40d4-a5d3-b6fd3ab9ec27.png", "timestamp": "2024-02-15T20:35:09.991807+00:00"}}, {"id": "0ba7900e-cbae-4025-afda-885cf5a5f42f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:54.703504+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and distorted shapes, making it impossible to analyze.", "snapshot": {"id": "5e07017a-1fc8-4a8d-99ff-1b119d268d80", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/5e07017a-1fc8-4a8d-99ff-1b119d268d80.png", "timestamp": "2024-02-15T20:37:43.916053+00:00"}}, {"id": "c6a69bcf-221d-469f-aa63-7fa2e17083db", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.393836+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "5e07017a-1fc8-4a8d-99ff-1b119d268d80", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/5e07017a-1fc8-4a8d-99ff-1b119d268d80.png", "timestamp": "2024-02-15T20:37:43.916053+00:00"}}, {"id": "e7b93137-d403-4903-bc94-d3f6f7c1eea7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.871242+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd.png", "timestamp": "2024-02-15T20:40:13.430863+00:00"}}, {"id": "398a929f-487e-4c20-9502-033354524fdd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.506773+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and trucks. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd.png", "timestamp": "2024-02-15T20:40:13.430863+00:00"}}, {"id": "0de3bcfe-4e11-4640-8639-301e8256161c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.123154+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd.png", "timestamp": "2024-02-15T20:40:13.430863+00:00"}}, {"id": "1670b591-d632-40bb-ab66-800cd17650c9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.252563+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd.png", "timestamp": "2024-02-15T20:40:13.430863+00:00"}}, {"id": "e055487e-2c6c-4831-ba0d-7e9162a98c90", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.677240+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd.png", "timestamp": "2024-02-15T20:40:13.430863+00:00"}}, {"id": "fb4bcfe9-11dd-48be-b5dc-68a04ecb02d5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.142933+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or disruptions.", "snapshot": {"id": "b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/b2d4e5ff-b48b-4a4b-89d5-a1b1a1762bfd.png", "timestamp": "2024-02-15T20:40:13.430863+00:00"}}, {"id": "bb94bf85-5890-486a-8521-259881f63e9b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.043133+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f.png", "timestamp": "2024-02-15T20:42:40.434628+00:00"}}, {"id": "5b3deb77-ed03-4ebc-a0b3-811c97f36ca1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.541442+00:00", "label": "null", "label_explanation": "The image shows a six-lane urban road with a cable car track running alongside it. The road is moderately busy, with cars, buses, and trucks visible. There are trees and buildings on either side of the road, and the sky is overcast.", "snapshot": {"id": "706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f.png", "timestamp": "2024-02-15T20:42:40.434628+00:00"}}, {"id": "56836678-6c6a-405b-a69d-6c6908bee975", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.847182+00:00", "label": "true", "label_explanation": "The road is wet, but there is no standing water.", "snapshot": {"id": "706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f.png", "timestamp": "2024-02-15T20:42:40.434628+00:00"}}, {"id": "2817093e-ba74-432c-8fa6-a088ef193db9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:51.361684+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f.png", "timestamp": "2024-02-15T20:42:40.434628+00:00"}}, {"id": "d877f8b5-2dba-4763-8e72-e611c1989108", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.623711+00:00", "label": "free", "label_explanation": "There are no obstructions on the road.", "snapshot": {"id": "706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f.png", "timestamp": "2024-02-15T20:42:40.434628+00:00"}}, {"id": "6beed3c0-32c8-4fb8-a3fe-fe7df75b3c8e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.367628+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion.", "snapshot": {"id": "706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/706b5ab3-3b3c-4b6d-b9a9-d678b2821b5f.png", "timestamp": "2024-02-15T20:42:40.434628+00:00"}}, {"id": "ba28c927-ee2c-47d4-bdc2-85cc1dad3251", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.712652+00:00", "label": "free", "label_explanation": "It is not possible to tell if there are any road blockades.", "snapshot": {"id": "567f21a8-d7d5-4bc9-9d4b-c4298b7f58df", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/567f21a8-d7d5-4bc9-9d4b-c4298b7f58df.png", "timestamp": "2024-02-15T20:47:26.939265+00:00"}}, {"id": "90e7ff19-96bb-40b2-9f85-a394cca86205", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.107600+00:00", "label": "low", "label_explanation": "It is not possible to tell what the water level is.", "snapshot": {"id": "567f21a8-d7d5-4bc9-9d4b-c4298b7f58df", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/567f21a8-d7d5-4bc9-9d4b-c4298b7f58df.png", "timestamp": "2024-02-15T20:47:26.939265+00:00"}}, {"id": "97374404-8194-4dbe-8a82-bc7d77d5fa64", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.360953+00:00", "label": "null", "label_explanation": "The image is a CCTV image of an urban road.", "snapshot": {"id": "567f21a8-d7d5-4bc9-9d4b-c4298b7f58df", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/567f21a8-d7d5-4bc9-9d4b-c4298b7f58df.png", "timestamp": "2024-02-15T20:47:26.939265+00:00"}}, {"id": "d4a6718b-e2bb-4a64-bfba-5eda2ddbcd8f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.554169+00:00", "label": "false", "label_explanation": "It is not possible to tell if it is raining or not.", "snapshot": {"id": "567f21a8-d7d5-4bc9-9d4b-c4298b7f58df", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/567f21a8-d7d5-4bc9-9d4b-c4298b7f58df.png", "timestamp": "2024-02-15T20:47:26.939265+00:00"}}, {"id": "02a67708-b587-46ac-a970-37fb20786fb3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.705503+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "567f21a8-d7d5-4bc9-9d4b-c4298b7f58df", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/567f21a8-d7d5-4bc9-9d4b-c4298b7f58df.png", "timestamp": "2024-02-15T20:47:26.939265+00:00"}}, {"id": "47766b36-1409-4559-a489-d52fcc34f7c7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.484259+00:00", "label": "easy", "label_explanation": "It is not possible to tell what the traffic conditions are.", "snapshot": {"id": "567f21a8-d7d5-4bc9-9d4b-c4298b7f58df", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/567f21a8-d7d5-4bc9-9d4b-c4298b7f58df.png", "timestamp": "2024-02-15T20:47:26.939265+00:00"}}, {"id": "0ed7354d-5e48-4b38-b0e3-94d2bf3e515e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:54.380271+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "23cfda94-7420-490b-82fd-9555f176e97b", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/23cfda94-7420-490b-82fd-9555f176e97b.png", "timestamp": "2024-02-15T20:32:35.763560+00:00"}}, {"id": "6214d49c-3625-4b60-8e4b-e39a4dc0f30c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:55.320329+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road with moderate traffic. It is daytime, and the weather appears cloudy. There are tall buildings on either side of the road, and trees can be seen lining the sidewalk.", "snapshot": {"id": "23cfda94-7420-490b-82fd-9555f176e97b", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/23cfda94-7420-490b-82fd-9555f176e97b.png", "timestamp": "2024-02-15T20:32:35.763560+00:00"}}, {"id": "4a04679d-5dd5-48f7-8964-7767d331c46a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:57.397438+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "23cfda94-7420-490b-82fd-9555f176e97b", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/23cfda94-7420-490b-82fd-9555f176e97b.png", "timestamp": "2024-02-15T20:32:35.763560+00:00"}}, {"id": "b896d2de-c45a-4211-8b63-cde992730d23", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.843006+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "23cfda94-7420-490b-82fd-9555f176e97b", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/23cfda94-7420-490b-82fd-9555f176e97b.png", "timestamp": "2024-02-15T20:32:35.763560+00:00"}}, {"id": "1b1af598-339f-4cf4-bc3c-9813f03e527d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.137828+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "23cfda94-7420-490b-82fd-9555f176e97b", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/23cfda94-7420-490b-82fd-9555f176e97b.png", "timestamp": "2024-02-15T20:32:35.763560+00:00"}}, {"id": "719c1b7b-c41c-4b95-b128-284b8bf794a1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:58.065427+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "23cfda94-7420-490b-82fd-9555f176e97b", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/23cfda94-7420-490b-82fd-9555f176e97b.png", "timestamp": "2024-02-15T20:32:35.763560+00:00"}}, {"id": "2bc913d5-2456-46d4-9e1a-7ebfa80809a2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.106054+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "88d37211-124b-4a7c-b5c3-b61d1ca393be", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/88d37211-124b-4a7c-b5c3-b61d1ca393be.png", "timestamp": "2024-02-15T20:54:44.046014+00:00"}}, {"id": "d396388e-f8c8-4056-9c60-7728a218d478", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.611161+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several cars on the road, and the road surface is wet from recent rain. There are also a few trees and buildings in the background.", "snapshot": {"id": "88d37211-124b-4a7c-b5c3-b61d1ca393be", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/88d37211-124b-4a7c-b5c3-b61d1ca393be.png", "timestamp": "2024-02-15T20:54:44.046014+00:00"}}, {"id": "e5916c31-96b1-4a3b-99dc-a98495a14316", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.443142+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "88d37211-124b-4a7c-b5c3-b61d1ca393be", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/88d37211-124b-4a7c-b5c3-b61d1ca393be.png", "timestamp": "2024-02-15T20:54:44.046014+00:00"}}, {"id": "8000347f-97d6-47c1-ad5d-39c005b746a5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.580569+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "88d37211-124b-4a7c-b5c3-b61d1ca393be", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/88d37211-124b-4a7c-b5c3-b61d1ca393be.png", "timestamp": "2024-02-15T20:54:44.046014+00:00"}}, {"id": "c58fa76b-543e-47e8-b6c6-a9b84b8064e0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.363516+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While the road is wet from rain, the water has drained away effectively, leaving the road safe for\u901a\u884c.", "snapshot": {"id": "88d37211-124b-4a7c-b5c3-b61d1ca393be", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/88d37211-124b-4a7c-b5c3-b61d1ca393be.png", "timestamp": "2024-02-15T20:54:44.046014+00:00"}}, {"id": "a1c2f40a-0605-4cd1-83ab-de8e7f882d38", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.869595+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "88d37211-124b-4a7c-b5c3-b61d1ca393be", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/88d37211-124b-4a7c-b5c3-b61d1ca393be.png", "timestamp": "2024-02-15T20:54:44.046014+00:00"}}, {"id": "5b3d29e0-9ec9-4897-a4d4-d90f5332e7ca", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.086998+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "e5f013e9-9ff7-4c06-8680-44f59a635554", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/e5f013e9-9ff7-4c06-8680-44f59a635554.png", "timestamp": "2024-02-15T20:49:52.261691+00:00"}}, {"id": "e12a7133-8405-4888-ba0d-b35d838b6a37", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.699889+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or disruptions visible in the image.", "snapshot": {"id": "e5f013e9-9ff7-4c06-8680-44f59a635554", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/e5f013e9-9ff7-4c06-8680-44f59a635554.png", "timestamp": "2024-02-15T20:49:52.261691+00:00"}}, {"id": "98040c0b-c521-4d9c-96ea-5ab77ba92b53", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.828619+00:00", "label": "null", "label_explanation": "The image shows a six-lane urban road with a cable car line running alongside it. The road is moderately busy with both cars and motorbikes, and the weather appears to be overcast with some light rain.", "snapshot": {"id": "e5f013e9-9ff7-4c06-8680-44f59a635554", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/e5f013e9-9ff7-4c06-8680-44f59a635554.png", "timestamp": "2024-02-15T20:49:52.261691+00:00"}}, {"id": "72c2274c-fe31-47bc-a28f-b75f34805efd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.211179+00:00", "label": "true", "label_explanation": "The road surface is wet, with some small puddles visible. The rain is not heavy enough to cause any significant traffic disruptions.", "snapshot": {"id": "e5f013e9-9ff7-4c06-8680-44f59a635554", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/e5f013e9-9ff7-4c06-8680-44f59a635554.png", "timestamp": "2024-02-15T20:49:52.261691+00:00"}}, {"id": "65785039-aff8-4c5f-905e-5b0f6d597aa1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.586006+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e5f013e9-9ff7-4c06-8680-44f59a635554", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/e5f013e9-9ff7-4c06-8680-44f59a635554.png", "timestamp": "2024-02-15T20:49:52.261691+00:00"}}, {"id": "84c016de-4dc3-4d07-b8be-c57467eebd33", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.423251+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few small puddles present. The puddles are not deep enough to cause any problems for vehicles.", "snapshot": {"id": "e5f013e9-9ff7-4c06-8680-44f59a635554", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/e5f013e9-9ff7-4c06-8680-44f59a635554.png", "timestamp": "2024-02-15T20:49:52.261691+00:00"}}, {"id": "a6ff6a63-72a2-4aad-892a-27e7b4f53b6f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.692979+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "f92d3238-4a7f-4399-bb10-216059ac2fa6", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/f92d3238-4a7f-4399-bb10-216059ac2fa6.png", "timestamp": "2024-02-15T20:52:15.723924+00:00"}}, {"id": "de6388ab-d4ea-46e5-9e23-af67829ac43e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:25.494637+00:00", "label": "true", "label_explanation": "The image is corrupted, with large green and grey areas replacing the actual scene.", "snapshot": {"id": "f92d3238-4a7f-4399-bb10-216059ac2fa6", "camera_id": "001387", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001387/f92d3238-4a7f-4399-bb10-216059ac2fa6.png", "timestamp": "2024-02-15T20:52:15.723924+00:00"}}]}, {"id": "001506", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. REAL GRANDEZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95443216, "longitude": -43.19304187, "objects": ["image_corrupted", "image_description", "water_level", "traffic", "road_blockade", "rain"], "identifications": [{"id": "553693d4-6278-4bec-8453-7b1bd99bb230", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:05.756543+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "d8696d96-4930-48c3-9b88-b70c809217f5", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d8696d96-4930-48c3-9b88-b70c809217f5.png", "timestamp": "2024-02-15T20:32:44.618194+00:00"}}, {"id": "134a7c1c-bca5-4e88-b6d3-65b4699ec65f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:04.209643+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d8696d96-4930-48c3-9b88-b70c809217f5", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d8696d96-4930-48c3-9b88-b70c809217f5.png", "timestamp": "2024-02-15T20:32:44.618194+00:00"}}, {"id": "ed88cc58-ea1a-4f44-bf73-d8a293c3b7a6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:03.791168+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and people.", "snapshot": {"id": "d8696d96-4930-48c3-9b88-b70c809217f5", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d8696d96-4930-48c3-9b88-b70c809217f5.png", "timestamp": "2024-02-15T20:32:44.618194+00:00"}}, {"id": "ce5033c7-b8de-44dc-b2cb-068d649d04c6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:05.168118+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "d8696d96-4930-48c3-9b88-b70c809217f5", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d8696d96-4930-48c3-9b88-b70c809217f5.png", "timestamp": "2024-02-15T20:32:44.618194+00:00"}}, {"id": "7e3ae46d-68ed-4ece-9dec-520335f9d1ce", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:04.616570+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "d8696d96-4930-48c3-9b88-b70c809217f5", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d8696d96-4930-48c3-9b88-b70c809217f5.png", "timestamp": "2024-02-15T20:32:44.618194+00:00"}}, {"id": "ffdb627b-ed71-4971-afd2-9bcd45c8baa8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:03.366546+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d8696d96-4930-48c3-9b88-b70c809217f5", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d8696d96-4930-48c3-9b88-b70c809217f5.png", "timestamp": "2024-02-15T20:32:44.618194+00:00"}}, {"id": "1563533a-891a-4a1c-a080-4b967a5efadb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:33.573051+00:00", "label": "easy", "label_explanation": "The traffic flow is moderate. Vehicles are moving at a steady pace and there are no major congestion or delays. Pedestrians are also able to cross the street safely and without hindrance.", "snapshot": {"id": "9b4b100f-994b-42e7-991f-241af1a8bc6a", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/9b4b100f-994b-42e7-991f-241af1a8bc6a.png", "timestamp": "2024-02-15T20:30:17.567715+00:00"}}, {"id": "d75e9e45-a537-4f1b-bb27-cb74a3f1f74c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.619650+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians can be seen walking on the sidewalks and crossing the street. The road is in good condition, with visible lane markings and crosswalks. There are buildings and trees on either side of the road.", "snapshot": {"id": "9b4b100f-994b-42e7-991f-241af1a8bc6a", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/9b4b100f-994b-42e7-991f-241af1a8bc6a.png", "timestamp": "2024-02-15T20:30:17.567715+00:00"}}, {"id": "ad6da639-6c2b-4cac-98af-9c49bedbb01f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.365042+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9b4b100f-994b-42e7-991f-241af1a8bc6a", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/9b4b100f-994b-42e7-991f-241af1a8bc6a.png", "timestamp": "2024-02-15T20:30:17.567715+00:00"}}, {"id": "e291ea49-cc49-43ce-8a4d-288036721350", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:33.383349+00:00", "label": "low", "label_explanation": "The water level on the road is low. While the road is wet, there are no significant puddles or areas where water is pooling. Vehicles and pedestrians can navigate the road without difficulty.", "snapshot": {"id": "9b4b100f-994b-42e7-991f-241af1a8bc6a", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/9b4b100f-994b-42e7-991f-241af1a8bc6a.png", "timestamp": "2024-02-15T20:30:17.567715+00:00"}}, {"id": "d0a9736c-75db-4fb3-85dd-973054155574", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:33.790985+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. All lanes are open and traffic is flowing smoothly.", "snapshot": {"id": "9b4b100f-994b-42e7-991f-241af1a8bc6a", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/9b4b100f-994b-42e7-991f-241af1a8bc6a.png", "timestamp": "2024-02-15T20:30:17.567715+00:00"}}, {"id": "0bc4671c-7512-48a6-8faf-c289ecac433b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.932819+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently raining. The reflections on the road and the lack of distinct shadows confirm the presence of water on the road.", "snapshot": {"id": "9b4b100f-994b-42e7-991f-241af1a8bc6a", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/9b4b100f-994b-42e7-991f-241af1a8bc6a.png", "timestamp": "2024-02-15T20:30:17.567715+00:00"}}, {"id": "d0e61940-1e02-4404-acb5-516e38ff6e8f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.405292+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "64695756-326b-458b-a1fe-10c6a5b0436f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/64695756-326b-458b-a1fe-10c6a5b0436f.png", "timestamp": "2024-02-15T20:35:17.416159+00:00"}}, {"id": "fe963848-406d-4c5d-84d3-b675f7d5e5fb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.690929+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "64695756-326b-458b-a1fe-10c6a5b0436f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/64695756-326b-458b-a1fe-10c6a5b0436f.png", "timestamp": "2024-02-15T20:35:17.416159+00:00"}}, {"id": "a1edcf5b-0a1b-4425-9fe9-ea4763f53d14", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.698874+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "64695756-326b-458b-a1fe-10c6a5b0436f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/64695756-326b-458b-a1fe-10c6a5b0436f.png", "timestamp": "2024-02-15T20:35:17.416159+00:00"}}, {"id": "f0cd692a-8463-446c-8f9b-53490f15a5e5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.146966+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "64695756-326b-458b-a1fe-10c6a5b0436f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/64695756-326b-458b-a1fe-10c6a5b0436f.png", "timestamp": "2024-02-15T20:35:17.416159+00:00"}}, {"id": "c0c923e2-228b-41b6-8832-7a485cb3a8e1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:34.859605+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "64695756-326b-458b-a1fe-10c6a5b0436f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/64695756-326b-458b-a1fe-10c6a5b0436f.png", "timestamp": "2024-02-15T20:35:17.416159+00:00"}}, {"id": "95be0818-c06b-4b52-b7b4-9e03d90edc4a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:34.445966+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "64695756-326b-458b-a1fe-10c6a5b0436f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/64695756-326b-458b-a1fe-10c6a5b0436f.png", "timestamp": "2024-02-15T20:35:17.416159+00:00"}}, {"id": "9b1e769d-9466-4699-9b27-2433e904f433", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:03.179643+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "140fe6f1-82fc-4820-838f-2b87ba20589d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/140fe6f1-82fc-4820-838f-2b87ba20589d.png", "timestamp": "2024-02-15T20:37:49.499996+00:00"}}, {"id": "83840bc9-1fed-4411-888e-efd0a422e6bb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.110070+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "140fe6f1-82fc-4820-838f-2b87ba20589d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/140fe6f1-82fc-4820-838f-2b87ba20589d.png", "timestamp": "2024-02-15T20:37:49.499996+00:00"}}, {"id": "13db6441-514b-40aa-9467-b8c998672701", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:05.143558+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "140fe6f1-82fc-4820-838f-2b87ba20589d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/140fe6f1-82fc-4820-838f-2b87ba20589d.png", "timestamp": "2024-02-15T20:37:49.499996+00:00"}}, {"id": "d6ad91b8-2438-48af-be4a-e157329cc355", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:03.782375+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "140fe6f1-82fc-4820-838f-2b87ba20589d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/140fe6f1-82fc-4820-838f-2b87ba20589d.png", "timestamp": "2024-02-15T20:37:49.499996+00:00"}}, {"id": "1f81a1b0-4028-4204-8939-1d33c462c3a2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:04.219323+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with both vehicles and pedestrians using the road without any major disruptions.", "snapshot": {"id": "140fe6f1-82fc-4820-838f-2b87ba20589d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/140fe6f1-82fc-4820-838f-2b87ba20589d.png", "timestamp": "2024-02-15T20:37:49.499996+00:00"}}, {"id": "0a272dd1-e99f-4aa5-bd36-ed64f66bfcee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.614583+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several people crossing the street, some vehicles parked on the side, and buildings in the background.", "snapshot": {"id": "140fe6f1-82fc-4820-838f-2b87ba20589d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/140fe6f1-82fc-4820-838f-2b87ba20589d.png", "timestamp": "2024-02-15T20:37:49.499996+00:00"}}, {"id": "56df8f18-d89d-442e-8cd9-3639e07e9e7a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.288388+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2f2431ed-fec7-4cb5-aef8-369c1f3613d3", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/2f2431ed-fec7-4cb5-aef8-369c1f3613d3.png", "timestamp": "2024-02-15T20:40:21.636983+00:00"}}, {"id": "a34f50b8-ff03-467e-ba34-c753c6eee6d3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.017586+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "2f2431ed-fec7-4cb5-aef8-369c1f3613d3", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/2f2431ed-fec7-4cb5-aef8-369c1f3613d3.png", "timestamp": "2024-02-15T20:40:21.636983+00:00"}}, {"id": "7a7d79a5-6f26-483b-b3a8-cc597b829b97", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.558628+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several elements. It is daytime and the weather appears to be cloudy. There are a few people walking on the sidewalks, and several parked cars are visible along the road.", "snapshot": {"id": "2f2431ed-fec7-4cb5-aef8-369c1f3613d3", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/2f2431ed-fec7-4cb5-aef8-369c1f3613d3.png", "timestamp": "2024-02-15T20:40:21.636983+00:00"}}, {"id": "679ee14d-96ec-416f-8bdf-a8067794381e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.340565+00:00", "label": "easy", "label_explanation": "The traffic appears to be flowing smoothly, with no major congestion or disruptions.", "snapshot": {"id": "2f2431ed-fec7-4cb5-aef8-369c1f3613d3", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/2f2431ed-fec7-4cb5-aef8-369c1f3613d3.png", "timestamp": "2024-02-15T20:40:21.636983+00:00"}}, {"id": "213074f3-a428-41c4-8604-1a16a542c1dd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.828916+00:00", "label": "false", "label_explanation": "There are no visible signs of rain in the image. The road surface is dry, and there are no puddles or reflections on the road.", "snapshot": {"id": "2f2431ed-fec7-4cb5-aef8-369c1f3613d3", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/2f2431ed-fec7-4cb5-aef8-369c1f3613d3.png", "timestamp": "2024-02-15T20:40:21.636983+00:00"}}, {"id": "fbd747af-e1ce-4af6-8dfe-3870bfaf297b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.660740+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely.", "snapshot": {"id": "2f2431ed-fec7-4cb5-aef8-369c1f3613d3", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/2f2431ed-fec7-4cb5-aef8-369c1f3613d3.png", "timestamp": "2024-02-15T20:40:21.636983+00:00"}}, {"id": "8413c0b8-34ca-4492-92f6-46acb3261639", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.096743+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for free and uninterrupted traffic flow.", "snapshot": {"id": "8002b0a3-e9d4-44bb-bc26-4d045f418c33", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/8002b0a3-e9d4-44bb-bc26-4d045f418c33.png", "timestamp": "2024-02-15T20:42:48.786537+00:00"}}, {"id": "90a48fca-dcad-4f92-a171-b5ad6958b801", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.626853+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles scattered around. The majority of the road surface is still visible and dry.", "snapshot": {"id": "8002b0a3-e9d4-44bb-bc26-4d045f418c33", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/8002b0a3-e9d4-44bb-bc26-4d045f418c33.png", "timestamp": "2024-02-15T20:42:48.786537+00:00"}}, {"id": "32dd8a19-d875-4987-8dfc-849e1b386074", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.365734+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining.", "snapshot": {"id": "8002b0a3-e9d4-44bb-bc26-4d045f418c33", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/8002b0a3-e9d4-44bb-bc26-4d045f418c33.png", "timestamp": "2024-02-15T20:42:48.786537+00:00"}}, {"id": "d45f72cf-4f87-40a1-9701-9e55382f4f1a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.817200+00:00", "label": "easy", "label_explanation": "The traffic appears to be moving smoothly, with no major congestion or obstacles visible in the image.", "snapshot": {"id": "8002b0a3-e9d4-44bb-bc26-4d045f418c33", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/8002b0a3-e9d4-44bb-bc26-4d045f418c33.png", "timestamp": "2024-02-15T20:42:48.786537+00:00"}}, {"id": "e6073cd6-c843-4b06-85cf-e21a67c4738e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.959800+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several elements. It is daytime and the weather appears to be cloudy. There are a few people walking on the sidewalks, and several vehicles, including a yellow taxi, are present on the road. The road surface is wet, with some small puddles visible.", "snapshot": {"id": "8002b0a3-e9d4-44bb-bc26-4d045f418c33", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/8002b0a3-e9d4-44bb-bc26-4d045f418c33.png", "timestamp": "2024-02-15T20:42:48.786537+00:00"}}, {"id": "bc616124-57c2-4998-aa94-21a11ea28bfe", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.562148+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8002b0a3-e9d4-44bb-bc26-4d045f418c33", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/8002b0a3-e9d4-44bb-bc26-4d045f418c33.png", "timestamp": "2024-02-15T20:42:48.786537+00:00"}}, {"id": "a316ab2a-3806-4713-ba6f-ea74561edd7f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.573533+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several people crossing the street, some vehicles parked on the side, and buildings in the background.", "snapshot": {"id": "60dd1cd5-03e9-4ed3-9d07-f83155795b59", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/60dd1cd5-03e9-4ed3-9d07-f83155795b59.png", "timestamp": "2024-02-15T20:47:36.961142+00:00"}}, {"id": "84ef5f65-7b23-4cce-8f13-7669db0f3dc1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.391856+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "60dd1cd5-03e9-4ed3-9d07-f83155795b59", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/60dd1cd5-03e9-4ed3-9d07-f83155795b59.png", "timestamp": "2024-02-15T20:47:36.961142+00:00"}}, {"id": "2afc084c-8cdb-4e05-91bd-1bd34e0e3b7b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.321537+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "60dd1cd5-03e9-4ed3-9d07-f83155795b59", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/60dd1cd5-03e9-4ed3-9d07-f83155795b59.png", "timestamp": "2024-02-15T20:47:36.961142+00:00"}}, {"id": "664e11f4-d03d-43a6-81c7-84a8191fb045", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.579763+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "60dd1cd5-03e9-4ed3-9d07-f83155795b59", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/60dd1cd5-03e9-4ed3-9d07-f83155795b59.png", "timestamp": "2024-02-15T20:47:36.961142+00:00"}}, {"id": "b62c9d52-efe4-46f9-89b2-e202acad23ce", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.087381+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "60dd1cd5-03e9-4ed3-9d07-f83155795b59", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/60dd1cd5-03e9-4ed3-9d07-f83155795b59.png", "timestamp": "2024-02-15T20:47:36.961142+00:00"}}, {"id": "05af96d0-ce7d-4457-897a-4043ab7f9f49", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.833249+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "60dd1cd5-03e9-4ed3-9d07-f83155795b59", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/60dd1cd5-03e9-4ed3-9d07-f83155795b59.png", "timestamp": "2024-02-15T20:47:36.961142+00:00"}}, {"id": "7a379997-4d74-4e67-bea3-952b7b5af941", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.290070+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "db639d22-8168-4712-851c-c4aa1fe49731", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/db639d22-8168-4712-851c-c4aa1fe49731.png", "timestamp": "2024-02-15T20:45:11.084559+00:00"}}, {"id": "93f33534-2c6c-4c03-b698-e21cebb9ce67", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.910101+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with several vehicles on the road. However, the traffic is flowing smoothly and there are no major delays.", "snapshot": {"id": "db639d22-8168-4712-851c-c4aa1fe49731", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/db639d22-8168-4712-851c-c4aa1fe49731.png", "timestamp": "2024-02-15T20:45:11.084559+00:00"}}, {"id": "2debb249-280d-43ce-8fb3-23ace0ffc064", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.725707+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "db639d22-8168-4712-851c-c4aa1fe49731", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/db639d22-8168-4712-851c-c4aa1fe49731.png", "timestamp": "2024-02-15T20:45:11.084559+00:00"}}, {"id": "50e7b3ec-eea6-4886-8e50-6ff7fac7fb8f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.724922+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but this is likely due to recent rain.", "snapshot": {"id": "db639d22-8168-4712-851c-c4aa1fe49731", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/db639d22-8168-4712-851c-c4aa1fe49731.png", "timestamp": "2024-02-15T20:45:11.084559+00:00"}}, {"id": "401f7561-bcaa-457f-b757-43d804418c32", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.582732+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, there is no standing water, suggesting that the rain has been light.", "snapshot": {"id": "db639d22-8168-4712-851c-c4aa1fe49731", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/db639d22-8168-4712-851c-c4aa1fe49731.png", "timestamp": "2024-02-15T20:45:11.084559+00:00"}}, {"id": "95a80838-7dd2-4ff1-9c62-31bacf695749", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.243306+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, crossing the intersection. The road surface is wet, but there is no standing water.", "snapshot": {"id": "db639d22-8168-4712-851c-c4aa1fe49731", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/db639d22-8168-4712-851c-c4aa1fe49731.png", "timestamp": "2024-02-15T20:45:11.084559+00:00"}}, {"id": "d32aea42-63f1-4bd8-93ff-c8fd877fa970", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.187756+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road, and traffic is able to flow freely.", "snapshot": {"id": "cefa6e3c-f814-4899-bf48-a757b07fd56f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/cefa6e3c-f814-4899-bf48-a757b07fd56f.png", "timestamp": "2024-02-15T20:52:22.883488+00:00"}}, {"id": "195db210-9478-45c8-80c1-b280edf18377", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:33.901410+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, buildings, and pedestrians.", "snapshot": {"id": "cefa6e3c-f814-4899-bf48-a757b07fd56f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/cefa6e3c-f814-4899-bf48-a757b07fd56f.png", "timestamp": "2024-02-15T20:52:22.883488+00:00"}}, {"id": "0738767f-dc06-4f8e-8572-c505b6ce04bb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.697040+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "cefa6e3c-f814-4899-bf48-a757b07fd56f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/cefa6e3c-f814-4899-bf48-a757b07fd56f.png", "timestamp": "2024-02-15T20:52:22.883488+00:00"}}, {"id": "b517b011-739d-4753-a3e9-4f2be0ce26b0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.487314+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "cefa6e3c-f814-4899-bf48-a757b07fd56f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/cefa6e3c-f814-4899-bf48-a757b07fd56f.png", "timestamp": "2024-02-15T20:52:22.883488+00:00"}}, {"id": "a403b219-0b88-4151-8a16-2767fdb838d2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.241731+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "cefa6e3c-f814-4899-bf48-a757b07fd56f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/cefa6e3c-f814-4899-bf48-a757b07fd56f.png", "timestamp": "2024-02-15T20:52:22.883488+00:00"}}, {"id": "f5e44dc8-f489-4f88-a06f-00563b486fba", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:33.522144+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cefa6e3c-f814-4899-bf48-a757b07fd56f", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/cefa6e3c-f814-4899-bf48-a757b07fd56f.png", "timestamp": "2024-02-15T20:52:22.883488+00:00"}}, {"id": "20521aa6-f415-4892-854e-1b410d2ccac6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.531969+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "ba81c5d3-4350-4091-9d14-c5ff186c703d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/ba81c5d3-4350-4091-9d14-c5ff186c703d.png", "timestamp": "2024-02-15T20:54:53.262802+00:00"}}, {"id": "843b4746-7d14-4d61-8708-11a50d22bb4f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.155573+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "ba81c5d3-4350-4091-9d14-c5ff186c703d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/ba81c5d3-4350-4091-9d14-c5ff186c703d.png", "timestamp": "2024-02-15T20:54:53.262802+00:00"}}, {"id": "1e6ba0cd-c42f-4d6b-a587-805ab9627185", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.201542+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ba81c5d3-4350-4091-9d14-c5ff186c703d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/ba81c5d3-4350-4091-9d14-c5ff186c703d.png", "timestamp": "2024-02-15T20:54:53.262802+00:00"}}, {"id": "6bb97b15-f361-4565-bcd2-973739b45f27", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.336607+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "ba81c5d3-4350-4091-9d14-c5ff186c703d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/ba81c5d3-4350-4091-9d14-c5ff186c703d.png", "timestamp": "2024-02-15T20:54:53.262802+00:00"}}, {"id": "d13c2a4e-1d94-4fc3-b042-ed417b85bc44", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.504185+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "ba81c5d3-4350-4091-9d14-c5ff186c703d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/ba81c5d3-4350-4091-9d14-c5ff186c703d.png", "timestamp": "2024-02-15T20:54:53.262802+00:00"}}, {"id": "2c5e778b-ad3a-48c5-99c2-4dbbcda1b196", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.729682+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "ba81c5d3-4350-4091-9d14-c5ff186c703d", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/ba81c5d3-4350-4091-9d14-c5ff186c703d.png", "timestamp": "2024-02-15T20:54:53.262802+00:00"}}, {"id": "3771a772-5984-413b-a13a-10e7b8296657", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:11.430464+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars, motorcycles, and bicycles. Pedestrians are also visible, walking on the sidewalks and crossing the street. The road is wet from recent rain, but there are no large puddles or standing water.", "snapshot": {"id": "d878c080-20bc-4766-8573-88630d406b54", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d878c080-20bc-4766-8573-88630d406b54.png", "timestamp": "2024-02-15T20:49:59.910115+00:00"}}, {"id": "dc40b875-f67f-4559-8541-fa00f8530c7a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:10.949570+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d878c080-20bc-4766-8573-88630d406b54", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d878c080-20bc-4766-8573-88630d406b54.png", "timestamp": "2024-02-15T20:49:59.910115+00:00"}}, {"id": "a66496c9-af7e-4830-850b-4c4c618153ef", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.180638+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away.", "snapshot": {"id": "d878c080-20bc-4766-8573-88630d406b54", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d878c080-20bc-4766-8573-88630d406b54.png", "timestamp": "2024-02-15T20:49:59.910115+00:00"}}, {"id": "4b096f5f-ec45-4dea-bc76-b008be41db78", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:11.866878+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy, and there is no standing water.", "snapshot": {"id": "d878c080-20bc-4766-8573-88630d406b54", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d878c080-20bc-4766-8573-88630d406b54.png", "timestamp": "2024-02-15T20:49:59.910115+00:00"}}, {"id": "ce167b33-0878-4390-a4de-4eaf823afd35", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.417476+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or obstructions.", "snapshot": {"id": "d878c080-20bc-4766-8573-88630d406b54", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d878c080-20bc-4766-8573-88630d406b54.png", "timestamp": "2024-02-15T20:49:59.910115+00:00"}}, {"id": "4a03aa97-4acf-40e3-8824-20ff8daa8012", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.620989+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in all directions.", "snapshot": {"id": "d878c080-20bc-4766-8573-88630d406b54", "camera_id": "001506", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001506/d878c080-20bc-4766-8573-88630d406b54.png", "timestamp": "2024-02-15T20:49:59.910115+00:00"}}]}, {"id": "001383", "name": "R. SARGENTO JO\u00c3O DE FARIA X AV. MINISTRO IVAN LINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01332281, "longitude": -43.2973656, "objects": ["water_level", "image_corrupted", "image_description", "rain", "traffic", "road_blockade"], "identifications": [{"id": "546f24db-3dfd-4f5d-9424-7b0ad97ff5e5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:54.603503+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "d47583fe-b3a5-4e27-96b0-8c1a36af0d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d47583fe-b3a5-4e27-96b0-8c1a36af0d3f.png", "timestamp": "2024-02-15T20:32:36.680086+00:00"}}, {"id": "9374894c-59e8-4e60-bb05-2d63c577092f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.545087+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d47583fe-b3a5-4e27-96b0-8c1a36af0d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d47583fe-b3a5-4e27-96b0-8c1a36af0d3f.png", "timestamp": "2024-02-15T20:32:36.680086+00:00"}}, {"id": "b37ca68e-e628-4813-a455-11defc15c91d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:55.577632+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no visible congestion or hazards.", "snapshot": {"id": "d47583fe-b3a5-4e27-96b0-8c1a36af0d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d47583fe-b3a5-4e27-96b0-8c1a36af0d3f.png", "timestamp": "2024-02-15T20:32:36.680086+00:00"}}, {"id": "fd0f21de-0458-49e8-a61b-a32f969c6521", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.925331+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "d47583fe-b3a5-4e27-96b0-8c1a36af0d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d47583fe-b3a5-4e27-96b0-8c1a36af0d3f.png", "timestamp": "2024-02-15T20:32:36.680086+00:00"}}, {"id": "5b3a2acf-5a68-4c1b-8a4a-d443829f58f0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.351670+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with a truck and a car on the road. The truck is on the right side of the image, and the car is on the left side. There is a building in the background, and trees on either side of the road. The weather appears to be clear, and the road surface is dry.", "snapshot": {"id": "d47583fe-b3a5-4e27-96b0-8c1a36af0d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d47583fe-b3a5-4e27-96b0-8c1a36af0d3f.png", "timestamp": "2024-02-15T20:32:36.680086+00:00"}}, {"id": "04bf70b2-14d5-4757-82d5-7f6c2addd627", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.336593+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "d47583fe-b3a5-4e27-96b0-8c1a36af0d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d47583fe-b3a5-4e27-96b0-8c1a36af0d3f.png", "timestamp": "2024-02-15T20:32:36.680086+00:00"}}, {"id": "dac7c807-bcd1-4580-81fd-c9a079c82260", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.895659+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "60a78dfd-e7d0-4fc4-98e0-0ec2eb308041", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/60a78dfd-e7d0-4fc4-98e0-0ec2eb308041.png", "timestamp": "2024-02-15T20:30:11.342373+00:00"}}, {"id": "1f7d50b8-0a86-44b3-aacc-c13ecd22895e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.660111+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "60a78dfd-e7d0-4fc4-98e0-0ec2eb308041", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/60a78dfd-e7d0-4fc4-98e0-0ec2eb308041.png", "timestamp": "2024-02-15T20:30:11.342373+00:00"}}, {"id": "bdb33653-169e-417e-b27a-2f74a8bb2364", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.661734+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a detailed description.", "snapshot": {"id": "dc805995-2efb-4582-83ed-e4cb1a2daa2f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/dc805995-2efb-4582-83ed-e4cb1a2daa2f.png", "timestamp": "2024-02-15T20:37:45.005198+00:00"}}, {"id": "39801ee4-5b6c-4628-a516-fa28deceb185", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.174975+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with a green tint and distorted colors. The image is unusable for analysis.", "snapshot": {"id": "dc805995-2efb-4582-83ed-e4cb1a2daa2f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/dc805995-2efb-4582-83ed-e4cb1a2daa2f.png", "timestamp": "2024-02-15T20:37:45.005198+00:00"}}, {"id": "5a33c5e7-dafd-4a61-918e-08f1fffbcb5d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.789637+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "e1cc1f03-d55d-44dd-8f3f-3725b56e7375", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/e1cc1f03-d55d-44dd-8f3f-3725b56e7375.png", "timestamp": "2024-02-15T20:35:13.754016+00:00"}}, {"id": "7ea6a52b-c1ee-4978-9201-f370ad49f848", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.395854+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "e1cc1f03-d55d-44dd-8f3f-3725b56e7375", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/e1cc1f03-d55d-44dd-8f3f-3725b56e7375.png", "timestamp": "2024-02-15T20:35:13.754016+00:00"}}, {"id": "6b5b50af-439b-48d1-b419-dd4d8bc6c55c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.934545+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "e1cc1f03-d55d-44dd-8f3f-3725b56e7375", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/e1cc1f03-d55d-44dd-8f3f-3725b56e7375.png", "timestamp": "2024-02-15T20:35:13.754016+00:00"}}, {"id": "5eb249fd-643a-42eb-afe7-77ce0377c669", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:26.591487+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e1cc1f03-d55d-44dd-8f3f-3725b56e7375", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/e1cc1f03-d55d-44dd-8f3f-3725b56e7375.png", "timestamp": "2024-02-15T20:35:13.754016+00:00"}}, {"id": "14be5fa2-a206-492b-b15a-60ccebd4aa95", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.263028+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a large tree on the left side. There are several cars on the road, and the weather appears to be clear.", "snapshot": {"id": "e1cc1f03-d55d-44dd-8f3f-3725b56e7375", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/e1cc1f03-d55d-44dd-8f3f-3725b56e7375.png", "timestamp": "2024-02-15T20:35:13.754016+00:00"}}, {"id": "7d67bc60-55e2-4d4e-8015-76c63ae2bb50", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:29.098722+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "e1cc1f03-d55d-44dd-8f3f-3725b56e7375", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/e1cc1f03-d55d-44dd-8f3f-3725b56e7375.png", "timestamp": "2024-02-15T20:35:13.754016+00:00"}}, {"id": "ec0030b6-e544-413d-9d0e-13579a0dba41", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.273053+00:00", "label": "free", "label_explanation": "The road is not blocked, with no obstructions visible.", "snapshot": {"id": "651ea6f6-33cf-44ca-8e9e-703a118d7d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/651ea6f6-33cf-44ca-8e9e-703a118d7d3f.png", "timestamp": "2024-02-15T20:40:13.709823+00:00"}}, {"id": "028a6031-e2b1-413d-a442-ce2502817e04", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.654556+00:00", "label": "null", "label_explanation": "The image is of an urban road with a person walking on the right side of the road. There is a bus in the background and a tree on the left side of the road. The road is wet from rain.", "snapshot": {"id": "651ea6f6-33cf-44ca-8e9e-703a118d7d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/651ea6f6-33cf-44ca-8e9e-703a118d7d3f.png", "timestamp": "2024-02-15T20:40:13.709823+00:00"}}, {"id": "236e7bbe-d579-4d94-95be-c303639dc8d7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.310797+00:00", "label": "true", "label_explanation": "The image is corrupted, with a significant portion distorted by a bright pink and purple pattern.", "snapshot": {"id": "651ea6f6-33cf-44ca-8e9e-703a118d7d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/651ea6f6-33cf-44ca-8e9e-703a118d7d3f.png", "timestamp": "2024-02-15T20:40:13.709823+00:00"}}, {"id": "2009b804-84d0-474b-b752-f286efdfbb85", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.577605+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles on the road.", "snapshot": {"id": "651ea6f6-33cf-44ca-8e9e-703a118d7d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/651ea6f6-33cf-44ca-8e9e-703a118d7d3f.png", "timestamp": "2024-02-15T20:40:13.709823+00:00"}}, {"id": "ed18a339-1b98-413c-a781-c2495d54ff80", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.900410+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars on the road.", "snapshot": {"id": "651ea6f6-33cf-44ca-8e9e-703a118d7d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/651ea6f6-33cf-44ca-8e9e-703a118d7d3f.png", "timestamp": "2024-02-15T20:40:13.709823+00:00"}}, {"id": "a3fa0ec9-c5b7-4848-84e5-cad42902ecac", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.074890+00:00", "label": "true", "label_explanation": "The road is wet from rain.", "snapshot": {"id": "651ea6f6-33cf-44ca-8e9e-703a118d7d3f", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/651ea6f6-33cf-44ca-8e9e-703a118d7d3f.png", "timestamp": "2024-02-15T20:40:13.709823+00:00"}}, {"id": "2dabb1d5-2a11-40a8-b2e2-8ada4d75d7d8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.298928+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free and uninterrupted traffic flow.", "snapshot": {"id": "125ebfaf-91f6-4c7a-96e9-533e0412f8d8", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/125ebfaf-91f6-4c7a-96e9-533e0412f8d8.png", "timestamp": "2024-02-15T20:42:41.105369+00:00"}}, {"id": "a38532f8-716d-43d8-8dff-2af0fb3de3f8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:53.880748+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "125ebfaf-91f6-4c7a-96e9-533e0412f8d8", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/125ebfaf-91f6-4c7a-96e9-533e0412f8d8.png", "timestamp": "2024-02-15T20:42:41.105369+00:00"}}, {"id": "9aa538a8-0803-4f55-b589-f2c533522080", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.140499+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "125ebfaf-91f6-4c7a-96e9-533e0412f8d8", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/125ebfaf-91f6-4c7a-96e9-533e0412f8d8.png", "timestamp": "2024-02-15T20:42:41.105369+00:00"}}, {"id": "348c746d-a6c7-4e74-8089-e09a59776062", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:53.149390+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently raining.", "snapshot": {"id": "125ebfaf-91f6-4c7a-96e9-533e0412f8d8", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/125ebfaf-91f6-4c7a-96e9-533e0412f8d8.png", "timestamp": "2024-02-15T20:42:41.105369+00:00"}}, {"id": "23ec2c8e-1913-488c-974d-7b98cb5127bd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.892846+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a slight bend. It is daytime, and the weather appears to be overcast. There are several vehicles on the road, including cars and motorbikes. Trees and buildings can be seen on either side of the road.", "snapshot": {"id": "125ebfaf-91f6-4c7a-96e9-533e0412f8d8", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/125ebfaf-91f6-4c7a-96e9-533e0412f8d8.png", "timestamp": "2024-02-15T20:42:41.105369+00:00"}}, {"id": "2ee0adfa-3499-4011-9b73-bdb1dcf7c528", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:52.646048+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "125ebfaf-91f6-4c7a-96e9-533e0412f8d8", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/125ebfaf-91f6-4c7a-96e9-533e0412f8d8.png", "timestamp": "2024-02-15T20:42:41.105369+00:00"}}, {"id": "738c4a40-e002-464d-9d57-081be30e35f3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.659584+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road.", "snapshot": {"id": "39802c96-d45e-4425-a752-6f458d9d31cd", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/39802c96-d45e-4425-a752-6f458d9d31cd.png", "timestamp": "2024-02-15T20:45:05.264605+00:00"}}, {"id": "c194062e-95ee-4051-9c59-6b608fd7b00d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.389757+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street and surrounding buildings. It is daytime and the weather appears to be cloudy but dry.", "snapshot": {"id": "39802c96-d45e-4425-a752-6f458d9d31cd", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/39802c96-d45e-4425-a752-6f458d9d31cd.png", "timestamp": "2024-02-15T20:45:05.264605+00:00"}}, {"id": "9c20aa4c-6adc-4813-8dbd-dc962e114c0a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.454428+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "39802c96-d45e-4425-a752-6f458d9d31cd", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/39802c96-d45e-4425-a752-6f458d9d31cd.png", "timestamp": "2024-02-15T20:45:05.264605+00:00"}}, {"id": "efb5ab87-4349-4ee6-9013-ed3d86386305", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.876719+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "39802c96-d45e-4425-a752-6f458d9d31cd", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/39802c96-d45e-4425-a752-6f458d9d31cd.png", "timestamp": "2024-02-15T20:45:05.264605+00:00"}}, {"id": "fe6e820a-a4a1-4097-8672-735e9d48f2e2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.602693+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "39802c96-d45e-4425-a752-6f458d9d31cd", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/39802c96-d45e-4425-a752-6f458d9d31cd.png", "timestamp": "2024-02-15T20:45:05.264605+00:00"}}, {"id": "8e18cce6-9d03-451b-abc1-8246e82de8fc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.126478+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "39802c96-d45e-4425-a752-6f458d9d31cd", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/39802c96-d45e-4425-a752-6f458d9d31cd.png", "timestamp": "2024-02-15T20:45:05.264605+00:00"}}, {"id": "fc74ccde-e4de-473f-a68a-7da7c1401b85", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.324062+00:00", "label": "true", "label_explanation": "The image is corrupted. There is a uniform grey color and distortion in the image.", "snapshot": {"id": "079a5eff-c78f-48fa-809b-3c46f54ca954", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/079a5eff-c78f-48fa-809b-3c46f54ca954.png", "timestamp": "2024-02-15T20:47:26.947703+00:00"}}, {"id": "99140e1d-7c7f-4f26-8903-00cf98eab27a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:37.641732+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be described.", "snapshot": {"id": "079a5eff-c78f-48fa-809b-3c46f54ca954", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/079a5eff-c78f-48fa-809b-3c46f54ca954.png", "timestamp": "2024-02-15T20:47:26.947703+00:00"}}, {"id": "8198b66c-ed7c-40e9-9e5a-e8926e4db957", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.985115+00:00", "label": "low", "label_explanation": "It is not possible to tell the water level.", "snapshot": {"id": "d70bae0c-bf71-46d8-8836-8b5b5ce17b79", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d70bae0c-bf71-46d8-8836-8b5b5ce17b79.png", "timestamp": "2024-02-15T20:49:52.263054+00:00"}}, {"id": "c821d2ba-56fc-493b-9835-ed382737782e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.322035+00:00", "label": "easy", "label_explanation": "It is not possible to tell the traffic conditions.", "snapshot": {"id": "d70bae0c-bf71-46d8-8836-8b5b5ce17b79", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d70bae0c-bf71-46d8-8836-8b5b5ce17b79.png", "timestamp": "2024-02-15T20:49:52.263054+00:00"}}, {"id": "0687ac17-9b1a-487b-8e51-37b29541e3b0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.698179+00:00", "label": "free", "label_explanation": "It is not possible to tell if the road is blocked.", "snapshot": {"id": "d70bae0c-bf71-46d8-8836-8b5b5ce17b79", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d70bae0c-bf71-46d8-8836-8b5b5ce17b79.png", "timestamp": "2024-02-15T20:49:52.263054+00:00"}}, {"id": "2e71957e-dc1e-4a13-8cda-fa71d45ee737", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.210243+00:00", "label": "null", "label_explanation": "The image is a CCTV image of an urban road.", "snapshot": {"id": "d70bae0c-bf71-46d8-8836-8b5b5ce17b79", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d70bae0c-bf71-46d8-8836-8b5b5ce17b79.png", "timestamp": "2024-02-15T20:49:52.263054+00:00"}}, {"id": "ae405072-1a19-49b7-81ea-54c1e9e09d91", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:01.895781+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "d70bae0c-bf71-46d8-8836-8b5b5ce17b79", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d70bae0c-bf71-46d8-8836-8b5b5ce17b79.png", "timestamp": "2024-02-15T20:49:52.263054+00:00"}}, {"id": "dc734aba-c135-4e9e-8a59-c8529c710b1c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:02.563753+00:00", "label": "false", "label_explanation": "It is not possible to tell if it is raining.", "snapshot": {"id": "d70bae0c-bf71-46d8-8836-8b5b5ce17b79", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/d70bae0c-bf71-46d8-8836-8b5b5ce17b79.png", "timestamp": "2024-02-15T20:49:52.263054+00:00"}}, {"id": "12b41a60-f8da-406d-b6ef-2690aed21337", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.479530+00:00", "label": "null", "label_explanation": "The image shows a section of an urban road with a few cars parked on the side. The road is dry, and there are no visible signs of water.", "snapshot": {"id": "6a96c1ae-bb07-45c1-ae45-d7142bf88320", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/6a96c1ae-bb07-45c1-ae45-d7142bf88320.png", "timestamp": "2024-02-15T20:52:16.426008+00:00"}}, {"id": "7aef48cc-a3de-428d-89db-9088971d2bfa", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.647024+00:00", "label": "easy", "label_explanation": "There is no traffic on the road.", "snapshot": {"id": "6a96c1ae-bb07-45c1-ae45-d7142bf88320", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/6a96c1ae-bb07-45c1-ae45-d7142bf88320.png", "timestamp": "2024-02-15T20:52:16.426008+00:00"}}, {"id": "14a882d4-62da-4fe1-b3cd-32200beba812", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.917496+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "6a96c1ae-bb07-45c1-ae45-d7142bf88320", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/6a96c1ae-bb07-45c1-ae45-d7142bf88320.png", "timestamp": "2024-02-15T20:52:16.426008+00:00"}}, {"id": "b1feed84-1861-4b1e-8bc7-d03b38443efe", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.235736+00:00", "label": "false", "label_explanation": "The image is clear with no visible signs of corruption or data loss.", "snapshot": {"id": "6a96c1ae-bb07-45c1-ae45-d7142bf88320", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/6a96c1ae-bb07-45c1-ae45-d7142bf88320.png", "timestamp": "2024-02-15T20:52:16.426008+00:00"}}, {"id": "41f03505-9b69-43e5-a579-f79a11287f50", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.904165+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "6a96c1ae-bb07-45c1-ae45-d7142bf88320", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/6a96c1ae-bb07-45c1-ae45-d7142bf88320.png", "timestamp": "2024-02-15T20:52:16.426008+00:00"}}, {"id": "0c01f9e0-ff02-44d8-983a-b7f30e3b3230", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.162233+00:00", "label": "low", "label_explanation": "The road surface is dry with no visible water.", "snapshot": {"id": "6a96c1ae-bb07-45c1-ae45-d7142bf88320", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/6a96c1ae-bb07-45c1-ae45-d7142bf88320.png", "timestamp": "2024-02-15T20:52:16.426008+00:00"}}, {"id": "549b7fb1-d8d6-41b8-90b8-11bc8adad475", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.602598+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also small puddles of water on the road.", "snapshot": {"id": "a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7.png", "timestamp": "2024-02-15T20:54:44.627520+00:00"}}, {"id": "8cfe7cb0-692f-4b58-944e-52956ee9de6e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.309857+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street and surrounding buildings. It is daytime and the weather appears to be cloudy or overcast.", "snapshot": {"id": "a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7.png", "timestamp": "2024-02-15T20:54:44.627520+00:00"}}, {"id": "080ba673-9f64-4cbe-bb6f-70c09cf06b7e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.033210+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7.png", "timestamp": "2024-02-15T20:54:44.627520+00:00"}}, {"id": "c94ee230-86a2-487c-b551-1ea1599068e9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.099386+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry.", "snapshot": {"id": "a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7.png", "timestamp": "2024-02-15T20:54:44.627520+00:00"}}, {"id": "fae3a767-58ec-4aac-a96b-d964a7807a67", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.699419+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. The entire road surface is visible and accessible to traffic.", "snapshot": {"id": "a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7.png", "timestamp": "2024-02-15T20:54:44.627520+00:00"}}, {"id": "28b0d0bc-9659-40a5-994f-9f3f89c6c8bc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.366325+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars visible on the road. The cars are able to navigate the road without any difficulty.", "snapshot": {"id": "a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7", "camera_id": "001383", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001383/a3be17cc-5f2e-4e2f-a0e2-7ca461a333e7.png", "timestamp": "2024-02-15T20:54:44.627520+00:00"}}]}, {"id": "001169", "name": "RUA DOS INV\u00c1LIDOS, 99 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9110065, "longitude": -43.1851347, "objects": ["rain", "water_level", "image_description", "image_corrupted", "road_blockade", "traffic"], "identifications": [{"id": "95b3c4e9-9e4a-47bb-9a34-f190f33390a2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:58.228809+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no visible congestion or obstructions. Vehicles are able to move freely on the road.", "snapshot": {"id": "34efd870-1111-497e-a1cb-4aacc5a238cd", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/34efd870-1111-497e-a1cb-4aacc5a238cd.png", "timestamp": "2024-02-15T20:32:40.660490+00:00"}}, {"id": "a46b277e-34e3-4ed3-bd9c-9e357e40a99b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:57.697144+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "34efd870-1111-497e-a1cb-4aacc5a238cd", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/34efd870-1111-497e-a1cb-4aacc5a238cd.png", "timestamp": "2024-02-15T20:32:40.660490+00:00"}}, {"id": "e28df208-b647-449a-affc-7919e4653e5f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:58.963232+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and free of any impediments.", "snapshot": {"id": "34efd870-1111-497e-a1cb-4aacc5a238cd", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/34efd870-1111-497e-a1cb-4aacc5a238cd.png", "timestamp": "2024-02-15T20:32:40.660490+00:00"}}, {"id": "1f07243e-0c99-4692-ae2b-b96cb0104f56", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.904737+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water or flooding.", "snapshot": {"id": "34efd870-1111-497e-a1cb-4aacc5a238cd", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/34efd870-1111-497e-a1cb-4aacc5a238cd.png", "timestamp": "2024-02-15T20:32:40.660490+00:00"}}, {"id": "98f526e6-3cf5-48f2-9e0d-8987cb61bfb6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.264241+00:00", "label": "null", "label_explanation": "The image depicts an urban road with traffic lights, street signs, parked cars, and a few trees. The road surface is dry, and there are no visible signs of water or flooding.", "snapshot": {"id": "34efd870-1111-497e-a1cb-4aacc5a238cd", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/34efd870-1111-497e-a1cb-4aacc5a238cd.png", "timestamp": "2024-02-15T20:32:40.660490+00:00"}}, {"id": "122240fd-0c2c-40ea-b565-2037363b5849", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:55.301875+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions, and the image appears intact.", "snapshot": {"id": "34efd870-1111-497e-a1cb-4aacc5a238cd", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/34efd870-1111-497e-a1cb-4aacc5a238cd.png", "timestamp": "2024-02-15T20:32:40.660490+00:00"}}, {"id": "c80d59f3-6564-493a-bfc9-1722aed14522", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.012352+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "9647df51-ef58-446f-83ab-dd0756e50da1", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/9647df51-ef58-446f-83ab-dd0756e50da1.png", "timestamp": "2024-02-15T20:30:10.729862+00:00"}}, {"id": "6acf6f39-4c39-43c6-9d83-64c274613806", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:24.520349+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no visible details.", "snapshot": {"id": "9647df51-ef58-446f-83ab-dd0756e50da1", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/9647df51-ef58-446f-83ab-dd0756e50da1.png", "timestamp": "2024-02-15T20:30:10.729862+00:00"}}, {"id": "b4302af5-318d-4954-a7e5-05fb6538539a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.109180+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "dc770854-9dc1-4080-8dda-ae0b17e31ae0", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/dc770854-9dc1-4080-8dda-ae0b17e31ae0.png", "timestamp": "2024-02-15T20:45:03.623001+00:00"}}, {"id": "329ae8e5-6293-480e-a7de-60e25ee115f8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:13.841584+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with uniform green color and distorted pixels, making it impossible to analyze.", "snapshot": {"id": "dc770854-9dc1-4080-8dda-ae0b17e31ae0", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/dc770854-9dc1-4080-8dda-ae0b17e31ae0.png", "timestamp": "2024-02-15T20:45:03.623001+00:00"}}, {"id": "1d5ef790-5d39-4ffc-a393-bcc355de39f5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.384816+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "2a21ee23-8f8f-436a-82a6-872ef2591761", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/2a21ee23-8f8f-436a-82a6-872ef2591761.png", "timestamp": "2024-02-15T20:35:12.207247+00:00"}}, {"id": "8666176e-9284-4e2f-9bdb-8d9f6f8ea3cd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.924827+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no congestion.", "snapshot": {"id": "2a21ee23-8f8f-436a-82a6-872ef2591761", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/2a21ee23-8f8f-436a-82a6-872ef2591761.png", "timestamp": "2024-02-15T20:35:12.207247+00:00"}}, {"id": "097bbdcb-7c42-452b-8129-4c52fe3aae73", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:26.316570+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a traffic light at the intersection. There are several cars on the road, and the weather appears to be clear.", "snapshot": {"id": "2a21ee23-8f8f-436a-82a6-872ef2591761", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/2a21ee23-8f8f-436a-82a6-872ef2591761.png", "timestamp": "2024-02-15T20:35:12.207247+00:00"}}, {"id": "1f999eda-92ef-448f-a59f-61d0b3f9ac5c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.426345+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "2a21ee23-8f8f-436a-82a6-872ef2591761", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/2a21ee23-8f8f-436a-82a6-872ef2591761.png", "timestamp": "2024-02-15T20:35:12.207247+00:00"}}, {"id": "7bad58e9-e942-49a5-a361-52559b6ac1bf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.795079+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "2a21ee23-8f8f-436a-82a6-872ef2591761", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/2a21ee23-8f8f-436a-82a6-872ef2591761.png", "timestamp": "2024-02-15T20:35:12.207247+00:00"}}, {"id": "566612bc-cbc8-4f37-8501-394062744ab0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:26.907638+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "2a21ee23-8f8f-436a-82a6-872ef2591761", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/2a21ee23-8f8f-436a-82a6-872ef2591761.png", "timestamp": "2024-02-15T20:35:12.207247+00:00"}}, {"id": "55965472-b125-4da8-9bb8-61a49feeb8e7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.426595+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no visible details.", "snapshot": {"id": "3f6fcd8a-a756-4021-a4da-0733ad01fc59", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/3f6fcd8a-a756-4021-a4da-0733ad01fc59.png", "timestamp": "2024-02-15T20:42:44.577639+00:00"}}, {"id": "04a1ef8d-81dd-4e14-b29f-7220b5eceedd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.909775+00:00", "label": "null", "label_explanation": "The image is corrupted and does not provide any useful information.", "snapshot": {"id": "3f6fcd8a-a756-4021-a4da-0733ad01fc59", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/3f6fcd8a-a756-4021-a4da-0733ad01fc59.png", "timestamp": "2024-02-15T20:42:44.577639+00:00"}}, {"id": "e4f9b91a-b850-4261-b151-53bac76aa112", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.585574+00:00", "label": "totally", "label_explanation": "N/A", "snapshot": {"id": "128534c5-c86c-4725-b2a0-4aeb964d0c1f", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/128534c5-c86c-4725-b2a0-4aeb964d0c1f.png", "timestamp": "2024-02-15T20:40:14.233410+00:00"}}, {"id": "38a81a08-43cc-4b9e-b314-44e210da81af", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:27.368171+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no visible details.", "snapshot": {"id": "128534c5-c86c-4725-b2a0-4aeb964d0c1f", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/128534c5-c86c-4725-b2a0-4aeb964d0c1f.png", "timestamp": "2024-02-15T20:40:14.233410+00:00"}}, {"id": "50c2e90e-a51c-4785-9b33-82a55b1e98ee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:28.248660+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "128534c5-c86c-4725-b2a0-4aeb964d0c1f", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/128534c5-c86c-4725-b2a0-4aeb964d0c1f.png", "timestamp": "2024-02-15T20:40:14.233410+00:00"}}, {"id": "2a56fd6b-6058-41e8-9284-0af398e916aa", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.859090+00:00", "label": "low", "label_explanation": "N/A", "snapshot": {"id": "128534c5-c86c-4725-b2a0-4aeb964d0c1f", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/128534c5-c86c-4725-b2a0-4aeb964d0c1f.png", "timestamp": "2024-02-15T20:40:14.233410+00:00"}}, {"id": "2d5ac9eb-9221-4afe-9c95-c8c53d4e2d41", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.291250+00:00", "label": "false", "label_explanation": "N/A", "snapshot": {"id": "128534c5-c86c-4725-b2a0-4aeb964d0c1f", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/128534c5-c86c-4725-b2a0-4aeb964d0c1f.png", "timestamp": "2024-02-15T20:40:14.233410+00:00"}}, {"id": "940a0a74-a7f6-40fd-9899-29749903c0ff", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.116212+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with large areas of uniform grey color and significant distortion. This makes it impossible to accurately assess the road conditions.", "snapshot": {"id": "81589ff9-42a3-43f2-8392-aafcd945b34e", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/81589ff9-42a3-43f2-8392-aafcd945b34e.png", "timestamp": "2024-02-15T20:47:28.131068+00:00"}}, {"id": "f40e862f-0965-4e1b-aad0-a7d193dff34c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:38.372720+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "81589ff9-42a3-43f2-8392-aafcd945b34e", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/81589ff9-42a3-43f2-8392-aafcd945b34e.png", "timestamp": "2024-02-15T20:47:28.131068+00:00"}}, {"id": "d4d264e2-b4a7-4ad3-b672-101f5d8d5042", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.690582+00:00", "label": "false", "label_explanation": "There is no rain in the image.", "snapshot": {"id": "d0db1f28-a31e-41d4-810f-db549610652c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/d0db1f28-a31e-41d4-810f-db549610652c.png", "timestamp": "2024-02-15T20:49:53.151322+00:00"}}, {"id": "248e97eb-91ab-4307-b270-1827aea58d82", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.245672+00:00", "label": "null", "label_explanation": "The image is a CCTV image of an urban road. The road is wide and straight, with two lanes of traffic in each direction. There are several cars parked on the side of the road. The road is in good condition, with no visible cracks or potholes. The weather is clear, and the sun is shining.", "snapshot": {"id": "d0db1f28-a31e-41d4-810f-db549610652c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/d0db1f28-a31e-41d4-810f-db549610652c.png", "timestamp": "2024-02-15T20:49:53.151322+00:00"}}, {"id": "7b61fda2-5d01-49ba-89eb-aacfbf8fc8a4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.966162+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "d0db1f28-a31e-41d4-810f-db549610652c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/d0db1f28-a31e-41d4-810f-db549610652c.png", "timestamp": "2024-02-15T20:49:53.151322+00:00"}}, {"id": "29f7f300-3f9d-4b46-b38c-2b2bbc7f355b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.511619+00:00", "label": "free", "label_explanation": "There are no road blockades in the image.", "snapshot": {"id": "d0db1f28-a31e-41d4-810f-db549610652c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/d0db1f28-a31e-41d4-810f-db549610652c.png", "timestamp": "2024-02-15T20:49:53.151322+00:00"}}, {"id": "629e8665-490e-428a-bd68-9f6c2a2a6ea6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.150938+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars on the road.", "snapshot": {"id": "d0db1f28-a31e-41d4-810f-db549610652c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/d0db1f28-a31e-41d4-810f-db549610652c.png", "timestamp": "2024-02-15T20:49:53.151322+00:00"}}, {"id": "858725c5-1fbb-4e10-909a-14c5b8353ae8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.940014+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "d0db1f28-a31e-41d4-810f-db549610652c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/d0db1f28-a31e-41d4-810f-db549610652c.png", "timestamp": "2024-02-15T20:49:53.151322+00:00"}}, {"id": "7fb6a9fc-4060-4d02-80ba-ca8b22724248", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.250364+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road.", "snapshot": {"id": "15dd5ce7-db40-489f-8924-fc346675bb8c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/15dd5ce7-db40-489f-8924-fc346675bb8c.png", "timestamp": "2024-02-15T20:52:32.581885+00:00"}}, {"id": "3ba47145-eef5-4c37-bf8f-65d09c6f3ad4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:44.034959+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles and pedestrians moving smoothly.", "snapshot": {"id": "15dd5ce7-db40-489f-8924-fc346675bb8c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/15dd5ce7-db40-489f-8924-fc346675bb8c.png", "timestamp": "2024-02-15T20:52:32.581885+00:00"}}, {"id": "69e4dee8-a1b6-4e4e-aa75-5c080e23966b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.145467+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "15dd5ce7-db40-489f-8924-fc346675bb8c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/15dd5ce7-db40-489f-8924-fc346675bb8c.png", "timestamp": "2024-02-15T20:52:32.581885+00:00"}}, {"id": "e3c202bb-1ef5-4fc6-b714-205334e53322", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.355085+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several people crossing the street, a motorcycle, and a few cars. There are buildings and trees in the background.", "snapshot": {"id": "15dd5ce7-db40-489f-8924-fc346675bb8c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/15dd5ce7-db40-489f-8924-fc346675bb8c.png", "timestamp": "2024-02-15T20:52:32.581885+00:00"}}, {"id": "04f50d5b-8d43-454b-a2a1-9831aa0fca52", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.846927+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "15dd5ce7-db40-489f-8924-fc346675bb8c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/15dd5ce7-db40-489f-8924-fc346675bb8c.png", "timestamp": "2024-02-15T20:52:32.581885+00:00"}}, {"id": "96483c9e-ec43-49f0-bc32-6023d7477fed", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.580332+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "15dd5ce7-db40-489f-8924-fc346675bb8c", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/15dd5ce7-db40-489f-8924-fc346675bb8c.png", "timestamp": "2024-02-15T20:52:32.581885+00:00"}}, {"id": "0b9aeec2-e32f-49f0-a99f-2a5b9732c31e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:55.298038+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "dddada4e-9f26-4bbd-99e5-305c18a7e61d", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/dddada4e-9f26-4bbd-99e5-305c18a7e61d.png", "timestamp": "2024-02-15T20:54:45.952150+00:00"}}, {"id": "72ce44bd-a023-49ce-8533-f57ddf4168b7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.559936+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "dddada4e-9f26-4bbd-99e5-305c18a7e61d", "camera_id": "001169", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001169/dddada4e-9f26-4bbd-99e5-305c18a7e61d.png", "timestamp": "2024-02-15T20:54:45.952150+00:00"}}]}, {"id": "001525", "name": "R. BELA, 1281 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885242, "longitude": -43.227827, "objects": ["rain", "traffic", "water_level", "road_blockade", "image_corrupted", "image_description"], "identifications": []}, {"id": "001393", "name": "R. JARDIM BOTANICO X R. PROF. SALDANHA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96050733, "longitude": -43.20505749, "objects": ["water_level", "image_corrupted", "rain", "traffic", "road_blockade", "image_description"], "identifications": [{"id": "abc4b9fe-e884-4e41-a0aa-17a24ad0b810", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.571043+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime and the weather appears to be rainy. There are several cars parked on the side of the road and a few trees.", "snapshot": {"id": "43aabd0e-6306-43c9-b3b2-bbaf08a6654d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/43aabd0e-6306-43c9-b3b2-bbaf08a6654d.png", "timestamp": "2024-02-15T20:30:14.922881+00:00"}}, {"id": "b114ff20-6f6e-484a-ac0c-f21fb8c79fd5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.940681+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "43aabd0e-6306-43c9-b3b2-bbaf08a6654d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/43aabd0e-6306-43c9-b3b2-bbaf08a6654d.png", "timestamp": "2024-02-15T20:30:14.922881+00:00"}}, {"id": "92e0017a-9298-4a36-8648-85bd143451dc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.704928+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars visible in the image.", "snapshot": {"id": "43aabd0e-6306-43c9-b3b2-bbaf08a6654d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/43aabd0e-6306-43c9-b3b2-bbaf08a6654d.png", "timestamp": "2024-02-15T20:30:14.922881+00:00"}}, {"id": "6e786f22-9971-4201-83b4-bd5b7b16163a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.435729+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles on the road surface.", "snapshot": {"id": "43aabd0e-6306-43c9-b3b2-bbaf08a6654d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/43aabd0e-6306-43c9-b3b2-bbaf08a6654d.png", "timestamp": "2024-02-15T20:30:14.922881+00:00"}}, {"id": "c50a5b0f-07b8-4372-9eab-07e6b2f27cdc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.048506+00:00", "label": "true", "label_explanation": "The road surface is wet and there are small puddles of water.", "snapshot": {"id": "43aabd0e-6306-43c9-b3b2-bbaf08a6654d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/43aabd0e-6306-43c9-b3b2-bbaf08a6654d.png", "timestamp": "2024-02-15T20:30:14.922881+00:00"}}, {"id": "da0e6a60-93b9-4f85-8b16-070256be4034", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.126718+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "43aabd0e-6306-43c9-b3b2-bbaf08a6654d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/43aabd0e-6306-43c9-b3b2-bbaf08a6654d.png", "timestamp": "2024-02-15T20:30:14.922881+00:00"}}, {"id": "0d227595-0829-4437-8eef-507c06deb248", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.138695+00:00", "label": "moderate", "label_explanation": "There is moderate traffic on the road, with several cars visible.", "snapshot": {"id": "bcfb027b-b7ba-48c5-b0e5-dd46826179ba", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bcfb027b-b7ba-48c5-b0e5-dd46826179ba.png", "timestamp": "2024-02-15T20:45:10.526519+00:00"}}, {"id": "91ea8850-86e7-4c38-a0e0-f81b6afa6329", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:21.640523+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "bcfb027b-b7ba-48c5-b0e5-dd46826179ba", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bcfb027b-b7ba-48c5-b0e5-dd46826179ba.png", "timestamp": "2024-02-15T20:45:10.526519+00:00"}}, {"id": "61df1b02-02ce-460b-86a5-86725f0828e1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:21.379885+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with residential buildings on the left and a tree-lined sidewalk on the right. It is daytime and the weather appears to be cloudy or overcast.", "snapshot": {"id": "bcfb027b-b7ba-48c5-b0e5-dd46826179ba", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bcfb027b-b7ba-48c5-b0e5-dd46826179ba.png", "timestamp": "2024-02-15T20:45:10.526519+00:00"}}, {"id": "58d02751-37e6-49b9-8ed8-b110c6a5bd87", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:21.100678+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bcfb027b-b7ba-48c5-b0e5-dd46826179ba", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bcfb027b-b7ba-48c5-b0e5-dd46826179ba.png", "timestamp": "2024-02-15T20:45:10.526519+00:00"}}, {"id": "845b9cd8-77eb-4d06-bee6-f963d4d143fd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.324385+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free traffic flow.", "snapshot": {"id": "bcfb027b-b7ba-48c5-b0e5-dd46826179ba", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bcfb027b-b7ba-48c5-b0e5-dd46826179ba.png", "timestamp": "2024-02-15T20:45:10.526519+00:00"}}, {"id": "d86302db-4bf7-4d5d-af6c-e61b3689e031", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:21.850513+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, only wetness from recent rain.", "snapshot": {"id": "bcfb027b-b7ba-48c5-b0e5-dd46826179ba", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bcfb027b-b7ba-48c5-b0e5-dd46826179ba.png", "timestamp": "2024-02-15T20:45:10.526519+00:00"}}, {"id": "6ca79405-fca4-4e97-8f24-188324924efb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:31.960331+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime and the weather appears to be cloudy. There are several cars parked on the side of the road and a few trees.", "snapshot": {"id": "f5838f3c-3087-4bdb-82b1-011e5dbe91fd", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/f5838f3c-3087-4bdb-82b1-011e5dbe91fd.png", "timestamp": "2024-02-15T20:35:16.193583+00:00"}}, {"id": "2f9c4956-b8c5-4927-b6fb-393f7f932443", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:32.229291+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "f5838f3c-3087-4bdb-82b1-011e5dbe91fd", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/f5838f3c-3087-4bdb-82b1-011e5dbe91fd.png", "timestamp": "2024-02-15T20:35:16.193583+00:00"}}, {"id": "a68e32a4-f709-41b1-9240-5a91b355ada7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:31.565528+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f5838f3c-3087-4bdb-82b1-011e5dbe91fd", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/f5838f3c-3087-4bdb-82b1-011e5dbe91fd.png", "timestamp": "2024-02-15T20:35:16.193583+00:00"}}, {"id": "1c78ff0a-f8b9-43a7-973e-25ef89c3b7d6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.852201+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road, allowing for free passage of vehicles.", "snapshot": {"id": "f5838f3c-3087-4bdb-82b1-011e5dbe91fd", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/f5838f3c-3087-4bdb-82b1-011e5dbe91fd.png", "timestamp": "2024-02-15T20:35:16.193583+00:00"}}, {"id": "8a12b115-edfb-416f-be0c-1a0c65a24524", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.220131+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "f5838f3c-3087-4bdb-82b1-011e5dbe91fd", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/f5838f3c-3087-4bdb-82b1-011e5dbe91fd.png", "timestamp": "2024-02-15T20:35:16.193583+00:00"}}, {"id": "6ad6d3fe-3045-419e-9650-2ceadc43e47a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:32.706297+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are not deep enough to impede traffic.", "snapshot": {"id": "f5838f3c-3087-4bdb-82b1-011e5dbe91fd", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/f5838f3c-3087-4bdb-82b1-011e5dbe91fd.png", "timestamp": "2024-02-15T20:35:16.193583+00:00"}}, {"id": "36abd87c-9557-4af7-b40d-c45de3c5ee6b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.551798+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "bf2afa72-a013-403a-8419-3f14a2e7e98f", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bf2afa72-a013-403a-8419-3f14a2e7e98f.png", "timestamp": "2024-02-15T20:37:51.898476+00:00"}}, {"id": "c9d72160-c84a-4e19-8a43-25d5713f06f4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.097051+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime and the weather appears to be cloudy. There are several cars parked on the side of the road and a few trees.", "snapshot": {"id": "bf2afa72-a013-403a-8419-3f14a2e7e98f", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bf2afa72-a013-403a-8419-3f14a2e7e98f.png", "timestamp": "2024-02-15T20:37:51.898476+00:00"}}, {"id": "4a3adeff-78d5-4e28-8dfd-9e7c9ac4534b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.038804+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "bf2afa72-a013-403a-8419-3f14a2e7e98f", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bf2afa72-a013-403a-8419-3f14a2e7e98f.png", "timestamp": "2024-02-15T20:37:51.898476+00:00"}}, {"id": "b30e9c38-3235-4808-ac22-92260a94ead6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.948640+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "bf2afa72-a013-403a-8419-3f14a2e7e98f", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bf2afa72-a013-403a-8419-3f14a2e7e98f.png", "timestamp": "2024-02-15T20:37:51.898476+00:00"}}, {"id": "7f45c8a7-8c19-4fba-8062-af87e79e86e1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.465344+00:00", "label": "easy", "label_explanation": "The road is clear and there are no obstructions to traffic.", "snapshot": {"id": "bf2afa72-a013-403a-8419-3f14a2e7e98f", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bf2afa72-a013-403a-8419-3f14a2e7e98f.png", "timestamp": "2024-02-15T20:37:51.898476+00:00"}}, {"id": "907ae9ff-3173-4739-879c-296c3ec5edb0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:08.363567+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bf2afa72-a013-403a-8419-3f14a2e7e98f", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/bf2afa72-a013-403a-8419-3f14a2e7e98f.png", "timestamp": "2024-02-15T20:37:51.898476+00:00"}}, {"id": "422f5d77-32d7-43db-b616-ebf899ecac60", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.993164+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime, and the weather appears to be cloudy. There are several cars on the road, and the road surface is wet from recent rain.", "snapshot": {"id": "0633d460-7acc-4497-92ce-df47ee4241cb", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/0633d460-7acc-4497-92ce-df47ee4241cb.png", "timestamp": "2024-02-15T20:40:20.171171+00:00"}}, {"id": "96348ae1-62f9-49dc-b4a0-af72bf3c48b7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.499151+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0633d460-7acc-4497-92ce-df47ee4241cb", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/0633d460-7acc-4497-92ce-df47ee4241cb.png", "timestamp": "2024-02-15T20:40:20.171171+00:00"}}, {"id": "01be232f-5a8a-4d3c-b932-fe6bb63a091a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.950836+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars moving slowly due to the wet road conditions.", "snapshot": {"id": "0633d460-7acc-4497-92ce-df47ee4241cb", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/0633d460-7acc-4497-92ce-df47ee4241cb.png", "timestamp": "2024-02-15T20:40:20.171171+00:00"}}, {"id": "df06eaa5-f20c-4c33-9aaa-b6ddddfcc429", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.325247+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road.", "snapshot": {"id": "0633d460-7acc-4497-92ce-df47ee4241cb", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/0633d460-7acc-4497-92ce-df47ee4241cb.png", "timestamp": "2024-02-15T20:40:20.171171+00:00"}}, {"id": "a97054c3-9b88-45e9-801f-d233839fa843", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.535214+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles of water present.", "snapshot": {"id": "0633d460-7acc-4497-92ce-df47ee4241cb", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/0633d460-7acc-4497-92ce-df47ee4241cb.png", "timestamp": "2024-02-15T20:40:20.171171+00:00"}}, {"id": "091f9a61-858e-4eb0-96f2-0f8121b33a13", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.165815+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "0633d460-7acc-4497-92ce-df47ee4241cb", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/0633d460-7acc-4497-92ce-df47ee4241cb.png", "timestamp": "2024-02-15T20:40:20.171171+00:00"}}, {"id": "18522a72-cc30-4af4-89cd-a80828e92b86", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.828130+00:00", "label": "easy", "label_explanation": "The road is clear and there is no traffic congestion.", "snapshot": {"id": "d335f34a-f02f-414d-b67b-2128bcb9d4ee", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/d335f34a-f02f-414d-b67b-2128bcb9d4ee.png", "timestamp": "2024-02-15T20:47:32.761615+00:00"}}, {"id": "32aa4465-61f2-4ede-aac1-192168d2a0f8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.310386+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "d335f34a-f02f-414d-b67b-2128bcb9d4ee", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/d335f34a-f02f-414d-b67b-2128bcb9d4ee.png", "timestamp": "2024-02-15T20:47:32.761615+00:00"}}, {"id": "5aa4fede-b683-4768-9a3f-e65bd359bd88", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.062859+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime and the weather appears to be cloudy. There are several cars parked on the side of the road and a few trees.", "snapshot": {"id": "d335f34a-f02f-414d-b67b-2128bcb9d4ee", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/d335f34a-f02f-414d-b67b-2128bcb9d4ee.png", "timestamp": "2024-02-15T20:47:32.761615+00:00"}}, {"id": "7c2c9458-1094-44ba-bfc1-8612d19db2d0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.541161+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "d335f34a-f02f-414d-b67b-2128bcb9d4ee", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/d335f34a-f02f-414d-b67b-2128bcb9d4ee.png", "timestamp": "2024-02-15T20:47:32.761615+00:00"}}, {"id": "262546c0-afc2-47a0-bd61-43af00cd2433", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:44.845893+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d335f34a-f02f-414d-b67b-2128bcb9d4ee", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/d335f34a-f02f-414d-b67b-2128bcb9d4ee.png", "timestamp": "2024-02-15T20:47:32.761615+00:00"}}, {"id": "5a829e71-de51-42b0-9176-cebb65b9c91e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:46.027680+00:00", "label": "free", "label_explanation": "There are no obstructions on the road and traffic is flowing smoothly.", "snapshot": {"id": "d335f34a-f02f-414d-b67b-2128bcb9d4ee", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/d335f34a-f02f-414d-b67b-2128bcb9d4ee.png", "timestamp": "2024-02-15T20:47:32.761615+00:00"}}, {"id": "db4a98b8-0505-4e18-be15-c308b6ceeed4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:59.239604+00:00", "label": "easy", "label_explanation": "The road is clear and there is no traffic congestion. The person walking is able to proceed without any difficulty.", "snapshot": {"id": "7d13958f-b737-4741-b0af-fbc5b3edb27d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/7d13958f-b737-4741-b0af-fbc5b3edb27d.png", "timestamp": "2024-02-15T20:42:46.295230+00:00"}}, {"id": "88119431-86b5-414c-af04-7a30b0bfdce3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:58.171686+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a person walking in the foreground. It appears to be daytime and the weather is rainy.", "snapshot": {"id": "7d13958f-b737-4741-b0af-fbc5b3edb27d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/7d13958f-b737-4741-b0af-fbc5b3edb27d.png", "timestamp": "2024-02-15T20:42:46.295230+00:00"}}, {"id": "d6baa062-7b63-4382-9e33-a6b18ec0056f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:59.494768+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic is able to flow freely.", "snapshot": {"id": "7d13958f-b737-4741-b0af-fbc5b3edb27d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/7d13958f-b737-4741-b0af-fbc5b3edb27d.png", "timestamp": "2024-02-15T20:42:46.295230+00:00"}}, {"id": "36a0f676-aa06-4ade-bb25-0ac7e9ea7e25", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:58.636251+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "7d13958f-b737-4741-b0af-fbc5b3edb27d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/7d13958f-b737-4741-b0af-fbc5b3edb27d.png", "timestamp": "2024-02-15T20:42:46.295230+00:00"}}, {"id": "c62762cf-55b2-4d91-94a5-5c71bfa53539", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.940856+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7d13958f-b737-4741-b0af-fbc5b3edb27d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/7d13958f-b737-4741-b0af-fbc5b3edb27d.png", "timestamp": "2024-02-15T20:42:46.295230+00:00"}}, {"id": "6f6363b1-bbf8-49fd-a391-37185fa2b196", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:58.896295+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "7d13958f-b737-4741-b0af-fbc5b3edb27d", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/7d13958f-b737-4741-b0af-fbc5b3edb27d.png", "timestamp": "2024-02-15T20:42:46.295230+00:00"}}, {"id": "5c68c338-3491-4b17-b9f7-a8e51db56d1d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:03.258982+00:00", "label": "easy", "label_explanation": "The traffic is light, and there are no major obstructions on the road. The police car is driving slowly, and the parked cars are not impeding traffic.", "snapshot": {"id": "5fdef0a0-7d1b-417f-bfac-e204cf0df5e2", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/5fdef0a0-7d1b-417f-bfac-e204cf0df5e2.png", "timestamp": "2024-02-15T20:32:42.133173+00:00"}}, {"id": "fc1474c5-c181-41b9-b0ed-7218d62f9efc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:01.669992+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime, and the weather appears to be rainy. There are several parked cars on the side of the road, and a police car is driving in the middle of the intersection.", "snapshot": {"id": "5fdef0a0-7d1b-417f-bfac-e204cf0df5e2", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/5fdef0a0-7d1b-417f-bfac-e204cf0df5e2.png", "timestamp": "2024-02-15T20:32:42.133173+00:00"}}, {"id": "be0f9eaa-b595-493b-bf38-dd3a8dc81a5e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:03.694469+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions on the road. The road is clear for traffic to pass through.", "snapshot": {"id": "5fdef0a0-7d1b-417f-bfac-e204cf0df5e2", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/5fdef0a0-7d1b-417f-bfac-e204cf0df5e2.png", "timestamp": "2024-02-15T20:32:42.133173+00:00"}}, {"id": "347a73fc-1224-4d73-8f7b-bc34acff122f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:02.713065+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain is flowing into the storm drains.", "snapshot": {"id": "5fdef0a0-7d1b-417f-bfac-e204cf0df5e2", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/5fdef0a0-7d1b-417f-bfac-e204cf0df5e2.png", "timestamp": "2024-02-15T20:32:42.133173+00:00"}}, {"id": "f9b34a88-8ee2-4a7d-90bd-6410c72311db", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:00.942715+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5fdef0a0-7d1b-417f-bfac-e204cf0df5e2", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/5fdef0a0-7d1b-417f-bfac-e204cf0df5e2.png", "timestamp": "2024-02-15T20:32:42.133173+00:00"}}, {"id": "57c8697d-d746-446f-b841-c563826beba9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:02.184694+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are water droplets on the parked cars. The rain appears to be light to moderate.", "snapshot": {"id": "5fdef0a0-7d1b-417f-bfac-e204cf0df5e2", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/5fdef0a0-7d1b-417f-bfac-e204cf0df5e2.png", "timestamp": "2024-02-15T20:32:42.133173+00:00"}}, {"id": "ae007eeb-ad8b-4bce-b246-e1fd942c20e6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.378567+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec.png", "timestamp": "2024-02-15T20:54:48.766617+00:00"}}, {"id": "1201bfb9-d9ec-49d7-96d3-5f7a83185ab2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.673929+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec.png", "timestamp": "2024-02-15T20:54:48.766617+00:00"}}, {"id": "939be1b6-87f7-4776-9bd8-5d7c8c4a0e93", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.703908+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions.", "snapshot": {"id": "ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec.png", "timestamp": "2024-02-15T20:54:48.766617+00:00"}}, {"id": "701cabc7-4595-421a-afef-69fd9e741451", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.871771+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime, and the weather appears to be cloudy. There are several cars parked on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec.png", "timestamp": "2024-02-15T20:54:48.766617+00:00"}}, {"id": "d54c9c29-e3a2-4c85-bac1-66c7387345d4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.938871+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec.png", "timestamp": "2024-02-15T20:54:48.766617+00:00"}}, {"id": "79407c5d-0050-447e-b618-761632ee3ebf", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.150548+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/ca8cbad8-0c2e-4ce2-9731-fdd1f3ed48ec.png", "timestamp": "2024-02-15T20:54:48.766617+00:00"}}, {"id": "f6f9c7db-2071-49ec-a7ca-870a1a0550a5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:32.235557+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is completely clear.", "snapshot": {"id": "e7bbd69e-d909-4edd-9157-3e9c597b4528", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/e7bbd69e-d909-4edd-9157-3e9c597b4528.png", "timestamp": "2024-02-15T20:52:19.829132+00:00"}}, {"id": "f03600de-3840-48c8-b250-5bb9a5d615d1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:31.418702+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "e7bbd69e-d909-4edd-9157-3e9c597b4528", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/e7bbd69e-d909-4edd-9157-3e9c597b4528.png", "timestamp": "2024-02-15T20:52:19.829132+00:00"}}, {"id": "07369c2d-d0af-4b71-8ea5-f77c8983274e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:31.900235+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving at a steady pace.", "snapshot": {"id": "e7bbd69e-d909-4edd-9157-3e9c597b4528", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/e7bbd69e-d909-4edd-9157-3e9c597b4528.png", "timestamp": "2024-02-15T20:52:19.829132+00:00"}}, {"id": "ddd02d34-7bce-44c2-968f-1375dea44a92", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:31.610781+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "e7bbd69e-d909-4edd-9157-3e9c597b4528", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/e7bbd69e-d909-4edd-9157-3e9c597b4528.png", "timestamp": "2024-02-15T20:52:19.829132+00:00"}}, {"id": "f52c6ad7-d3ce-4e99-9576-5b6e25841ef5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.951767+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e7bbd69e-d909-4edd-9157-3e9c597b4528", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/e7bbd69e-d909-4edd-9157-3e9c597b4528.png", "timestamp": "2024-02-15T20:52:19.829132+00:00"}}, {"id": "6ce0ead8-a1bb-40c2-9335-bff146e70b2d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:31.219103+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection. It is daytime, and the weather appears to be cloudy. There are several cars parked on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "e7bbd69e-d909-4edd-9157-3e9c597b4528", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/e7bbd69e-d909-4edd-9157-3e9c597b4528.png", "timestamp": "2024-02-15T20:52:19.829132+00:00"}}, {"id": "22a1f828-2c46-4d25-a975-45802457a47a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.633153+00:00", "label": "true", "label_explanation": "The road is wet from recent rain.", "snapshot": {"id": "b4b0f35b-fb54-4784-ae20-916f5cfc73ea", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/b4b0f35b-fb54-4784-ae20-916f5cfc73ea.png", "timestamp": "2024-02-15T20:50:00.163612+00:00"}}, {"id": "4fce9b16-74ad-409d-901e-32b9efa80055", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.324252+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, so traffic can flow freely.", "snapshot": {"id": "b4b0f35b-fb54-4784-ae20-916f5cfc73ea", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/b4b0f35b-fb54-4784-ae20-916f5cfc73ea.png", "timestamp": "2024-02-15T20:50:00.163612+00:00"}}, {"id": "f6d71c13-b205-4097-9508-5e2804511ff5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.881307+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road, but it is not enough to cause any problems for traffic.", "snapshot": {"id": "b4b0f35b-fb54-4784-ae20-916f5cfc73ea", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/b4b0f35b-fb54-4784-ae20-916f5cfc73ea.png", "timestamp": "2024-02-15T20:50:00.163612+00:00"}}, {"id": "8306f798-59b2-411e-990d-5fa48d428d6f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.168077+00:00", "label": "null", "label_explanation": "The image shows a three-way road intersection. There are a few trees on either side of the road, and buildings in the background. The road is wet from recent rain.", "snapshot": {"id": "b4b0f35b-fb54-4784-ae20-916f5cfc73ea", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/b4b0f35b-fb54-4784-ae20-916f5cfc73ea.png", "timestamp": "2024-02-15T20:50:00.163612+00:00"}}, {"id": "f4ccd7c5-a0bb-4708-8c0e-52cf91c64f6a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.092234+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no congestion.", "snapshot": {"id": "b4b0f35b-fb54-4784-ae20-916f5cfc73ea", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/b4b0f35b-fb54-4784-ae20-916f5cfc73ea.png", "timestamp": "2024-02-15T20:50:00.163612+00:00"}}, {"id": "c1860479-76b4-4fdd-aa34-5a9ee5b90646", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:11.882637+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "b4b0f35b-fb54-4784-ae20-916f5cfc73ea", "camera_id": "001393", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001393/b4b0f35b-fb54-4784-ae20-916f5cfc73ea.png", "timestamp": "2024-02-15T20:50:00.163612+00:00"}}]}, {"id": "001093", "name": "R. CANDIDO BENICIO X ESTRADA INTENDENTE MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88304032, "longitude": -43.34249566, "objects": ["image_description", "water_level", "road_blockade", "rain", "image_corrupted", "traffic"], "identifications": [{"id": "ddc06f42-4137-4dd7-b442-697acb60c99a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:26.366696+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "36e22f88-7466-4ef9-b8e3-f93df7803465", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/36e22f88-7466-4ef9-b8e3-f93df7803465.png", "timestamp": "2024-02-15T20:30:12.220224+00:00"}}, {"id": "4a6e2089-13dd-438a-98d6-767935fe8472", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.878673+00:00", "label": "true", "label_explanation": "The image is heavily distorted with a uniform grey color, making it impossible to discern any details or assess road conditions.", "snapshot": {"id": "36e22f88-7466-4ef9-b8e3-f93df7803465", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/36e22f88-7466-4ef9-b8e3-f93df7803465.png", "timestamp": "2024-02-15T20:30:12.220224+00:00"}}, {"id": "24c7e600-df33-4e32-972f-8344579e4ad6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.210365+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "01e84046-c92f-44de-a974-c97c29d2fbc1", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/01e84046-c92f-44de-a974-c97c29d2fbc1.png", "timestamp": "2024-02-15T20:45:05.273609+00:00"}}, {"id": "ae3d9646-f046-4133-9ec8-d51295b6b8e5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:17.580980+00:00", "label": "true", "label_explanation": "The image is heavily corrupted, with a uniform grey color obscuring all details. It is impossible to discern any information from this image.", "snapshot": {"id": "01e84046-c92f-44de-a974-c97c29d2fbc1", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/01e84046-c92f-44de-a974-c97c29d2fbc1.png", "timestamp": "2024-02-15T20:45:05.273609+00:00"}}, {"id": "83195500-7f3b-4e62-8b2f-ca104914b642", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.609815+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "a68b6364-a313-4e68-adcb-206850b5d091", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/a68b6364-a313-4e68-adcb-206850b5d091.png", "timestamp": "2024-02-15T20:37:44.515002+00:00"}}, {"id": "a828fab9-34b7-4ff4-ae8b-c789b3f18c1e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.130877+00:00", "label": "true", "label_explanation": "The image is heavily corrupted with uniform grey color, making it impossible to discern any details.", "snapshot": {"id": "a68b6364-a313-4e68-adcb-206850b5d091", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/a68b6364-a313-4e68-adcb-206850b5d091.png", "timestamp": "2024-02-15T20:37:44.515002+00:00"}}, {"id": "4781d05d-b7d6-467f-9d27-dc922ba0dfca", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.766567+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "e04c016d-1e51-41c8-92e5-88f0c83db828", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/e04c016d-1e51-41c8-92e5-88f0c83db828.png", "timestamp": "2024-02-15T20:35:13.558590+00:00"}}, {"id": "77957c28-9825-4a13-ad7a-ec815313ec5a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.279744+00:00", "label": "true", "label_explanation": "The image is heavily distorted with a uniform grey color, making it impossible to discern any details.", "snapshot": {"id": "e04c016d-1e51-41c8-92e5-88f0c83db828", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/e04c016d-1e51-41c8-92e5-88f0c83db828.png", "timestamp": "2024-02-15T20:35:13.558590+00:00"}}, {"id": "3fc4753c-19e4-4f67-b5e2-91763c21a998", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.206895+00:00", "label": "true", "label_explanation": "The image is heavily corrupted with uniform grey color and distorted shapes, making it impossible to analyze.", "snapshot": {"id": "0f1a8a88-4b03-4fd3-82d9-37fb0db13bce", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/0f1a8a88-4b03-4fd3-82d9-37fb0db13bce.png", "timestamp": "2024-02-15T20:42:42.121337+00:00"}}, {"id": "25c8d09c-2f33-4117-8286-ee5d9031f716", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.537947+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "0f1a8a88-4b03-4fd3-82d9-37fb0db13bce", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/0f1a8a88-4b03-4fd3-82d9-37fb0db13bce.png", "timestamp": "2024-02-15T20:42:42.121337+00:00"}}, {"id": "054b2e7a-3dff-4845-a34d-eb38c50a1fb6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.648677+00:00", "label": "true", "label_explanation": "The image is heavily distorted with a uniform grey color, making it impossible to discern any details or assess road conditions.", "snapshot": {"id": "2285df57-638f-40d7-ad58-ea0ecda9cecc", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/2285df57-638f-40d7-ad58-ea0ecda9cecc.png", "timestamp": "2024-02-15T20:40:14.964796+00:00"}}, {"id": "1967aae6-06f1-4f12-8eb5-9d052a1434b4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.132043+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "2285df57-638f-40d7-ad58-ea0ecda9cecc", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/2285df57-638f-40d7-ad58-ea0ecda9cecc.png", "timestamp": "2024-02-15T20:40:14.964796+00:00"}}, {"id": "bcbe6114-a78c-448f-bb0b-a5c92d8d95c4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.702865+00:00", "label": "true", "label_explanation": "The image is heavily corrupted with uniform grey color, making it impossible to discern any details.", "snapshot": {"id": "2672b9f8-5097-496c-a6aa-19f972dd53a9", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/2672b9f8-5097-496c-a6aa-19f972dd53a9.png", "timestamp": "2024-02-15T20:47:28.730211+00:00"}}, {"id": "c7810859-95b2-48d2-a852-d11855be3516", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.972462+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "2672b9f8-5097-496c-a6aa-19f972dd53a9", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/2672b9f8-5097-496c-a6aa-19f972dd53a9.png", "timestamp": "2024-02-15T20:47:28.730211+00:00"}}, {"id": "5d48ab4c-08cf-4d01-b1a6-3e47078acdc9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.314803+00:00", "label": "true", "label_explanation": "The image is severely corrupted with uniform grey color, making it impossible to discern any details.", "snapshot": {"id": "2bc78d41-5e17-4ee2-aba2-3436a1ff3f40", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/2bc78d41-5e17-4ee2-aba2-3436a1ff3f40.png", "timestamp": "2024-02-15T20:52:17.137713+00:00"}}, {"id": "5e31fa04-c1b4-4a1b-8273-2893a52ed213", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.540697+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "2bc78d41-5e17-4ee2-aba2-3436a1ff3f40", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/2bc78d41-5e17-4ee2-aba2-3436a1ff3f40.png", "timestamp": "2024-02-15T20:52:17.137713+00:00"}}, {"id": "c42616cf-bcb1-4052-aaa7-983e57369e78", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.597054+00:00", "label": "true", "label_explanation": "The image is heavily corrupted with a uniform grey color, making it impossible to discern any details or conduct further analysis.", "snapshot": {"id": "fcf05042-298c-4ee0-9b4c-6bf153c21ab8", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/fcf05042-298c-4ee0-9b4c-6bf153c21ab8.png", "timestamp": "2024-02-15T20:49:53.701216+00:00"}}, {"id": "ed89e4f5-7bf8-48b3-b14e-e75545b74dd6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:03.946096+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "fcf05042-298c-4ee0-9b4c-6bf153c21ab8", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/fcf05042-298c-4ee0-9b4c-6bf153c21ab8.png", "timestamp": "2024-02-15T20:49:53.701216+00:00"}}, {"id": "b23ad68f-90cc-4420-95f7-b20125e72825", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.101167+00:00", "label": "null", "label_explanation": "No meaningful visual elements can be described due to the extensive image corruption.", "snapshot": {"id": "bcfbceaf-5bda-4f14-acd9-32586a62bb64", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/bcfbceaf-5bda-4f14-acd9-32586a62bb64.png", "timestamp": "2024-02-15T20:54:45.555858+00:00"}}, {"id": "9930f7f3-d98e-46d3-b8f1-b0c35839b08a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:56.860427+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with uniform grey color dominating the entire frame. This indicates significant data loss or corruption, making it impossible to discern any meaningful information.", "snapshot": {"id": "bcfbceaf-5bda-4f14-acd9-32586a62bb64", "camera_id": "001093", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001093/bcfbceaf-5bda-4f14-acd9-32586a62bb64.png", "timestamp": "2024-02-15T20:54:45.555858+00:00"}}]}, {"id": "001382", "name": "R. DEODATO DE MORAES X AV. MIN. IVAN LINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01104131, "longitude": -43.3014368, "objects": ["image_corrupted", "image_description", "traffic", "road_blockade", "water_level", "rain"], "identifications": [{"id": "599ef295-b414-43cf-8fd9-76f48711bfe6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:26.814778+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "184e5074-006c-4880-9807-7660e61a0053", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/184e5074-006c-4880-9807-7660e61a0053.png", "timestamp": "2024-02-15T20:30:10.755439+00:00"}}, {"id": "046769a4-5a6c-4881-b5ab-0ea0bcdf3e58", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:27.114979+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "184e5074-006c-4880-9807-7660e61a0053", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/184e5074-006c-4880-9807-7660e61a0053.png", "timestamp": "2024-02-15T20:30:10.755439+00:00"}}, {"id": "34e92754-640b-4844-bb5c-dcd7331f48a3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:26.411367+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "184e5074-006c-4880-9807-7660e61a0053", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/184e5074-006c-4880-9807-7660e61a0053.png", "timestamp": "2024-02-15T20:30:10.755439+00:00"}}, {"id": "3ebb67a7-621f-4fbc-9d8c-a92ca8d2ef4e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.985850+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "184e5074-006c-4880-9807-7660e61a0053", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/184e5074-006c-4880-9807-7660e61a0053.png", "timestamp": "2024-02-15T20:30:10.755439+00:00"}}, {"id": "fffdde8a-9cfd-4752-b241-2ddd0802276e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.811080+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a gas station, several shops, and residential buildings in the background. It is daytime and the weather appears cloudy.", "snapshot": {"id": "184e5074-006c-4880-9807-7660e61a0053", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/184e5074-006c-4880-9807-7660e61a0053.png", "timestamp": "2024-02-15T20:30:10.755439+00:00"}}, {"id": "a06ab204-5fba-429f-baf7-db897ea4ded9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:25.279755+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "184e5074-006c-4880-9807-7660e61a0053", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/184e5074-006c-4880-9807-7660e61a0053.png", "timestamp": "2024-02-15T20:30:10.755439+00:00"}}, {"id": "5828585f-c46f-4ee3-b182-68962bf0638c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:55.602216+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "ea0e543a-f252-4015-be5b-ac10fbf73323", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/ea0e543a-f252-4015-be5b-ac10fbf73323.png", "timestamp": "2024-02-15T20:32:37.436634+00:00"}}, {"id": "a58ae1fd-34c1-4f10-909f-7f7540e50a41", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.664910+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ea0e543a-f252-4015-be5b-ac10fbf73323", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/ea0e543a-f252-4015-be5b-ac10fbf73323.png", "timestamp": "2024-02-15T20:32:37.436634+00:00"}}, {"id": "a1ccd30b-892b-49e6-9380-f2a142b59518", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:57.215891+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "ea0e543a-f252-4015-be5b-ac10fbf73323", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/ea0e543a-f252-4015-be5b-ac10fbf73323.png", "timestamp": "2024-02-15T20:32:37.436634+00:00"}}, {"id": "706bbe0a-cc44-498c-a42b-5ddeef511465", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:57.879877+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades visible on the road. Traffic is flowing freely in both directions.", "snapshot": {"id": "ea0e543a-f252-4015-be5b-ac10fbf73323", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/ea0e543a-f252-4015-be5b-ac10fbf73323.png", "timestamp": "2024-02-15T20:32:37.436634+00:00"}}, {"id": "12b37978-a50d-41fb-924d-bd38477ad88f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.379336+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "ea0e543a-f252-4015-be5b-ac10fbf73323", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/ea0e543a-f252-4015-be5b-ac10fbf73323.png", "timestamp": "2024-02-15T20:32:37.436634+00:00"}}, {"id": "b34124c2-0f7b-4c12-82a3-882983b7c906", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:54.805440+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with moderate traffic during the day. It is a high-angle shot, showing a portion of the road with a gas station, several cars, a truck, and trees on the left side. The weather appears cloudy, and the road surface is wet from recent rain.", "snapshot": {"id": "ea0e543a-f252-4015-be5b-ac10fbf73323", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/ea0e543a-f252-4015-be5b-ac10fbf73323.png", "timestamp": "2024-02-15T20:32:37.436634+00:00"}}, {"id": "877465ee-4c31-4a7d-997c-770ed0cb6b59", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.281219+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a detailed description. However, it appears to be a daytime scene of an urban road with a building in the background.", "snapshot": {"id": "bf50d509-f396-476a-80c6-52ac1cddc75d", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/bf50d509-f396-476a-80c6-52ac1cddc75d.png", "timestamp": "2024-02-15T20:37:43.427392+00:00"}}, {"id": "9419cf66-ad9a-4841-abb8-8ccd37f8c580", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:55.506180+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with large sections of the road surface obscured by green and yellow pixelation. This makes it impossible to accurately assess the road conditions or traffic flow.", "snapshot": {"id": "bf50d509-f396-476a-80c6-52ac1cddc75d", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/bf50d509-f396-476a-80c6-52ac1cddc75d.png", "timestamp": "2024-02-15T20:37:43.427392+00:00"}}, {"id": "d1d60eb3-e203-43a9-9222-67d2bf4bb84d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.355765+00:00", "label": "false", "label_explanation": "As the road surface is completely dry, there is no indication of rain.", "snapshot": {"id": "720589c5-4933-4cd5-861d-144e82cf2e14", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/720589c5-4933-4cd5-861d-144e82cf2e14.png", "timestamp": "2024-02-15T20:35:11.464697+00:00"}}, {"id": "7820586d-714b-45ac-91b3-c7c88493f78e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.833097+00:00", "label": "null", "label_explanation": "The image captures a wide, urban road with a clear, blue sky and sparse traffic. There are several tall buildings in the background and a few trees on either side of the road. The road surface appears dry, with no visible signs of water or debris.", "snapshot": {"id": "720589c5-4933-4cd5-861d-144e82cf2e14", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/720589c5-4933-4cd5-861d-144e82cf2e14.png", "timestamp": "2024-02-15T20:35:11.464697+00:00"}}, {"id": "c76b0125-be9f-487e-875b-2ee5f284e326", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:23.462606+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "720589c5-4933-4cd5-861d-144e82cf2e14", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/720589c5-4933-4cd5-861d-144e82cf2e14.png", "timestamp": "2024-02-15T20:35:11.464697+00:00"}}, {"id": "d5642029-bb9b-4215-83a9-c839f297ad08", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.802251+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for free traffic flow.", "snapshot": {"id": "720589c5-4933-4cd5-861d-144e82cf2e14", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/720589c5-4933-4cd5-861d-144e82cf2e14.png", "timestamp": "2024-02-15T20:35:11.464697+00:00"}}, {"id": "429e8138-f926-4733-953f-fe257aa3b74d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:24.841701+00:00", "label": "low", "label_explanation": "Since the road surface is dry, the water level is low.", "snapshot": {"id": "720589c5-4933-4cd5-861d-144e82cf2e14", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/720589c5-4933-4cd5-861d-144e82cf2e14.png", "timestamp": "2024-02-15T20:35:11.464697+00:00"}}, {"id": "0230680a-2d5b-43a4-ab30-529566965335", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:25.398829+00:00", "label": "easy", "label_explanation": "The traffic appears to be flowing smoothly, with no major congestion or disruptions.", "snapshot": {"id": "720589c5-4933-4cd5-861d-144e82cf2e14", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/720589c5-4933-4cd5-861d-144e82cf2e14.png", "timestamp": "2024-02-15T20:35:11.464697+00:00"}}, {"id": "c2d21859-8fe6-4888-b0d5-ea09dd0728d6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.944959+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "3a309b0d-42df-4e5e-89f7-dc77a60f0bcd", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/3a309b0d-42df-4e5e-89f7-dc77a60f0bcd.png", "timestamp": "2024-02-15T20:42:42.208482+00:00"}}, {"id": "11c2eb4c-172f-4767-8549-903c1f7c3d0b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.154158+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "3a309b0d-42df-4e5e-89f7-dc77a60f0bcd", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/3a309b0d-42df-4e5e-89f7-dc77a60f0bcd.png", "timestamp": "2024-02-15T20:42:42.208482+00:00"}}, {"id": "f6dad405-8c3c-4f7f-a9b6-43e069f23d12", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.606388+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "3a309b0d-42df-4e5e-89f7-dc77a60f0bcd", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/3a309b0d-42df-4e5e-89f7-dc77a60f0bcd.png", "timestamp": "2024-02-15T20:42:42.208482+00:00"}}, {"id": "75019cea-67a7-4c0a-b36d-768a8c5f9605", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.468936+00:00", "label": "false", "label_explanation": "There are no visible signs of rain in the image. The road surface is dry, and there are no reflections on the road that would indicate the presence of water.", "snapshot": {"id": "3a309b0d-42df-4e5e-89f7-dc77a60f0bcd", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/3a309b0d-42df-4e5e-89f7-dc77a60f0bcd.png", "timestamp": "2024-02-15T20:42:42.208482+00:00"}}, {"id": "e224ae9d-d4bf-417b-ab90-fc6e7ac01caf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.163924+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with moderate traffic. It is daytime and the weather appears cloudy. There are a few trees on either side of the road, and buildings and structures can be seen in the background.", "snapshot": {"id": "3a309b0d-42df-4e5e-89f7-dc77a60f0bcd", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/3a309b0d-42df-4e5e-89f7-dc77a60f0bcd.png", "timestamp": "2024-02-15T20:42:42.208482+00:00"}}, {"id": "eafd5e3c-7665-4cb7-ba37-844166a34b00", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:53.910227+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3a309b0d-42df-4e5e-89f7-dc77a60f0bcd", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/3a309b0d-42df-4e5e-89f7-dc77a60f0bcd.png", "timestamp": "2024-02-15T20:42:42.208482+00:00"}}, {"id": "8c2248da-d4ec-4897-8273-c000fb8bc423", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.044948+00:00", "label": "free", "label_explanation": "There are no obstructions on the road and traffic is able to flow freely.", "snapshot": {"id": "9babe952-35f3-4802-853c-9ed5c05ba373", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/9babe952-35f3-4802-853c-9ed5c05ba373.png", "timestamp": "2024-02-15T20:40:13.520251+00:00"}}, {"id": "7f60f5f5-c25b-49ce-8f2c-37087a57ac94", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.148901+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away.", "snapshot": {"id": "9babe952-35f3-4802-853c-9ed5c05ba373", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/9babe952-35f3-4802-853c-9ed5c05ba373.png", "timestamp": "2024-02-15T20:40:13.520251+00:00"}}, {"id": "c55debec-ac8c-462a-971d-32ffafb892a8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.863265+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars driving on the road. The cars are able to move freely and there are no major delays.", "snapshot": {"id": "9babe952-35f3-4802-853c-9ed5c05ba373", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/9babe952-35f3-4802-853c-9ed5c05ba373.png", "timestamp": "2024-02-15T20:40:13.520251+00:00"}}, {"id": "d32e006f-599e-470f-b868-f311493673b2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.581885+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are a few parked cars on the side of the road and some trees in the background.", "snapshot": {"id": "9babe952-35f3-4802-853c-9ed5c05ba373", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/9babe952-35f3-4802-853c-9ed5c05ba373.png", "timestamp": "2024-02-15T20:40:13.520251+00:00"}}, {"id": "8700ccaf-a8a3-48ba-88a8-967fccb07feb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.896418+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain has stopped and the road is no longer actively wet.", "snapshot": {"id": "9babe952-35f3-4802-853c-9ed5c05ba373", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/9babe952-35f3-4802-853c-9ed5c05ba373.png", "timestamp": "2024-02-15T20:40:13.520251+00:00"}}, {"id": "82622bee-252b-46b3-b303-0b39316d1abb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.289197+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9babe952-35f3-4802-853c-9ed5c05ba373", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/9babe952-35f3-4802-853c-9ed5c05ba373.png", "timestamp": "2024-02-15T20:40:13.520251+00:00"}}, {"id": "b2d6162d-beaa-4da2-8372-3bcb7ffb2aad", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.424913+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64.png", "timestamp": "2024-02-15T20:47:27.846706+00:00"}}, {"id": "acacf703-4f58-4bee-a2da-8f347441578e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.180163+00:00", "label": "low", "label_explanation": "There is no standing water on the road, indicating that the water level is low.", "snapshot": {"id": "a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64.png", "timestamp": "2024-02-15T20:47:27.846706+00:00"}}, {"id": "27b2a7a7-7671-424b-beb8-9aa820787f87", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.595823+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are a few trees on either side of the road, and buildings and other structures in the background.", "snapshot": {"id": "a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64.png", "timestamp": "2024-02-15T20:47:27.846706+00:00"}}, {"id": "191841b6-5984-4647-9bad-b5ca6760d816", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.331574+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64.png", "timestamp": "2024-02-15T20:47:27.846706+00:00"}}, {"id": "3793dce0-6ab4-46c0-9551-e686570ee06c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.617804+00:00", "label": "free", "label_explanation": "There are no obstructions visible in the image, indicating that the road is free and clear.", "snapshot": {"id": "a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64.png", "timestamp": "2024-02-15T20:47:27.846706+00:00"}}, {"id": "f947086b-94ce-4e77-8df2-456c6970e24b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.882882+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy, as there is no standing water on the road.", "snapshot": {"id": "a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/a7dec8ef-e8f3-4a7c-aca1-2045bc4afa64.png", "timestamp": "2024-02-15T20:47:27.846706+00:00"}}, {"id": "38f7b9c6-d4e5-41cf-95ef-8419acc21e2b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.235801+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with large areas of uniform grey color and significant distortion. The corruption makes it impossible to discern any meaningful information about the road conditions.", "snapshot": {"id": "896bad8a-c85e-46a5-982b-76866a40056a", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/896bad8a-c85e-46a5-982b-76866a40056a.png", "timestamp": "2024-02-15T20:45:04.413370+00:00"}}, {"id": "54d5550b-d6fd-4726-8f0f-e3847fccc695", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.497299+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "896bad8a-c85e-46a5-982b-76866a40056a", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/896bad8a-c85e-46a5-982b-76866a40056a.png", "timestamp": "2024-02-15T20:45:04.413370+00:00"}}, {"id": "c4a58f85-f68b-4f4a-b48f-8e5cf769088a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.998291+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "aeb5fef7-8310-41e2-907e-4f6aaf30b5da", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/aeb5fef7-8310-41e2-907e-4f6aaf30b5da.png", "timestamp": "2024-02-15T20:52:15.760370+00:00"}}, {"id": "987acda1-6816-448b-845e-7c80b0a9b36e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.709673+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "aeb5fef7-8310-41e2-907e-4f6aaf30b5da", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/aeb5fef7-8310-41e2-907e-4f6aaf30b5da.png", "timestamp": "2024-02-15T20:52:15.760370+00:00"}}, {"id": "b9b37dfa-5c8d-433d-939f-b1a918928996", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.652774+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "aeb5fef7-8310-41e2-907e-4f6aaf30b5da", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/aeb5fef7-8310-41e2-907e-4f6aaf30b5da.png", "timestamp": "2024-02-15T20:52:15.760370+00:00"}}, {"id": "47b5fffe-1c56-4008-aaea-d25460f07904", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.241622+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or hazards.", "snapshot": {"id": "aeb5fef7-8310-41e2-907e-4f6aaf30b5da", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/aeb5fef7-8310-41e2-907e-4f6aaf30b5da.png", "timestamp": "2024-02-15T20:52:15.760370+00:00"}}, {"id": "cdaf6976-a1fb-4bd4-94dc-6b6da72667fd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.249134+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a gas station on the right and buildings and trees in the background. The weather appears overcast, and the road surface is wet from recent rain.", "snapshot": {"id": "aeb5fef7-8310-41e2-907e-4f6aaf30b5da", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/aeb5fef7-8310-41e2-907e-4f6aaf30b5da.png", "timestamp": "2024-02-15T20:52:15.760370+00:00"}}, {"id": "618198d3-a4a8-4b2b-9baa-525aca18aa74", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.917168+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "aeb5fef7-8310-41e2-907e-4f6aaf30b5da", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/aeb5fef7-8310-41e2-907e-4f6aaf30b5da.png", "timestamp": "2024-02-15T20:52:15.760370+00:00"}}, {"id": "2b44755c-b057-44fc-add4-c0e78e43f14f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.518557+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "d026de0c-2f0c-4b6d-a098-482901179ed1", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/d026de0c-2f0c-4b6d-a098-482901179ed1.png", "timestamp": "2024-02-15T20:49:52.531029+00:00"}}, {"id": "42218519-f1f2-4f30-8066-4b7d7e47be6c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:04.921259+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d026de0c-2f0c-4b6d-a098-482901179ed1", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/d026de0c-2f0c-4b6d-a098-482901179ed1.png", "timestamp": "2024-02-15T20:49:52.531029+00:00"}}, {"id": "82363e97-7599-4882-9c9c-b4f0d2aad0b8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.444230+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "d026de0c-2f0c-4b6d-a098-482901179ed1", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/d026de0c-2f0c-4b6d-a098-482901179ed1.png", "timestamp": "2024-02-15T20:49:52.531029+00:00"}}, {"id": "2c92069c-494b-4b62-b29b-6fa11e4f40d1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.221838+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or congestion visible.", "snapshot": {"id": "d026de0c-2f0c-4b6d-a098-482901179ed1", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/d026de0c-2f0c-4b6d-a098-482901179ed1.png", "timestamp": "2024-02-15T20:49:52.531029+00:00"}}, {"id": "a63c8c13-336b-4bbe-862c-282c417bb9c4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.786685+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "d026de0c-2f0c-4b6d-a098-482901179ed1", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/d026de0c-2f0c-4b6d-a098-482901179ed1.png", "timestamp": "2024-02-15T20:49:52.531029+00:00"}}, {"id": "a5229050-f6c1-45dc-8f96-23d84eeb97c8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:05.205478+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "d026de0c-2f0c-4b6d-a098-482901179ed1", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/d026de0c-2f0c-4b6d-a098-482901179ed1.png", "timestamp": "2024-02-15T20:49:52.531029+00:00"}}, {"id": "e191f1e6-e33c-43ea-8a7a-063189e34e22", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.782799+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be accurately described.", "snapshot": {"id": "6c410823-f276-4abd-ac0b-dc18f0487550", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/6c410823-f276-4abd-ac0b-dc18f0487550.png", "timestamp": "2024-02-15T20:54:48.459311+00:00"}}, {"id": "2edf7ac8-b6c6-4db6-8edd-2651c29e7ab4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.320517+00:00", "label": "true", "label_explanation": "The image is corrupted, with significant visual interference affecting clarity. The corruption is evident in the form of uniform grey and green color distortions, indicating data loss.", "snapshot": {"id": "6c410823-f276-4abd-ac0b-dc18f0487550", "camera_id": "001382", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001382/6c410823-f276-4abd-ac0b-dc18f0487550.png", "timestamp": "2024-02-15T20:54:48.459311+00:00"}}]}, {"id": "000766", "name": "RUA BELA 909 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88797118, "longitude": -43.22537744, "objects": ["image_description", "road_blockade", "image_corrupted", "rain", "traffic", "water_level"], "identifications": [{"id": "381ce0b9-adf9-4e10-ace5-8d4e37db7d77", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.192388+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "9e225ac7-0e1c-4579-b984-82deac2528fc", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/9e225ac7-0e1c-4579-b984-82deac2528fc.png", "timestamp": "2024-02-15T20:30:18.635970+00:00"}}, {"id": "00e0e4c2-3946-408a-bb8a-bfb6dc954b04", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.358392+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "9e225ac7-0e1c-4579-b984-82deac2528fc", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/9e225ac7-0e1c-4579-b984-82deac2528fc.png", "timestamp": "2024-02-15T20:30:18.635970+00:00"}}, {"id": "91b55cc2-f042-41da-8b26-902ebdb6e5f6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.967202+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions.", "snapshot": {"id": "9e225ac7-0e1c-4579-b984-82deac2528fc", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/9e225ac7-0e1c-4579-b984-82deac2528fc.png", "timestamp": "2024-02-15T20:30:18.635970+00:00"}}, {"id": "727dc570-463a-4e7a-ba83-4830114f14ee", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.453287+00:00", "label": "low", "label_explanation": "There is no standing water observed on the road surface.", "snapshot": {"id": "9e225ac7-0e1c-4579-b984-82deac2528fc", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/9e225ac7-0e1c-4579-b984-82deac2528fc.png", "timestamp": "2024-02-15T20:30:18.635970+00:00"}}, {"id": "e9b48c7b-03cd-4311-baa2-d8fe3d99507b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:33.722153+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with parked cars on the left, buildings on the right, and a road in the center.", "snapshot": {"id": "9e225ac7-0e1c-4579-b984-82deac2528fc", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/9e225ac7-0e1c-4579-b984-82deac2528fc.png", "timestamp": "2024-02-15T20:30:18.635970+00:00"}}, {"id": "7118fe53-ce37-48b2-8591-8ec55e9a4744", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:33.384579+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9e225ac7-0e1c-4579-b984-82deac2528fc", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/9e225ac7-0e1c-4579-b984-82deac2528fc.png", "timestamp": "2024-02-15T20:30:18.635970+00:00"}}, {"id": "8ffc7a00-a2bc-4239-a5e4-6e0e7c3542ce", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:06.701659+00:00", "label": "easy", "label_explanation": "The parked vehicle and the absence of moving cars suggest that traffic is likely light or non-existent at the time the image was captured.", "snapshot": {"id": "d833e3ad-efb6-4bbf-8018-04e28d77f336", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d833e3ad-efb6-4bbf-8018-04e28d77f336.png", "timestamp": "2024-02-15T20:32:44.044259+00:00"}}, {"id": "140d1a6d-c49a-4aa0-9d62-b0033b5c3c38", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:04.463284+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d833e3ad-efb6-4bbf-8018-04e28d77f336", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d833e3ad-efb6-4bbf-8018-04e28d77f336.png", "timestamp": "2024-02-15T20:32:44.044259+00:00"}}, {"id": "7275d94a-8b0e-43cc-b8b1-a4744aca7d69", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:06.009602+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "d833e3ad-efb6-4bbf-8018-04e28d77f336", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d833e3ad-efb6-4bbf-8018-04e28d77f336.png", "timestamp": "2024-02-15T20:32:44.044259+00:00"}}, {"id": "3cdc0e2b-7b78-44fb-a917-ea4407ff0ef2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:07.083230+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for free passage of vehicles.", "snapshot": {"id": "d833e3ad-efb6-4bbf-8018-04e28d77f336", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d833e3ad-efb6-4bbf-8018-04e28d77f336.png", "timestamp": "2024-02-15T20:32:44.044259+00:00"}}, {"id": "779938d1-7032-4140-983c-f8309c34bd0a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:05.424901+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d833e3ad-efb6-4bbf-8018-04e28d77f336", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d833e3ad-efb6-4bbf-8018-04e28d77f336.png", "timestamp": "2024-02-15T20:32:44.044259+00:00"}}, {"id": "542e8ed2-a724-49f8-a00e-c956980a8cd6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:04.927942+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a white vehicle parked on the side. There is a building with blue and white walls in the background, and a yellow caution sign on the road.", "snapshot": {"id": "d833e3ad-efb6-4bbf-8018-04e28d77f336", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d833e3ad-efb6-4bbf-8018-04e28d77f336.png", "timestamp": "2024-02-15T20:32:44.044259+00:00"}}, {"id": "ef0cd5ff-11ba-441a-8459-8f60d8355131", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:20.166177+00:00", "label": "true", "label_explanation": "The image is corrupted, with significant green and grey color distortions, making it difficult to analyze.", "snapshot": {"id": "1c8e83f6-4685-476f-b524-54f6c2186f72", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1c8e83f6-4685-476f-b524-54f6c2186f72.png", "timestamp": "2024-02-15T20:45:09.388230+00:00"}}, {"id": "8f46171a-3d47-4bd4-aed5-b021ec236e3d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:20.419265+00:00", "label": "null", "label_explanation": "The image is of an urban road with a few cars parked on the side. There are buildings on either side of the road, and trees.", "snapshot": {"id": "1c8e83f6-4685-476f-b524-54f6c2186f72", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1c8e83f6-4685-476f-b524-54f6c2186f72.png", "timestamp": "2024-02-15T20:45:09.388230+00:00"}}, {"id": "64015105-f41f-47f7-947b-ffac5620ac8a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.781908+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "4e916f7a-c30f-47b8-b7cc-296ef0e63d17", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/4e916f7a-c30f-47b8-b7cc-296ef0e63d17.png", "timestamp": "2024-02-15T20:35:17.112949+00:00"}}, {"id": "3c78b658-4a50-41dd-80fb-b6062e81e5cc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:32.937586+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "4e916f7a-c30f-47b8-b7cc-296ef0e63d17", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/4e916f7a-c30f-47b8-b7cc-296ef0e63d17.png", "timestamp": "2024-02-15T20:35:17.112949+00:00"}}, {"id": "d521c7b9-5519-4b4b-ba8f-0c0e0af8aae8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:32.230274+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "4e916f7a-c30f-47b8-b7cc-296ef0e63d17", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/4e916f7a-c30f-47b8-b7cc-296ef0e63d17.png", "timestamp": "2024-02-15T20:35:17.112949+00:00"}}, {"id": "0427d9e5-70ce-48df-bcff-e90931257d73", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:31.930389+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "4e916f7a-c30f-47b8-b7cc-296ef0e63d17", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/4e916f7a-c30f-47b8-b7cc-296ef0e63d17.png", "timestamp": "2024-02-15T20:35:17.112949+00:00"}}, {"id": "5800aeb7-c4af-4cf1-be7b-2f684576accd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.258317+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "4e916f7a-c30f-47b8-b7cc-296ef0e63d17", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/4e916f7a-c30f-47b8-b7cc-296ef0e63d17.png", "timestamp": "2024-02-15T20:35:17.112949+00:00"}}, {"id": "edd7c46e-62b4-4c0a-8440-cbf7c39542bb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:31.322322+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4e916f7a-c30f-47b8-b7cc-296ef0e63d17", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/4e916f7a-c30f-47b8-b7cc-296ef0e63d17.png", "timestamp": "2024-02-15T20:35:17.112949+00:00"}}, {"id": "8b425833-a015-4061-a407-1cf62d61442f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:05.035033+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with cars moving at a slow to moderate speed. There are no major obstructions or hazards visible in the image.", "snapshot": {"id": "db06b4e0-63c6-4066-97ba-d324b490c23d", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/db06b4e0-63c6-4066-97ba-d324b490c23d.png", "timestamp": "2024-02-15T20:37:49.379812+00:00"}}, {"id": "47ed38dc-837b-4fef-9252-7a91c33c5fcd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:04.477377+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "db06b4e0-63c6-4066-97ba-d324b490c23d", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/db06b4e0-63c6-4066-97ba-d324b490c23d.png", "timestamp": "2024-02-15T20:37:49.379812+00:00"}}, {"id": "61d88988-d919-428d-9d82-f05360855549", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:04.008946+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road for other reasons.", "snapshot": {"id": "db06b4e0-63c6-4066-97ba-d324b490c23d", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/db06b4e0-63c6-4066-97ba-d324b490c23d.png", "timestamp": "2024-02-15T20:37:49.379812+00:00"}}, {"id": "d0d95058-33c7-4590-b0c8-dba797640699", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:03.226247+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several parked cars on the side of the road and a few people walking.", "snapshot": {"id": "db06b4e0-63c6-4066-97ba-d324b490c23d", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/db06b4e0-63c6-4066-97ba-d324b490c23d.png", "timestamp": "2024-02-15T20:37:49.379812+00:00"}}, {"id": "333fd3cb-5596-41e4-96a2-ff109cf077c2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.614999+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "db06b4e0-63c6-4066-97ba-d324b490c23d", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/db06b4e0-63c6-4066-97ba-d324b490c23d.png", "timestamp": "2024-02-15T20:37:49.379812+00:00"}}, {"id": "b350ab98-5653-4451-ac32-c2922b048d9f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:05.427798+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. Traffic is flowing freely in both directions.", "snapshot": {"id": "db06b4e0-63c6-4066-97ba-d324b490c23d", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/db06b4e0-63c6-4066-97ba-d324b490c23d.png", "timestamp": "2024-02-15T20:37:49.379812+00:00"}}, {"id": "9549e508-16d0-4e2e-b552-26f5c590970e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.287152+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few parked cars on the side and vehicles passing by. The road surface is wet from recent rain, but there are no significant obstructions or hazards visible.", "snapshot": {"id": "1012def2-da44-4252-9e69-0bbf1e720213", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1012def2-da44-4252-9e69-0bbf1e720213.png", "timestamp": "2024-02-15T20:40:20.765839+00:00"}}, {"id": "4f30f064-fa35-4153-8054-b6ee9d3b8d40", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.561109+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "1012def2-da44-4252-9e69-0bbf1e720213", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1012def2-da44-4252-9e69-0bbf1e720213.png", "timestamp": "2024-02-15T20:40:20.765839+00:00"}}, {"id": "35e9818c-ff0a-4ac6-a7af-237a27ffc907", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.036564+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major disruptions or congestion observed.", "snapshot": {"id": "1012def2-da44-4252-9e69-0bbf1e720213", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1012def2-da44-4252-9e69-0bbf1e720213.png", "timestamp": "2024-02-15T20:40:20.765839+00:00"}}, {"id": "cc4fc308-ebe4-4745-b314-5b83ce2b1f16", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.916476+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1012def2-da44-4252-9e69-0bbf1e720213", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1012def2-da44-4252-9e69-0bbf1e720213.png", "timestamp": "2024-02-15T20:40:20.765839+00:00"}}, {"id": "9eb1c0dd-1882-45cd-bd26-389fea1e0580", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.311191+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "1012def2-da44-4252-9e69-0bbf1e720213", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1012def2-da44-4252-9e69-0bbf1e720213.png", "timestamp": "2024-02-15T20:40:20.765839+00:00"}}, {"id": "4096dec0-376b-42f7-8b67-101b06a65d48", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.830831+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, just a thin layer of water from the rain.", "snapshot": {"id": "1012def2-da44-4252-9e69-0bbf1e720213", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1012def2-da44-4252-9e69-0bbf1e720213.png", "timestamp": "2024-02-15T20:40:20.765839+00:00"}}, {"id": "94650987-4e3d-4a14-9050-688033a6010f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:00.190459+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant risk to vehicles or pedestrians.", "snapshot": {"id": "3e97c213-956d-47f8-8d8a-e840153475a0", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/3e97c213-956d-47f8-8d8a-e840153475a0.png", "timestamp": "2024-02-15T20:42:47.977948+00:00"}}, {"id": "d7e9dd06-8173-4025-84b0-5a05548b6cca", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:59.683411+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "3e97c213-956d-47f8-8d8a-e840153475a0", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/3e97c213-956d-47f8-8d8a-e840153475a0.png", "timestamp": "2024-02-15T20:42:47.977948+00:00"}}, {"id": "b6a05b39-1b80-423c-b8f3-580d564067c1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:59.491919+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several parked cars on the side of the road and a few people walking.", "snapshot": {"id": "3e97c213-956d-47f8-8d8a-e840153475a0", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/3e97c213-956d-47f8-8d8a-e840153475a0.png", "timestamp": "2024-02-15T20:42:47.977948+00:00"}}, {"id": "68a364c2-d1de-4ddc-8955-e840c583aca3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.045546+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "3e97c213-956d-47f8-8d8a-e840153475a0", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/3e97c213-956d-47f8-8d8a-e840153475a0.png", "timestamp": "2024-02-15T20:42:47.977948+00:00"}}, {"id": "1dadf133-99c6-4f51-a8c7-025eddf2875f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:59.237894+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3e97c213-956d-47f8-8d8a-e840153475a0", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/3e97c213-956d-47f8-8d8a-e840153475a0.png", "timestamp": "2024-02-15T20:42:47.977948+00:00"}}, {"id": "18a372e3-a3e5-490a-93f3-853dbcbf1eac", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:00.471596+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move freely.", "snapshot": {"id": "3e97c213-956d-47f8-8d8a-e840153475a0", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/3e97c213-956d-47f8-8d8a-e840153475a0.png", "timestamp": "2024-02-15T20:42:47.977948+00:00"}}, {"id": "c48dc1d4-77f4-447c-97db-b6e2c79466f4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.112082+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "0252f600-c00c-4305-9813-6c144bead9c9", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/0252f600-c00c-4305-9813-6c144bead9c9.png", "timestamp": "2024-02-15T20:47:33.571441+00:00"}}, {"id": "45612624-d0e6-48ca-90be-0f0d00dba816", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.875617+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "0252f600-c00c-4305-9813-6c144bead9c9", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/0252f600-c00c-4305-9813-6c144bead9c9.png", "timestamp": "2024-02-15T20:47:33.571441+00:00"}}, {"id": "1d2d52ad-cab5-4952-babd-68ee189304fe", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:44.482720+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0252f600-c00c-4305-9813-6c144bead9c9", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/0252f600-c00c-4305-9813-6c144bead9c9.png", "timestamp": "2024-02-15T20:47:33.571441+00:00"}}, {"id": "edf80d1f-2284-42d4-a5a4-24d0fcf24caf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.620546+00:00", "label": "easy", "label_explanation": "Traffic appears to be flowing smoothly, with no major congestion or obstacles on the road.", "snapshot": {"id": "0252f600-c00c-4305-9813-6c144bead9c9", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/0252f600-c00c-4305-9813-6c144bead9c9.png", "timestamp": "2024-02-15T20:47:33.571441+00:00"}}, {"id": "eac07e92-576b-425d-9dd6-0d2221d17f77", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.334930+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "0252f600-c00c-4305-9813-6c144bead9c9", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/0252f600-c00c-4305-9813-6c144bead9c9.png", "timestamp": "2024-02-15T20:47:33.571441+00:00"}}, {"id": "577a18a1-fe99-45ae-821b-6b35a4e60c1c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:44.841221+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few parked cars, buildings, and a yellow crosswalk marking on the road.", "snapshot": {"id": "0252f600-c00c-4305-9813-6c144bead9c9", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/0252f600-c00c-4305-9813-6c144bead9c9.png", "timestamp": "2024-02-15T20:47:33.571441+00:00"}}, {"id": "d26608bd-fecf-4f25-aca3-aaddd27decc8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:32.889565+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is dry.", "snapshot": {"id": "d6359b4f-80f2-4bbd-8226-49feee1b8345", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d6359b4f-80f2-4bbd-8226-49feee1b8345.png", "timestamp": "2024-02-15T20:52:22.059496+00:00"}}, {"id": "d9eba620-27b8-4e18-9fa1-27075a932f80", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:33.121186+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a steady flow of vehicles in both directions. Traffic appears to be moving smoothly, with no major congestion or delays.", "snapshot": {"id": "d6359b4f-80f2-4bbd-8226-49feee1b8345", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d6359b4f-80f2-4bbd-8226-49feee1b8345.png", "timestamp": "2024-02-15T20:52:22.059496+00:00"}}, {"id": "0912340c-1ed4-4742-aba7-206c835676d0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:33.410258+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "d6359b4f-80f2-4bbd-8226-49feee1b8345", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d6359b4f-80f2-4bbd-8226-49feee1b8345.png", "timestamp": "2024-02-15T20:52:22.059496+00:00"}}, {"id": "92c7ca02-921c-4a07-80c1-c004016e3934", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:31.884493+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d6359b4f-80f2-4bbd-8226-49feee1b8345", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d6359b4f-80f2-4bbd-8226-49feee1b8345.png", "timestamp": "2024-02-15T20:52:22.059496+00:00"}}, {"id": "e5ef3cd3-89cb-4804-a2c8-2e4ca328c70d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:32.542021+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "d6359b4f-80f2-4bbd-8226-49feee1b8345", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d6359b4f-80f2-4bbd-8226-49feee1b8345.png", "timestamp": "2024-02-15T20:52:22.059496+00:00"}}, {"id": "88373735-e3af-4607-989b-9312e422e338", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:32.232840+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "d6359b4f-80f2-4bbd-8226-49feee1b8345", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/d6359b4f-80f2-4bbd-8226-49feee1b8345.png", "timestamp": "2024-02-15T20:52:22.059496+00:00"}}, {"id": "a8ddad69-081b-4a84-8196-2f0b907e46f1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:02.249255+00:00", "label": "totally", "label_explanation": "The road is completely blocked by a parked car, making it impossible for vehicles to pass.", "snapshot": {"id": "1c31f161-88df-4947-b14b-dc13f3d72634", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1c31f161-88df-4947-b14b-dc13f3d72634.png", "timestamp": "2024-02-15T20:54:49.720615+00:00"}}, {"id": "94b98dde-0346-4d3b-a631-b2fca63540fe", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.366614+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "1c31f161-88df-4947-b14b-dc13f3d72634", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1c31f161-88df-4947-b14b-dc13f3d72634.png", "timestamp": "2024-02-15T20:54:49.720615+00:00"}}, {"id": "3ed9d47c-cb08-49f9-b900-e8b887973922", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.694449+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "1c31f161-88df-4947-b14b-dc13f3d72634", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1c31f161-88df-4947-b14b-dc13f3d72634.png", "timestamp": "2024-02-15T20:54:49.720615+00:00"}}, {"id": "6b62b453-34c5-43e4-b674-abe6dd832491", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.148907+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with parked cars on the left, buildings on the right, and a road in the center.", "snapshot": {"id": "1c31f161-88df-4947-b14b-dc13f3d72634", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1c31f161-88df-4947-b14b-dc13f3d72634.png", "timestamp": "2024-02-15T20:54:49.720615+00:00"}}, {"id": "85526869-8aee-4e87-8871-4003f268b23c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.854327+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1c31f161-88df-4947-b14b-dc13f3d72634", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/1c31f161-88df-4947-b14b-dc13f3d72634.png", "timestamp": "2024-02-15T20:54:49.720615+00:00"}}, {"id": "d33d1031-a385-4c38-afd1-c8df9132576d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.654128+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry.", "snapshot": {"id": "50be8b9f-0667-401a-86f9-c19a98c7da67", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/50be8b9f-0667-401a-86f9-c19a98c7da67.png", "timestamp": "2024-02-15T20:49:57.781574+00:00"}}, {"id": "caa645b4-0ca8-4276-9a97-e4a3f7d494de", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:10.006184+00:00", "label": "moderate", "label_explanation": "The traffic flow appears to be moderate, with a few cars parked along the side of the road and a motorcycle and pedestrians crossing. The wet road conditions may cause some minor traffic disruptions.", "snapshot": {"id": "50be8b9f-0667-401a-86f9-c19a98c7da67", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/50be8b9f-0667-401a-86f9-c19a98c7da67.png", "timestamp": "2024-02-15T20:49:57.781574+00:00"}}, {"id": "a30329e4-47bb-44ed-903c-c46ee1e77385", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.211068+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few parked cars, a motorcycle, and pedestrians crossing the road. The road surface appears wet, and there are some small puddles.", "snapshot": {"id": "50be8b9f-0667-401a-86f9-c19a98c7da67", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/50be8b9f-0667-401a-86f9-c19a98c7da67.png", "timestamp": "2024-02-15T20:49:57.781574+00:00"}}, {"id": "e08ba7e6-b666-4c56-9066-700edd086ad1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:10.237820+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic can flow freely in both directions.", "snapshot": {"id": "50be8b9f-0667-401a-86f9-c19a98c7da67", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/50be8b9f-0667-401a-86f9-c19a98c7da67.png", "timestamp": "2024-02-15T20:49:57.781574+00:00"}}, {"id": "74f634a0-2d4d-4680-94ba-5904f4c2bef4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.408774+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles visible, indicating that it has been raining.", "snapshot": {"id": "50be8b9f-0667-401a-86f9-c19a98c7da67", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/50be8b9f-0667-401a-86f9-c19a98c7da67.png", "timestamp": "2024-02-15T20:49:57.781574+00:00"}}, {"id": "008dd5c3-51c0-4209-b26d-9275a95974f4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.919270+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "50be8b9f-0667-401a-86f9-c19a98c7da67", "camera_id": "000766", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000766/50be8b9f-0667-401a-86f9-c19a98c7da67.png", "timestamp": "2024-02-15T20:49:57.781574+00:00"}}]}, {"id": "001472", "name": "AV. DO PEP X AV. OLEGRIO MACIEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01524742, "longitude": -43.30569939, "objects": ["image_description", "traffic", "water_level", "image_corrupted", "rain", "road_blockade"], "identifications": [{"id": "fbbc868a-f7de-4d74-90c4-9f50d63ed1c3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:54.474544+00:00", "label": "low", "label_explanation": "Since there is no visible water on the road surface, the water level is considered to be 'low'.", "snapshot": {"id": "80627c99-6b4e-4d23-be85-cc0cae253503", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/80627c99-6b4e-4d23-be85-cc0cae253503.png", "timestamp": "2024-02-15T20:32:37.517829+00:00"}}, {"id": "04db6059-d3d8-48da-8798-d57223139fcf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.135530+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely without any impediments.", "snapshot": {"id": "80627c99-6b4e-4d23-be85-cc0cae253503", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/80627c99-6b4e-4d23-be85-cc0cae253503.png", "timestamp": "2024-02-15T20:32:37.517829+00:00"}}, {"id": "067d3596-f0a2-4fec-b05d-e22fa630680e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:55.305030+00:00", "label": "easy", "label_explanation": "The traffic appears to be flowing smoothly, with no major disruptions or congestions. Vehicles are able to move without significant hindrance.", "snapshot": {"id": "80627c99-6b4e-4d23-be85-cc0cae253503", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/80627c99-6b4e-4d23-be85-cc0cae253503.png", "timestamp": "2024-02-15T20:32:37.517829+00:00"}}, {"id": "3aef0599-08b4-4ce3-8b0a-d70ac33e051f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:53.662352+00:00", "label": "false", "label_explanation": "As there are no visible signs of water on the road surface, it can be concluded that there is no rain.", "snapshot": {"id": "80627c99-6b4e-4d23-be85-cc0cae253503", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/80627c99-6b4e-4d23-be85-cc0cae253503.png", "timestamp": "2024-02-15T20:32:37.517829+00:00"}}, {"id": "61fa1ea2-aab3-4e84-a600-a21a5f2a1dee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.607261+00:00", "label": "null", "label_explanation": "The image depicts an urban road with clear weather and moderate traffic. There are no visible signs of water on the road, and the road surface appears to be dry.", "snapshot": {"id": "80627c99-6b4e-4d23-be85-cc0cae253503", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/80627c99-6b4e-4d23-be85-cc0cae253503.png", "timestamp": "2024-02-15T20:32:37.517829+00:00"}}, {"id": "47c46452-ec4b-45e1-bf2e-294c150ab631", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:52.171646+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions, and the image appears to be intact.", "snapshot": {"id": "80627c99-6b4e-4d23-be85-cc0cae253503", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/80627c99-6b4e-4d23-be85-cc0cae253503.png", "timestamp": "2024-02-15T20:32:37.517829+00:00"}}, {"id": "2872377c-20fb-4093-af7b-969dcd4c5da2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.116244+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "25d51382-b70a-41b7-83b2-cc21b116014b", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/25d51382-b70a-41b7-83b2-cc21b116014b.png", "timestamp": "2024-02-15T20:45:02.640488+00:00"}}, {"id": "62a85840-e9af-43ee-90ec-8975f34f21ab", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.501281+00:00", "label": "null", "label_explanation": "The image captures a coastal scene, featuring a beach, the ocean, and a structure with a trampoline.", "snapshot": {"id": "25d51382-b70a-41b7-83b2-cc21b116014b", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/25d51382-b70a-41b7-83b2-cc21b116014b.png", "timestamp": "2024-02-15T20:45:02.640488+00:00"}}, {"id": "da571e71-b251-4180-8da8-aa08962b72a0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.930922+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "25d51382-b70a-41b7-83b2-cc21b116014b", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/25d51382-b70a-41b7-83b2-cc21b116014b.png", "timestamp": "2024-02-15T20:45:02.640488+00:00"}}, {"id": "259f1e38-3fa7-4a8b-93f9-7dddf9976149", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:14.775850+00:00", "label": "false", "label_explanation": "The weather appears overcast, but there is no visible rain in the image.", "snapshot": {"id": "25d51382-b70a-41b7-83b2-cc21b116014b", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/25d51382-b70a-41b7-83b2-cc21b116014b.png", "timestamp": "2024-02-15T20:45:02.640488+00:00"}}, {"id": "099961c6-d985-481c-a212-3019e3325876", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.308014+00:00", "label": "easy", "label_explanation": "There is no traffic on the beach, as it is not a designated roadway.", "snapshot": {"id": "25d51382-b70a-41b7-83b2-cc21b116014b", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/25d51382-b70a-41b7-83b2-cc21b116014b.png", "timestamp": "2024-02-15T20:45:02.640488+00:00"}}, {"id": "2011d84a-26d3-4b33-b07d-db7b53f7046b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:15.003194+00:00", "label": "low", "label_explanation": "The water level is normal, with no significant flooding or water accumulation.", "snapshot": {"id": "25d51382-b70a-41b7-83b2-cc21b116014b", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/25d51382-b70a-41b7-83b2-cc21b116014b.png", "timestamp": "2024-02-15T20:45:02.640488+00:00"}}, {"id": "5658c5cc-7dbb-4bb8-8a7b-7a0cf5069088", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.463025+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "91161e53-f26b-4a06-8983-f934bd035941", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/91161e53-f26b-4a06-8983-f934bd035941.png", "timestamp": "2024-02-15T20:37:45.377937+00:00"}}, {"id": "0b758a01-ffa5-4995-aa26-4455d5f56615", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.972193+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "91161e53-f26b-4a06-8983-f934bd035941", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/91161e53-f26b-4a06-8983-f934bd035941.png", "timestamp": "2024-02-15T20:37:45.377937+00:00"}}, {"id": "2262f99b-022e-4ce9-8969-8f308236d84c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.222649+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear.", "snapshot": {"id": "91161e53-f26b-4a06-8983-f934bd035941", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/91161e53-f26b-4a06-8983-f934bd035941.png", "timestamp": "2024-02-15T20:37:45.377937+00:00"}}, {"id": "a6a8f534-a393-4ff1-bb5d-d7c078912ac2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:57.789187+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "91161e53-f26b-4a06-8983-f934bd035941", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/91161e53-f26b-4a06-8983-f934bd035941.png", "timestamp": "2024-02-15T20:37:45.377937+00:00"}}, {"id": "7c394945-a414-4d19-a33a-c3b7741ed2d5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.925860+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "91161e53-f26b-4a06-8983-f934bd035941", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/91161e53-f26b-4a06-8983-f934bd035941.png", "timestamp": "2024-02-15T20:37:45.377937+00:00"}}, {"id": "e3c15e3a-4cce-4747-9fba-b5c1ede3ff20", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.355684+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "91161e53-f26b-4a06-8983-f934bd035941", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/91161e53-f26b-4a06-8983-f934bd035941.png", "timestamp": "2024-02-15T20:37:45.377937+00:00"}}, {"id": "4351fea7-048a-4ccd-9179-eebc897e578f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:27.608260+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "25def77f-d39b-46a1-a4c7-631dcda7c837", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/25def77f-d39b-46a1-a4c7-631dcda7c837.png", "timestamp": "2024-02-15T20:40:12.813067+00:00"}}, {"id": "13dd64b5-5c7d-4299-98ca-af7034a5ff33", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:27.037014+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "25def77f-d39b-46a1-a4c7-631dcda7c837", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/25def77f-d39b-46a1-a4c7-631dcda7c837.png", "timestamp": "2024-02-15T20:40:12.813067+00:00"}}, {"id": "1fc4656b-8a01-445e-a8ae-8006d3d18083", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:34.839118+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear.", "snapshot": {"id": "ffc551d3-6499-4b01-96af-60cdb0bfaf45", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/ffc551d3-6499-4b01-96af-60cdb0bfaf45.png", "timestamp": "2024-02-15T20:47:25.995195+00:00"}}, {"id": "0492030d-5e54-4d71-8278-24ff4ba028a9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.586299+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "ffc551d3-6499-4b01-96af-60cdb0bfaf45", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/ffc551d3-6499-4b01-96af-60cdb0bfaf45.png", "timestamp": "2024-02-15T20:47:25.995195+00:00"}}, {"id": "64fed678-9773-44a8-9dc2-fedb2d5e584c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.369499+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "ffc551d3-6499-4b01-96af-60cdb0bfaf45", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/ffc551d3-6499-4b01-96af-60cdb0bfaf45.png", "timestamp": "2024-02-15T20:47:25.995195+00:00"}}, {"id": "dfc02760-9989-4832-a634-2ba0e68ebbcf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:34.594177+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ffc551d3-6499-4b01-96af-60cdb0bfaf45", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/ffc551d3-6499-4b01-96af-60cdb0bfaf45.png", "timestamp": "2024-02-15T20:47:25.995195+00:00"}}, {"id": "f2c0b87e-b944-433c-b206-e71a5bf56303", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.853360+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "ffc551d3-6499-4b01-96af-60cdb0bfaf45", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/ffc551d3-6499-4b01-96af-60cdb0bfaf45.png", "timestamp": "2024-02-15T20:47:25.995195+00:00"}}, {"id": "559cf0bc-9fd0-44ce-bf00-2ba920a5d9db", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:35.103804+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "ffc551d3-6499-4b01-96af-60cdb0bfaf45", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/ffc551d3-6499-4b01-96af-60cdb0bfaf45.png", "timestamp": "2024-02-15T20:47:25.995195+00:00"}}, {"id": "6ac4ca50-689d-4820-9d02-6ee2a80dbdd2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.105926+00:00", "label": "low", "label_explanation": "The water level is normal, with no significant rise or fall.", "snapshot": {"id": "a4678d79-b8c0-4263-bdea-cde9fb7f01e5", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/a4678d79-b8c0-4263-bdea-cde9fb7f01e5.png", "timestamp": "2024-02-15T20:52:14.831240+00:00"}}, {"id": "b50af164-e044-45b3-a835-c0f886222e32", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.699203+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "a4678d79-b8c0-4263-bdea-cde9fb7f01e5", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/a4678d79-b8c0-4263-bdea-cde9fb7f01e5.png", "timestamp": "2024-02-15T20:52:14.831240+00:00"}}, {"id": "9bc34af7-a261-45ef-83d7-f9c2fc28a92e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.364733+00:00", "label": "easy", "label_explanation": "There is no traffic visible in the image, as the road is not a primary focus.", "snapshot": {"id": "a4678d79-b8c0-4263-bdea-cde9fb7f01e5", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/a4678d79-b8c0-4263-bdea-cde9fb7f01e5.png", "timestamp": "2024-02-15T20:52:14.831240+00:00"}}, {"id": "a626ce0a-dddc-4f28-8b4f-f5df360d84cf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.506361+00:00", "label": "null", "label_explanation": "The image captures a coastal scene, featuring a lifeguard tower, a beach, and the ocean. The sky is cloudy, and the sun is partially visible. There are no people visible in the image.", "snapshot": {"id": "a4678d79-b8c0-4263-bdea-cde9fb7f01e5", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/a4678d79-b8c0-4263-bdea-cde9fb7f01e5.png", "timestamp": "2024-02-15T20:52:14.831240+00:00"}}, {"id": "3ae15995-3d62-4630-8fa7-ed3256e108c3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.791462+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "a4678d79-b8c0-4263-bdea-cde9fb7f01e5", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/a4678d79-b8c0-4263-bdea-cde9fb7f01e5.png", "timestamp": "2024-02-15T20:52:14.831240+00:00"}}, {"id": "741cb1f0-a05b-4416-bb4d-1a86ef249d8d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:26.168883+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a4678d79-b8c0-4263-bdea-cde9fb7f01e5", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/a4678d79-b8c0-4263-bdea-cde9fb7f01e5.png", "timestamp": "2024-02-15T20:52:14.831240+00:00"}}, {"id": "b82fce6c-dc50-4d6c-bd8c-2735c61a4f98", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.545893+00:00", "label": "free", "label_explanation": "There are no road blockades present in the image.", "snapshot": {"id": "f0197e82-983e-4210-ae6c-b230aeb86f3e", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/f0197e82-983e-4210-ae6c-b230aeb86f3e.png", "timestamp": "2024-02-15T20:54:42.901233+00:00"}}, {"id": "09b493b9-c407-4a40-bfcf-e9351ea9d687", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.250480+00:00", "label": "null", "label_explanation": "The image captures a coastal scene, featuring a lifeguard tower, a beach, and the ocean. The sky is cloudy, and the waves are crashing against the shore.", "snapshot": {"id": "f0197e82-983e-4210-ae6c-b230aeb86f3e", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/f0197e82-983e-4210-ae6c-b230aeb86f3e.png", "timestamp": "2024-02-15T20:54:42.901233+00:00"}}, {"id": "3f488213-e956-49a9-9352-dfca9e5d664b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:52.640616+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f0197e82-983e-4210-ae6c-b230aeb86f3e", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/f0197e82-983e-4210-ae6c-b230aeb86f3e.png", "timestamp": "2024-02-15T20:54:42.901233+00:00"}}, {"id": "090ec4b8-3866-47d3-8092-e6ffe50d7b0d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:54.154598+00:00", "label": "easy", "label_explanation": "There is no traffic visible in the image, as the scene primarily consists of a beach and the ocean.", "snapshot": {"id": "f0197e82-983e-4210-ae6c-b230aeb86f3e", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/f0197e82-983e-4210-ae6c-b230aeb86f3e.png", "timestamp": "2024-02-15T20:54:42.901233+00:00"}}, {"id": "7bd1f8ce-2480-46fe-b947-c9873ea8ffca", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.515263+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "f0197e82-983e-4210-ae6c-b230aeb86f3e", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/f0197e82-983e-4210-ae6c-b230aeb86f3e.png", "timestamp": "2024-02-15T20:54:42.901233+00:00"}}, {"id": "148092db-24cc-46ec-bd3e-1dcb83e5a93b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:53.823339+00:00", "label": "low", "label_explanation": "The water level is normal, with the waves reaching the shoreline but not overflowing onto the beach or structures.", "snapshot": {"id": "f0197e82-983e-4210-ae6c-b230aeb86f3e", "camera_id": "001472", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001472/f0197e82-983e-4210-ae6c-b230aeb86f3e.png", "timestamp": "2024-02-15T20:54:42.901233+00:00"}}]}, {"id": "001392", "name": "ESTRADA DA BARRA DA TIJUCA - ITANHANG\u00c1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00306782, "longitude": -43.30464772, "objects": ["image_description", "road_blockade", "image_corrupted", "traffic", "rain", "water_level"], "identifications": [{"id": "46250914-c6fe-430c-99eb-1d8b940629ef", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.437241+00:00", "label": "easy", "label_explanation": "The traffic is light, with a few cars on the road.", "snapshot": {"id": "49ed845b-e1b9-4abf-8786-1f6e28444b2d", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/49ed845b-e1b9-4abf-8786-1f6e28444b2d.png", "timestamp": "2024-02-15T20:30:19.539046+00:00"}}, {"id": "8aed2d61-dde2-4e98-8e09-b4539e7124c5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.175722+00:00", "label": "low", "label_explanation": "The water level is low, with only a few puddles on the road.", "snapshot": {"id": "49ed845b-e1b9-4abf-8786-1f6e28444b2d", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/49ed845b-e1b9-4abf-8786-1f6e28444b2d.png", "timestamp": "2024-02-15T20:30:19.539046+00:00"}}, {"id": "bc2a5690-0b12-43e5-b448-6296a42e086a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.717294+00:00", "label": "true", "label_explanation": "The road is wet from rain, and there are a few puddles on the road.", "snapshot": {"id": "49ed845b-e1b9-4abf-8786-1f6e28444b2d", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/49ed845b-e1b9-4abf-8786-1f6e28444b2d.png", "timestamp": "2024-02-15T20:30:19.539046+00:00"}}, {"id": "ac8894ef-1e39-47d2-b288-23c5e198a4e7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.396737+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with trees on either side. The road is wet from rain, and there are a few cars on it. There is a bus stop on the right side of the road, and a pedestrian is walking on the sidewalk.", "snapshot": {"id": "49ed845b-e1b9-4abf-8786-1f6e28444b2d", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/49ed845b-e1b9-4abf-8786-1f6e28444b2d.png", "timestamp": "2024-02-15T20:30:19.539046+00:00"}}, {"id": "47f0cd6f-4fc8-44f1-84ad-1111ddae2280", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.755845+00:00", "label": "free", "label_explanation": "There are no road blockades, and the road is clear.", "snapshot": {"id": "49ed845b-e1b9-4abf-8786-1f6e28444b2d", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/49ed845b-e1b9-4abf-8786-1f6e28444b2d.png", "timestamp": "2024-02-15T20:30:19.539046+00:00"}}, {"id": "9bc10038-f4f9-4568-b117-0731a6173c85", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.142699+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "49ed845b-e1b9-4abf-8786-1f6e28444b2d", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/49ed845b-e1b9-4abf-8786-1f6e28444b2d.png", "timestamp": "2024-02-15T20:30:19.539046+00:00"}}, {"id": "d4830bbf-3f43-4a5a-98b4-02849450a67c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.732506+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "9ae6ac5c-35c5-4507-8140-4408b0a066cf", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/9ae6ac5c-35c5-4507-8140-4408b0a066cf.png", "timestamp": "2024-02-15T20:37:52.338571+00:00"}}, {"id": "efd5b406-3ae2-40e8-afd1-810d3541eab4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.614893+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion or obstacles.", "snapshot": {"id": "9ae6ac5c-35c5-4507-8140-4408b0a066cf", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/9ae6ac5c-35c5-4507-8140-4408b0a066cf.png", "timestamp": "2024-02-15T20:37:52.338571+00:00"}}, {"id": "6eec7f0f-d21e-48bc-891e-828237fc7a17", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.212299+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street and surrounding environment. It is daytime, and the weather appears to be cloudy but dry.", "snapshot": {"id": "9ae6ac5c-35c5-4507-8140-4408b0a066cf", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/9ae6ac5c-35c5-4507-8140-4408b0a066cf.png", "timestamp": "2024-02-15T20:37:52.338571+00:00"}}, {"id": "1610b67d-aaf8-4e61-9d94-f582c57fbf69", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.197493+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "9ae6ac5c-35c5-4507-8140-4408b0a066cf", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/9ae6ac5c-35c5-4507-8140-4408b0a066cf.png", "timestamp": "2024-02-15T20:37:52.338571+00:00"}}, {"id": "b154ffe4-c0fd-4d24-a6d1-27f013481cb7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.278508+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "9ae6ac5c-35c5-4507-8140-4408b0a066cf", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/9ae6ac5c-35c5-4507-8140-4408b0a066cf.png", "timestamp": "2024-02-15T20:37:52.338571+00:00"}}, {"id": "0ce599c3-8bbf-44f6-a41e-de1357e10b2f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:08.718336+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9ae6ac5c-35c5-4507-8140-4408b0a066cf", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/9ae6ac5c-35c5-4507-8140-4408b0a066cf.png", "timestamp": "2024-02-15T20:37:52.338571+00:00"}}, {"id": "8f30d3ba-7544-4724-b2aa-021499b39208", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:37.595889+00:00", "label": "low", "label_explanation": "There is no visible water on the road surface.", "snapshot": {"id": "cf9c6c6b-f481-45be-a960-d7f2fea3ac9c", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/cf9c6c6b-f481-45be-a960-d7f2fea3ac9c.png", "timestamp": "2024-02-15T20:35:19.920159+00:00"}}, {"id": "fdaa5a75-3730-47c1-addf-b4eb804eb828", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.010768+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion or obstructions.", "snapshot": {"id": "cf9c6c6b-f481-45be-a960-d7f2fea3ac9c", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/cf9c6c6b-f481-45be-a960-d7f2fea3ac9c.png", "timestamp": "2024-02-15T20:35:19.920159+00:00"}}, {"id": "c7d2a24b-2820-4333-b796-4904c8efdefa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.309028+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "cf9c6c6b-f481-45be-a960-d7f2fea3ac9c", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/cf9c6c6b-f481-45be-a960-d7f2fea3ac9c.png", "timestamp": "2024-02-15T20:35:19.920159+00:00"}}, {"id": "fd28aa33-a06d-4623-932e-addf2de039b1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.855726+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "cf9c6c6b-f481-45be-a960-d7f2fea3ac9c", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/cf9c6c6b-f481-45be-a960-d7f2fea3ac9c.png", "timestamp": "2024-02-15T20:35:19.920159+00:00"}}, {"id": "865a638f-b7f3-4496-a630-d42b9f1deffa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.410366+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, paved road with two lanes separated by a solid white line. On either side of the road, there are green trees and shrubs, as well as a few buildings and cars parked along the curb. The weather appears to be clear, as there are no visible signs of rain or other adverse weather conditions.", "snapshot": {"id": "cf9c6c6b-f481-45be-a960-d7f2fea3ac9c", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/cf9c6c6b-f481-45be-a960-d7f2fea3ac9c.png", "timestamp": "2024-02-15T20:35:19.920159+00:00"}}, {"id": "8ffa7a84-af5a-48a2-bfbd-b542d61e9907", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.701846+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cf9c6c6b-f481-45be-a960-d7f2fea3ac9c", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/cf9c6c6b-f481-45be-a960-d7f2fea3ac9c.png", "timestamp": "2024-02-15T20:35:19.920159+00:00"}}, {"id": "99936424-a258-4730-94f4-24fc90abf6a0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.549738+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "12a1c591-8cdf-4bd3-bd1f-979dcd04e308", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/12a1c591-8cdf-4bd3-bd1f-979dcd04e308.png", "timestamp": "2024-02-15T20:40:29.190028+00:00"}}, {"id": "5e5a811c-cf58-4ea2-91db-39572efdd1a4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.775732+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "12a1c591-8cdf-4bd3-bd1f-979dcd04e308", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/12a1c591-8cdf-4bd3-bd1f-979dcd04e308.png", "timestamp": "2024-02-15T20:40:29.190028+00:00"}}, {"id": "2d610c50-2845-469c-9e24-849209a97545", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.515114+00:00", "label": "free", "label_explanation": "There are no obstructions visible in the image, so the road is clear.", "snapshot": {"id": "4b337092-1db1-455a-944f-a95e29688cca", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/4b337092-1db1-455a-944f-a95e29688cca.png", "timestamp": "2024-02-15T20:42:50.049720+00:00"}}, {"id": "d88e6b39-2406-4a7e-8b61-30bd85ed7392", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.640066+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "4b337092-1db1-455a-944f-a95e29688cca", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/4b337092-1db1-455a-944f-a95e29688cca.png", "timestamp": "2024-02-15T20:42:50.049720+00:00"}}, {"id": "6550c487-73cc-4814-bde0-252857833d57", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.193133+00:00", "label": "null", "label_explanation": "The image shows a four-lane road with trees on either side. The road is wet from recent rain, but there is no standing water. There are no vehicles visible in the image.", "snapshot": {"id": "4b337092-1db1-455a-944f-a95e29688cca", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/4b337092-1db1-455a-944f-a95e29688cca.png", "timestamp": "2024-02-15T20:42:50.049720+00:00"}}, {"id": "c496955c-1647-4abd-95df-11cb8a896f5e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.919906+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "4b337092-1db1-455a-944f-a95e29688cca", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/4b337092-1db1-455a-944f-a95e29688cca.png", "timestamp": "2024-02-15T20:42:50.049720+00:00"}}, {"id": "b7eb2784-e009-43a8-9027-579983dd5eff", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:00.992449+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4b337092-1db1-455a-944f-a95e29688cca", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/4b337092-1db1-455a-944f-a95e29688cca.png", "timestamp": "2024-02-15T20:42:50.049720+00:00"}}, {"id": "6b1a3a8a-c561-4076-add0-8ff63703c25c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.327989+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8f0988a9-b338-42cb-8d56-14a763d3383f", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/8f0988a9-b338-42cb-8d56-14a763d3383f.png", "timestamp": "2024-02-15T20:45:12.961865+00:00"}}, {"id": "f1b35585-d566-45d8-98ec-64111fe4535f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.625422+00:00", "label": "easy", "label_explanation": "The traffic is light, and there are no major obstructions on the road.", "snapshot": {"id": "8f0988a9-b338-42cb-8d56-14a763d3383f", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/8f0988a9-b338-42cb-8d56-14a763d3383f.png", "timestamp": "2024-02-15T20:45:12.961865+00:00"}}, {"id": "07ddc21c-b75d-4ab2-9842-69efe4201a49", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.354107+00:00", "label": "low", "label_explanation": "There is some water on the road, but it is not enough to cause any significant problems for traffic.", "snapshot": {"id": "8f0988a9-b338-42cb-8d56-14a763d3383f", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/8f0988a9-b338-42cb-8d56-14a763d3383f.png", "timestamp": "2024-02-15T20:45:12.961865+00:00"}}, {"id": "352046a0-fae1-4d95-9cf7-a58e9fcab191", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.664326+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a tree-lined median strip. There are a few cars on the road, and the traffic appears to be light. The weather is overcast, and there is some light rain falling.", "snapshot": {"id": "8f0988a9-b338-42cb-8d56-14a763d3383f", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/8f0988a9-b338-42cb-8d56-14a763d3383f.png", "timestamp": "2024-02-15T20:45:12.961865+00:00"}}, {"id": "01578091-5064-4364-b074-ceaaa791358d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.818058+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "8f0988a9-b338-42cb-8d56-14a763d3383f", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/8f0988a9-b338-42cb-8d56-14a763d3383f.png", "timestamp": "2024-02-15T20:45:12.961865+00:00"}}, {"id": "923bbf07-3d45-4a99-be3b-a65e22827632", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.038263+00:00", "label": "true", "label_explanation": "The image shows some light rain falling on the road.", "snapshot": {"id": "8f0988a9-b338-42cb-8d56-14a763d3383f", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/8f0988a9-b338-42cb-8d56-14a763d3383f.png", "timestamp": "2024-02-15T20:45:12.961865+00:00"}}, {"id": "86661806-4992-43f2-a738-90dd3a482997", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.512576+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "5bd447e9-91b0-4655-a4b0-981a5f9eed32", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/5bd447e9-91b0-4655-a4b0-981a5f9eed32.png", "timestamp": "2024-02-15T20:47:37.010176+00:00"}}, {"id": "985a99d2-7d3d-41c4-ac87-6401e551cfec", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.355490+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5bd447e9-91b0-4655-a4b0-981a5f9eed32", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/5bd447e9-91b0-4655-a4b0-981a5f9eed32.png", "timestamp": "2024-02-15T20:47:37.010176+00:00"}}, {"id": "c576da46-c0e5-421c-bab4-becc5ab6690d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.258241+00:00", "label": "low", "label_explanation": "There is no standing water or significant puddles on the road surface.", "snapshot": {"id": "5bd447e9-91b0-4655-a4b0-981a5f9eed32", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/5bd447e9-91b0-4655-a4b0-981a5f9eed32.png", "timestamp": "2024-02-15T20:47:37.010176+00:00"}}, {"id": "e4077bc5-7e69-436a-9ba8-e496c7de3e9e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.006595+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "5bd447e9-91b0-4655-a4b0-981a5f9eed32", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/5bd447e9-91b0-4655-a4b0-981a5f9eed32.png", "timestamp": "2024-02-15T20:47:37.010176+00:00"}}, {"id": "3da2b1ab-542a-4556-95fe-3c423943dd9b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.805363+00:00", "label": "free", "label_explanation": "The road is free of any obstructions or blockades.", "snapshot": {"id": "5bd447e9-91b0-4655-a4b0-981a5f9eed32", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/5bd447e9-91b0-4655-a4b0-981a5f9eed32.png", "timestamp": "2024-02-15T20:47:37.010176+00:00"}}, {"id": "13e774a0-d628-4f83-9de9-20389bf529f6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.683778+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is surrounded by trees and shrubs. The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "5bd447e9-91b0-4655-a4b0-981a5f9eed32", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/5bd447e9-91b0-4655-a4b0-981a5f9eed32.png", "timestamp": "2024-02-15T20:47:37.010176+00:00"}}, {"id": "9352cd8c-3698-4f58-a4d2-8c3949c0ad87", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.378313+00:00", "label": "totally", "label_explanation": "The road is completely blocked by vegetation, making it impossible for vehicles to pass.", "snapshot": {"id": "306ca6b9-3f3c-4a93-8a5f-611b84d42265", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/306ca6b9-3f3c-4a93-8a5f-611b84d42265.png", "timestamp": "2024-02-15T20:49:57.004302+00:00"}}, {"id": "c782687a-04d5-410e-b5c7-3a6107d7f654", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.082406+00:00", "label": "null", "label_explanation": "The image shows a road with trees and foliage on either side. The road is not visible for most of its length due to the overgrowth of vegetation.", "snapshot": {"id": "306ca6b9-3f3c-4a93-8a5f-611b84d42265", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/306ca6b9-3f3c-4a93-8a5f-611b84d42265.png", "timestamp": "2024-02-15T20:49:57.004302+00:00"}}, {"id": "6c697b8e-053d-45aa-b170-a9573f849ae7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.861032+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "306ca6b9-3f3c-4a93-8a5f-611b84d42265", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/306ca6b9-3f3c-4a93-8a5f-611b84d42265.png", "timestamp": "2024-02-15T20:49:57.004302+00:00"}}, {"id": "d4d55a71-ff61-445e-98c5-17e804ad20b6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.750337+00:00", "label": "low", "label_explanation": "There is no water visible on the road.", "snapshot": {"id": "306ca6b9-3f3c-4a93-8a5f-611b84d42265", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/306ca6b9-3f3c-4a93-8a5f-611b84d42265.png", "timestamp": "2024-02-15T20:49:57.004302+00:00"}}, {"id": "652dad92-ba93-4d03-921b-045ea99503d3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.444025+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "306ca6b9-3f3c-4a93-8a5f-611b84d42265", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/306ca6b9-3f3c-4a93-8a5f-611b84d42265.png", "timestamp": "2024-02-15T20:49:57.004302+00:00"}}, {"id": "8a1e68fd-552d-4232-ab17-42b1143d729f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.854304+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. The road is clear and passable for vehicles.", "snapshot": {"id": "d19ba254-f554-4324-8cfc-3131f3e63119", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/d19ba254-f554-4324-8cfc-3131f3e63119.png", "timestamp": "2024-02-15T20:52:24.013151+00:00"}}, {"id": "50937407-7892-4514-acac-e1173ac3cefc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.387294+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away, leaving the road passable for vehicles.", "snapshot": {"id": "d19ba254-f554-4324-8cfc-3131f3e63119", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/d19ba254-f554-4324-8cfc-3131f3e63119.png", "timestamp": "2024-02-15T20:52:24.013151+00:00"}}, {"id": "5af90792-a0c9-4b48-81b8-d0d37b9b1d7e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.589029+00:00", "label": "easy", "label_explanation": "Traffic is light, with only a few cars visible in the distance. The road is wide and has multiple lanes, allowing for smooth traffic flow.", "snapshot": {"id": "d19ba254-f554-4324-8cfc-3131f3e63119", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/d19ba254-f554-4324-8cfc-3131f3e63119.png", "timestamp": "2024-02-15T20:52:24.013151+00:00"}}, {"id": "94190202-42d6-4279-9c83-28547c2faeed", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.579655+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d19ba254-f554-4324-8cfc-3131f3e63119", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/d19ba254-f554-4324-8cfc-3131f3e63119.png", "timestamp": "2024-02-15T20:52:24.013151+00:00"}}, {"id": "635f340e-b566-4a58-b70e-9f9ebf3b032b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.866630+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is surrounded by trees and shrubs. The road surface is wet from recent rain, but there are no significant puddles or standing water. Traffic is light, with a few cars visible in the distance.", "snapshot": {"id": "d19ba254-f554-4324-8cfc-3131f3e63119", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/d19ba254-f554-4324-8cfc-3131f3e63119.png", "timestamp": "2024-02-15T20:52:24.013151+00:00"}}, {"id": "e858613c-0751-4d67-b974-ab06b1496198", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.091120+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain has stopped, and the road is no longer actively wet.", "snapshot": {"id": "d19ba254-f554-4324-8cfc-3131f3e63119", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/d19ba254-f554-4324-8cfc-3131f3e63119.png", "timestamp": "2024-02-15T20:52:24.013151+00:00"}}, {"id": "9240aaa6-c949-4dc2-beaf-9bc75e762ce6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.030308+00:00", "label": "true", "label_explanation": "The image is corrupted, with large green and grey patches distorting the visual data. It is not possible to accurately assess the road conditions or traffic flow.", "snapshot": {"id": "0730b9f4-9438-4b98-b259-a8f63ef9aaad", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/0730b9f4-9438-4b98-b259-a8f63ef9aaad.png", "timestamp": "2024-02-15T20:54:50.723145+00:00"}}, {"id": "9f3777d0-827c-4a87-8545-609cc57bc808", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.226973+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "0730b9f4-9438-4b98-b259-a8f63ef9aaad", "camera_id": "001392", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001392/0730b9f4-9438-4b98-b259-a8f63ef9aaad.png", "timestamp": "2024-02-15T20:54:50.723145+00:00"}}]}, {"id": "001504", "name": "CAMPO DE S\u00c3O CRIST\u00d3V\u00c3O X COL\u00c9GIO PEDRO II - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8989241, "longitude": -43.22031261, "objects": ["image_corrupted", "rain", "water_level", "image_description", "road_blockade", "traffic"], "identifications": [{"id": "d9d770ac-f60e-4147-ab9f-9142c5fb4879", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.692828+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the recent rain has either drained away or evaporated.", "snapshot": {"id": "45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4.png", "timestamp": "2024-02-15T20:30:11.869896+00:00"}}, {"id": "f30745fa-3475-40b7-99cf-e086fbd17859", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.461930+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4.png", "timestamp": "2024-02-15T20:30:11.869896+00:00"}}, {"id": "1d1d59fe-74b8-4741-831a-a2ee885e0701", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.606924+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and the entire width of the road is available for traffic.", "snapshot": {"id": "45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4.png", "timestamp": "2024-02-15T20:30:11.869896+00:00"}}, {"id": "491c6a03-e589-4e91-8b1f-f1e3dc3712fa", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.297071+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major disruptions. The wet road surface is not causing any problems for the drivers.", "snapshot": {"id": "45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4.png", "timestamp": "2024-02-15T20:30:11.869896+00:00"}}, {"id": "6db2c55e-9589-43a5-92b3-af0c125a51c0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.311288+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy enough to cause any significant traffic disruptions.", "snapshot": {"id": "45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4.png", "timestamp": "2024-02-15T20:30:11.869896+00:00"}}, {"id": "65285adf-e130-4821-8faa-6b0a252efff5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.828385+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rain. There are several cars on the road, and the traffic appears to be flowing smoothly.", "snapshot": {"id": "45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/45c5f30f-d2c6-4b3a-88e2-d44a0df7fda4.png", "timestamp": "2024-02-15T20:30:11.869896+00:00"}}, {"id": "c67be997-54ad-4320-be9b-89087ff99bc1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:59.048988+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is flowing smoothly.", "snapshot": {"id": "b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e.png", "timestamp": "2024-02-15T20:32:38.771437+00:00"}}, {"id": "d79ab966-d48d-4e3e-a295-1886b8005db7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:57.729647+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, but the road is wet from recent rain.", "snapshot": {"id": "b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e.png", "timestamp": "2024-02-15T20:32:38.771437+00:00"}}, {"id": "82ee56cb-eeac-4ef2-8b5c-f4dde54ca8d2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.264449+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a raised median and a bus stop on the right side. There are a few trees on either side of the road, and buildings and other structures in the background. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e.png", "timestamp": "2024-02-15T20:32:38.771437+00:00"}}, {"id": "e9428938-605f-4a2f-ac05-15e22d608044", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:58.312871+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a few cars and buses visible. Traffic is moving smoothly, with no major congestion.", "snapshot": {"id": "b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e.png", "timestamp": "2024-02-15T20:32:38.771437+00:00"}}, {"id": "a19b60d8-b3af-449a-9bfc-3870b29cc048", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.869302+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e.png", "timestamp": "2024-02-15T20:32:38.771437+00:00"}}, {"id": "5054e549-4029-4980-9e02-87fa33a51dfe", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:55.601746+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/b3b4ff72-19cc-4985-9e3a-d5e1e6c8ce0e.png", "timestamp": "2024-02-15T20:32:38.771437+00:00"}}, {"id": "02a270e2-a74c-47d1-bea2-de487731cbcf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:30.202686+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495.png", "timestamp": "2024-02-15T20:35:14.269222+00:00"}}, {"id": "3c8aaf7c-8298-4241-ad1a-efd5502ae945", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:29.866363+00:00", "label": "easy", "label_explanation": "The traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495.png", "timestamp": "2024-02-15T20:35:14.269222+00:00"}}, {"id": "c2ad5183-4b0b-478a-a079-84fa4eca0690", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:29.244122+00:00", "label": "low", "label_explanation": "There is some water on the road, but it is not enough to cause any significant traffic disruptions. The water is mostly confined to the right side of the road, near the bus stop.", "snapshot": {"id": "e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495.png", "timestamp": "2024-02-15T20:35:14.269222+00:00"}}, {"id": "2e6d1e29-db64-49c0-9bb5-4d3768153414", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.682904+00:00", "label": "true", "label_explanation": "The image shows light rain falling on the road.", "snapshot": {"id": "e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495.png", "timestamp": "2024-02-15T20:35:14.269222+00:00"}}, {"id": "628a0262-508a-47ca-80e3-77c6d9971456", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.410726+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a bus stop on the right side. There are a few trees on either side of the road, and buildings and overpasses in the background. The weather appears to be cloudy and there is some light rain falling.", "snapshot": {"id": "e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495.png", "timestamp": "2024-02-15T20:35:14.269222+00:00"}}, {"id": "296f74d9-39f1-4ee1-a519-12da91e1b3af", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.116043+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/e14f3a4e-7dbc-4c64-98e7-0a3a94bd7495.png", "timestamp": "2024-02-15T20:35:14.269222+00:00"}}, {"id": "c7fb5adb-0d42-47f4-bfaf-f6ebdfd0373a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.976839+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is clear and passable in both directions.", "snapshot": {"id": "870dc9cc-bf63-48ba-a060-e33f01d79c52", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/870dc9cc-bf63-48ba-a060-e33f01d79c52.png", "timestamp": "2024-02-15T20:37:45.126193+00:00"}}, {"id": "56a831cf-8a61-43ad-89aa-cc0784adf3ba", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.324676+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion. Traffic is flowing smoothly in both directions.", "snapshot": {"id": "870dc9cc-bf63-48ba-a060-e33f01d79c52", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/870dc9cc-bf63-48ba-a060-e33f01d79c52.png", "timestamp": "2024-02-15T20:37:45.126193+00:00"}}, {"id": "6ffbfadc-700e-46db-9938-46f4356bcee9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.586798+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "870dc9cc-bf63-48ba-a060-e33f01d79c52", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/870dc9cc-bf63-48ba-a060-e33f01d79c52.png", "timestamp": "2024-02-15T20:37:45.126193+00:00"}}, {"id": "813f0b81-8265-472f-853a-73f1b4e89254", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:01.779182+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but it is not flooded.", "snapshot": {"id": "870dc9cc-bf63-48ba-a060-e33f01d79c52", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/870dc9cc-bf63-48ba-a060-e33f01d79c52.png", "timestamp": "2024-02-15T20:37:45.126193+00:00"}}, {"id": "3c8ca1c5-b34b-40ff-99c7-1e597e6224e2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.979936+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a wide median strip. There are trees on either side of the road, and buildings and other structures in the background. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "870dc9cc-bf63-48ba-a060-e33f01d79c52", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/870dc9cc-bf63-48ba-a060-e33f01d79c52.png", "timestamp": "2024-02-15T20:37:45.126193+00:00"}}, {"id": "21547096-f2d2-4692-b532-b81d98c70d8c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.693959+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "870dc9cc-bf63-48ba-a060-e33f01d79c52", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/870dc9cc-bf63-48ba-a060-e33f01d79c52.png", "timestamp": "2024-02-15T20:37:45.126193+00:00"}}, {"id": "243d5512-0902-47c6-b418-65ee049af8c0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.932197+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic is flowing freely.", "snapshot": {"id": "8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e.png", "timestamp": "2024-02-15T20:40:14.959469+00:00"}}, {"id": "f0d4fd85-d96e-409d-a71b-b4b864180a1b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.285785+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is dry.", "snapshot": {"id": "8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e.png", "timestamp": "2024-02-15T20:40:14.959469+00:00"}}, {"id": "5c1ecd2c-6e4f-4d8a-8057-1b5a6fd18686", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.149830+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e.png", "timestamp": "2024-02-15T20:40:14.959469+00:00"}}, {"id": "e2e15446-6e3c-44a6-b5d3-465ef69e753f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:31.686219+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly on the road.", "snapshot": {"id": "8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e.png", "timestamp": "2024-02-15T20:40:14.959469+00:00"}}, {"id": "879bfb1c-f7c7-4071-ab06-0e85e6db6b38", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.857702+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e.png", "timestamp": "2024-02-15T20:40:14.959469+00:00"}}, {"id": "4a21379d-d7d9-4dde-b404-8ff01f1cf52e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.912726+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/8105a132-99c6-4d60-9d1a-7ce3e1a5ac1e.png", "timestamp": "2024-02-15T20:40:14.959469+00:00"}}, {"id": "397d63c5-a727-44e3-93ba-f7ca65b0e07c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.455613+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime and the road is moderately lit. There are several elements in the image, including a wide road with multiple lanes, buildings, trees, and people walking on the sidewalk.", "snapshot": {"id": "de932bd7-4bae-4199-9bfa-0284a212c125", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/de932bd7-4bae-4199-9bfa-0284a212c125.png", "timestamp": "2024-02-15T20:45:05.594962+00:00"}}, {"id": "c2bc56b3-6ca1-4734-9a67-133520538061", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.868506+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of water accumulation or flooding.", "snapshot": {"id": "de932bd7-4bae-4199-9bfa-0284a212c125", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/de932bd7-4bae-4199-9bfa-0284a212c125.png", "timestamp": "2024-02-15T20:45:05.594962+00:00"}}, {"id": "0cfe5f4e-38c5-4e11-891b-30fbef8e6920", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.684679+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry and there are no signs of water accumulation.", "snapshot": {"id": "de932bd7-4bae-4199-9bfa-0284a212c125", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/de932bd7-4bae-4199-9bfa-0284a212c125.png", "timestamp": "2024-02-15T20:45:05.594962+00:00"}}, {"id": "3b0566f6-bdb9-4a6d-a89a-5a39585496c9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.455373+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a few cars on the road, but they are able to move freely without any significant congestion.", "snapshot": {"id": "de932bd7-4bae-4199-9bfa-0284a212c125", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/de932bd7-4bae-4199-9bfa-0284a212c125.png", "timestamp": "2024-02-15T20:45:05.594962+00:00"}}, {"id": "8490cab0-8122-484e-b592-a77f68c19617", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.669741+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "de932bd7-4bae-4199-9bfa-0284a212c125", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/de932bd7-4bae-4199-9bfa-0284a212c125.png", "timestamp": "2024-02-15T20:45:05.594962+00:00"}}, {"id": "791709bd-3328-4964-b60c-5498669bccac", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.140274+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "de932bd7-4bae-4199-9bfa-0284a212c125", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/de932bd7-4bae-4199-9bfa-0284a212c125.png", "timestamp": "2024-02-15T20:45:05.594962+00:00"}}, {"id": "fb580bd1-d4b5-4f82-8e49-52cdc9d6c4ce", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.462662+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "d3da98d9-6cb3-472f-a597-d77fc003f4c9", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/d3da98d9-6cb3-472f-a597-d77fc003f4c9.png", "timestamp": "2024-02-15T20:47:28.729621+00:00"}}, {"id": "e5de9f5f-7ed8-4f15-9eeb-b9e251ed0cea", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.971614+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a slight bend to the right. There are trees on either side of the road, and buildings and other structures can be seen in the background. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "d3da98d9-6cb3-472f-a597-d77fc003f4c9", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/d3da98d9-6cb3-472f-a597-d77fc003f4c9.png", "timestamp": "2024-02-15T20:47:28.729621+00:00"}}, {"id": "199fce7e-8f09-4e57-9b35-6b714b817881", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:39.640696+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d3da98d9-6cb3-472f-a597-d77fc003f4c9", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/d3da98d9-6cb3-472f-a597-d77fc003f4c9.png", "timestamp": "2024-02-15T20:47:28.729621+00:00"}}, {"id": "bd2330af-69b1-49f5-9db0-3a19c05813d4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.857378+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "d3da98d9-6cb3-472f-a597-d77fc003f4c9", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/d3da98d9-6cb3-472f-a597-d77fc003f4c9.png", "timestamp": "2024-02-15T20:47:28.729621+00:00"}}, {"id": "b4dd920d-8633-4dc4-b167-e0b27f74237e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.216292+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "d3da98d9-6cb3-472f-a597-d77fc003f4c9", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/d3da98d9-6cb3-472f-a597-d77fc003f4c9.png", "timestamp": "2024-02-15T20:47:28.729621+00:00"}}, {"id": "19015675-b501-4132-aee8-6f22e5ec1b04", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.655515+00:00", "label": "moderate", "label_explanation": "There is moderate traffic on the road, with vehicles moving at a reduced speed.", "snapshot": {"id": "d3da98d9-6cb3-472f-a597-d77fc003f4c9", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/d3da98d9-6cb3-472f-a597-d77fc003f4c9.png", "timestamp": "2024-02-15T20:47:28.729621+00:00"}}, {"id": "a3e9d69f-d312-42d5-913f-be323d0b92df", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.443121+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3.png", "timestamp": "2024-02-15T20:42:42.642983+00:00"}}, {"id": "0c6a21bd-f48c-419b-95e8-17bfd00d96e5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.216277+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3.png", "timestamp": "2024-02-15T20:42:42.642983+00:00"}}, {"id": "53bc248f-dd1b-4f5e-96e4-5cb051c86dae", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.475796+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3.png", "timestamp": "2024-02-15T20:42:42.642983+00:00"}}, {"id": "f809b46e-cc5a-4310-8f5f-e12125eb5443", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.998878+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3.png", "timestamp": "2024-02-15T20:42:42.642983+00:00"}}, {"id": "b28db107-fd04-443a-b2f7-5cc803808dd4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.681546+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3.png", "timestamp": "2024-02-15T20:42:42.642983+00:00"}}, {"id": "f600e3a3-3656-42d5-a137-f4110b15078f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:54.709834+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/1bf4fb90-8a1d-4fcf-b6fc-42f2b40789d3.png", "timestamp": "2024-02-15T20:42:42.642983+00:00"}}, {"id": "64ff0abf-a4b1-4c0b-9473-77b3da18d742", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.135370+00:00", "label": "low", "label_explanation": "The road surface is dry with no visible water.", "snapshot": {"id": "527f1637-deef-46d1-9a99-90e8d499c132", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/527f1637-deef-46d1-9a99-90e8d499c132.png", "timestamp": "2024-02-15T20:52:17.941264+00:00"}}, {"id": "889f4f1a-5058-4239-ad4c-c16139927041", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.781895+00:00", "label": "false", "label_explanation": "There are no visible signs of rain in the image. The road surface is dry and there are no puddles or reflections on the road.", "snapshot": {"id": "527f1637-deef-46d1-9a99-90e8d499c132", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/527f1637-deef-46d1-9a99-90e8d499c132.png", "timestamp": "2024-02-15T20:52:17.941264+00:00"}}, {"id": "152a746f-ef31-48f9-8224-e6a6694360ab", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.534058+00:00", "label": "free", "label_explanation": "There are no visible road blockades in the image. The road is clear and there are no obstructions.", "snapshot": {"id": "527f1637-deef-46d1-9a99-90e8d499c132", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/527f1637-deef-46d1-9a99-90e8d499c132.png", "timestamp": "2024-02-15T20:52:17.941264+00:00"}}, {"id": "293a6c2b-1ce0-4845-ba0a-9150f3b76c39", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.088040+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "527f1637-deef-46d1-9a99-90e8d499c132", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/527f1637-deef-46d1-9a99-90e8d499c132.png", "timestamp": "2024-02-15T20:52:17.941264+00:00"}}, {"id": "0f4a3f02-6117-4377-9f2f-b614271e8adb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.332493+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars on the road. The cars are moving at a normal speed and there are no visible signs of congestion.", "snapshot": {"id": "527f1637-deef-46d1-9a99-90e8d499c132", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/527f1637-deef-46d1-9a99-90e8d499c132.png", "timestamp": "2024-02-15T20:52:17.941264+00:00"}}, {"id": "1571574e-a262-4674-ab1a-6dd94b843dc7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.327499+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are a few parked cars on the side of the road and some trees.", "snapshot": {"id": "527f1637-deef-46d1-9a99-90e8d499c132", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/527f1637-deef-46d1-9a99-90e8d499c132.png", "timestamp": "2024-02-15T20:52:17.941264+00:00"}}, {"id": "3fcf0399-8ed9-4f8a-bbfa-f47a516fc3b1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.231084+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "4eeef784-6352-4ee8-89cc-9b53ecb4a054", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/4eeef784-6352-4ee8-89cc-9b53ecb4a054.png", "timestamp": "2024-02-15T20:49:54.195019+00:00"}}, {"id": "461d3849-a42f-4551-affa-8f7dfe653d76", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.911215+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "4eeef784-6352-4ee8-89cc-9b53ecb4a054", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/4eeef784-6352-4ee8-89cc-9b53ecb4a054.png", "timestamp": "2024-02-15T20:49:54.195019+00:00"}}, {"id": "18d55262-51d6-417a-ab71-7033cdeace88", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.111835+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "4eeef784-6352-4ee8-89cc-9b53ecb4a054", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/4eeef784-6352-4ee8-89cc-9b53ecb4a054.png", "timestamp": "2024-02-15T20:49:54.195019+00:00"}}, {"id": "2e9baaec-187c-4d51-be74-f88d1340d1bb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.864603+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving steadily without significant congestion.", "snapshot": {"id": "4eeef784-6352-4ee8-89cc-9b53ecb4a054", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/4eeef784-6352-4ee8-89cc-9b53ecb4a054.png", "timestamp": "2024-02-15T20:49:54.195019+00:00"}}, {"id": "6e66717b-844a-4e87-89fc-36d8ec743d5c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.545609+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "4eeef784-6352-4ee8-89cc-9b53ecb4a054", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/4eeef784-6352-4ee8-89cc-9b53ecb4a054.png", "timestamp": "2024-02-15T20:49:54.195019+00:00"}}, {"id": "5ff7ab3c-f8be-403b-9052-d30b8f81e81f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.654372+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4eeef784-6352-4ee8-89cc-9b53ecb4a054", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/4eeef784-6352-4ee8-89cc-9b53ecb4a054.png", "timestamp": "2024-02-15T20:49:54.195019+00:00"}}, {"id": "5799973a-08ab-4787-bb91-5dc11290403d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.317317+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly.", "snapshot": {"id": "6a5f9787-a586-487e-9c0f-536f3b7fa8bc", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/6a5f9787-a586-487e-9c0f-536f3b7fa8bc.png", "timestamp": "2024-02-15T20:54:46.640310+00:00"}}, {"id": "81812bdf-8320-4f6a-81aa-ab4c6bc8f286", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.127174+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "6a5f9787-a586-487e-9c0f-536f3b7fa8bc", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/6a5f9787-a586-487e-9c0f-536f3b7fa8bc.png", "timestamp": "2024-02-15T20:54:46.640310+00:00"}}, {"id": "d0863aed-0246-4caa-a8d2-e3ef43d9f3cc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.152013+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6a5f9787-a586-487e-9c0f-536f3b7fa8bc", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/6a5f9787-a586-487e-9c0f-536f3b7fa8bc.png", "timestamp": "2024-02-15T20:54:46.640310+00:00"}}, {"id": "2682bf92-a44b-413b-8bf8-99162013e183", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.586399+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "6a5f9787-a586-487e-9c0f-536f3b7fa8bc", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/6a5f9787-a586-487e-9c0f-536f3b7fa8bc.png", "timestamp": "2024-02-15T20:54:46.640310+00:00"}}, {"id": "54fd89a9-d5c2-4565-b43a-31793707a1f3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.520110+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "6a5f9787-a586-487e-9c0f-536f3b7fa8bc", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/6a5f9787-a586-487e-9c0f-536f3b7fa8bc.png", "timestamp": "2024-02-15T20:54:46.640310+00:00"}}, {"id": "8af4e8ed-1e9f-406a-b714-d8d6f80f2bf3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.867026+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "6a5f9787-a586-487e-9c0f-536f3b7fa8bc", "camera_id": "001504", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001504/6a5f9787-a586-487e-9c0f-536f3b7fa8bc.png", "timestamp": "2024-02-15T20:54:46.640310+00:00"}}]}, {"id": "001163", "name": "AV. LAURO SODR\u00c9 X R. GENERAL GOIS MONTEIRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95574994, "longitude": -43.17801361, "objects": ["traffic", "road_blockade", "image_corrupted", "image_description", "rain", "water_level"], "identifications": [{"id": "769eb2a8-5f89-41dd-9455-c8d74b5045e5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.513659+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "7bde5ed1-26cc-4e14-8ebf-b96af04daa13", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7bde5ed1-26cc-4e14-8ebf-b96af04daa13.png", "timestamp": "2024-02-15T20:30:25.559953+00:00"}}, {"id": "994934af-4b88-4de7-8b26-9b06bde6043c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.201563+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "7bde5ed1-26cc-4e14-8ebf-b96af04daa13", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7bde5ed1-26cc-4e14-8ebf-b96af04daa13.png", "timestamp": "2024-02-15T20:30:25.559953+00:00"}}, {"id": "fb6ebf5a-a739-4b02-aeb8-bfb8b6203a72", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.947795+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "7bde5ed1-26cc-4e14-8ebf-b96af04daa13", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7bde5ed1-26cc-4e14-8ebf-b96af04daa13.png", "timestamp": "2024-02-15T20:30:25.559953+00:00"}}, {"id": "6425a7e3-8111-4a7d-8c39-d871f2ea0f81", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.641999+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "7bde5ed1-26cc-4e14-8ebf-b96af04daa13", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7bde5ed1-26cc-4e14-8ebf-b96af04daa13.png", "timestamp": "2024-02-15T20:30:25.559953+00:00"}}, {"id": "4c1cf4c0-1cff-4b9d-9ba7-767489f4efdb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.187567+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7bde5ed1-26cc-4e14-8ebf-b96af04daa13", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7bde5ed1-26cc-4e14-8ebf-b96af04daa13.png", "timestamp": "2024-02-15T20:30:25.559953+00:00"}}, {"id": "8c025872-64d1-480e-b87c-296b46841aab", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.427543+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, curved road with multiple lanes, bordered by buildings and trees. The road is wet from recent rain, and there are several vehicles on it, including cars, buses, and a police car. There are also a few pedestrians on the sidewalk.", "snapshot": {"id": "7bde5ed1-26cc-4e14-8ebf-b96af04daa13", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7bde5ed1-26cc-4e14-8ebf-b96af04daa13.png", "timestamp": "2024-02-15T20:30:25.559953+00:00"}}, {"id": "bf63a20e-4a67-4ef2-92d1-04b6de9d70df", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.055184+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "971d1a3b-6c05-423f-8c31-e40e93e3f32e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/971d1a3b-6c05-423f-8c31-e40e93e3f32e.png", "timestamp": "2024-02-15T20:32:59.479682+00:00"}}, {"id": "5d3703ae-8680-4b71-a8a0-5ec2c61484bd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:17.351997+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water.", "snapshot": {"id": "971d1a3b-6c05-423f-8c31-e40e93e3f32e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/971d1a3b-6c05-423f-8c31-e40e93e3f32e.png", "timestamp": "2024-02-15T20:32:59.479682+00:00"}}, {"id": "584e6c1c-eadf-4f68-aab9-0db7cdc284e7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.654219+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "971d1a3b-6c05-423f-8c31-e40e93e3f32e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/971d1a3b-6c05-423f-8c31-e40e93e3f32e.png", "timestamp": "2024-02-15T20:32:59.479682+00:00"}}, {"id": "666eb2c4-25a9-45ec-a9f4-98979ab7af3b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.933582+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear, with no visible rain or water on the road surface. There are several vehicles on the road, including cars and a bus. The road is lined with trees and buildings, and there are traffic signs and signals visible.", "snapshot": {"id": "971d1a3b-6c05-423f-8c31-e40e93e3f32e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/971d1a3b-6c05-423f-8c31-e40e93e3f32e.png", "timestamp": "2024-02-15T20:32:59.479682+00:00"}}, {"id": "ad310ce9-d418-42aa-b662-feb0783defda", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.713207+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades. Traffic is able to flow freely.", "snapshot": {"id": "971d1a3b-6c05-423f-8c31-e40e93e3f32e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/971d1a3b-6c05-423f-8c31-e40e93e3f32e.png", "timestamp": "2024-02-15T20:32:59.479682+00:00"}}, {"id": "b4750b56-52b1-40ae-9e14-c344fcd19244", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.118327+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "971d1a3b-6c05-423f-8c31-e40e93e3f32e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/971d1a3b-6c05-423f-8c31-e40e93e3f32e.png", "timestamp": "2024-02-15T20:32:59.479682+00:00"}}, {"id": "df3ba5cf-aed3-40e3-912f-13b88efee02c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.792572+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic in both directions.", "snapshot": {"id": "5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d.png", "timestamp": "2024-02-15T20:35:27.336540+00:00"}}, {"id": "49446041-54d1-43e1-bc29-cdea27263f11", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.249300+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d.png", "timestamp": "2024-02-15T20:35:27.336540+00:00"}}, {"id": "a352ad45-9a58-4503-91a4-ee8fbdf64b2e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.013280+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While the road is wet from the rain, the water has drained away, leaving the road passable for vehicles and pedestrians.", "snapshot": {"id": "5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d.png", "timestamp": "2024-02-15T20:35:27.336540+00:00"}}, {"id": "d105ee19-52b3-433e-878b-a5b860c559f7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.473026+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain has stopped and the road is no longer actively wet.", "snapshot": {"id": "5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d.png", "timestamp": "2024-02-15T20:35:27.336540+00:00"}}, {"id": "98cf3c99-02e1-4bd8-994e-c5ce65a8f532", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.755604+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d.png", "timestamp": "2024-02-15T20:35:27.336540+00:00"}}, {"id": "dc84fb41-9bd2-4d29-844d-18fdbee9b34a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.103490+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, multi-lane road with a bus stop on the right side. There are several vehicles on the road, including cars, buses, and bicycles. The road surface is wet from recent rain, but there are no significant puddles or standing water. The sidewalks on both sides of the road are lined with trees and buildings.", "snapshot": {"id": "5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/5a1613eb-ddff-4b3b-bf4e-ad5f60114c2d.png", "timestamp": "2024-02-15T20:35:27.336540+00:00"}}, {"id": "265fbd20-25c2-4498-b10b-0b720a7622ec", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.500771+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "7854a6c8-5bef-47eb-90e1-1b5d138d671e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7854a6c8-5bef-47eb-90e1-1b5d138d671e.png", "timestamp": "2024-02-15T20:37:59.151250+00:00"}}, {"id": "193d9b67-bbfb-4558-ace3-6724b94cd70f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:16.165657+00:00", "label": "low", "label_explanation": "The water level on the road is low. There is no visible water on the road surface.", "snapshot": {"id": "7854a6c8-5bef-47eb-90e1-1b5d138d671e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7854a6c8-5bef-47eb-90e1-1b5d138d671e.png", "timestamp": "2024-02-15T20:37:59.151250+00:00"}}, {"id": "779c13cc-0a4e-4257-91db-b9c80e3b82bd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.863075+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no puddles or other signs of water on the road.", "snapshot": {"id": "7854a6c8-5bef-47eb-90e1-1b5d138d671e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7854a6c8-5bef-47eb-90e1-1b5d138d671e.png", "timestamp": "2024-02-15T20:37:59.151250+00:00"}}, {"id": "b39ef13c-a839-4206-a42d-0e3c1714fdb4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:16.418267+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are several vehicles on the road, but they are all moving at a steady pace. There is no apparent congestion or gridlock.", "snapshot": {"id": "7854a6c8-5bef-47eb-90e1-1b5d138d671e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7854a6c8-5bef-47eb-90e1-1b5d138d671e.png", "timestamp": "2024-02-15T20:37:59.151250+00:00"}}, {"id": "922c661d-adb2-4529-bea8-7e917e02b93e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.401679+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It features a wide, multi-lane road with a slight curve to the right. The road is in good condition, with visible lane markings and traffic signs. There are several vehicles on the road, including cars, buses, and motorcycles. The vehicles are moving at a moderate speed, and there is no apparent congestion. The sidewalks on either side of the road are in good condition, with trees and shrubs lining the way. There are a few pedestrians walking on the sidewalks, and they are all wearing casual clothing. The weather appears to be clear, with no visible rain or snow. The overall scene is one of a busy, but orderly urban road.", "snapshot": {"id": "7854a6c8-5bef-47eb-90e1-1b5d138d671e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7854a6c8-5bef-47eb-90e1-1b5d138d671e.png", "timestamp": "2024-02-15T20:37:59.151250+00:00"}}, {"id": "0414df53-67ff-4b35-bc49-da6a3a8706f7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.099785+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7854a6c8-5bef-47eb-90e1-1b5d138d671e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/7854a6c8-5bef-47eb-90e1-1b5d138d671e.png", "timestamp": "2024-02-15T20:37:59.151250+00:00"}}, {"id": "6c1d219b-6b90-48c9-8d5a-7650d3447c17", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.984053+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. There are several vehicles on the road, including cars, buses, and a police car. There are also a few trees and buildings in the background.", "snapshot": {"id": "9c22bb5b-84ce-4bae-963a-7eddb64974c3", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/9c22bb5b-84ce-4bae-963a-7eddb64974c3.png", "timestamp": "2024-02-15T20:40:29.176200+00:00"}}, {"id": "8e07a3e5-81ec-4d49-88f5-140e07193658", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.773555+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9c22bb5b-84ce-4bae-963a-7eddb64974c3", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/9c22bb5b-84ce-4bae-963a-7eddb64974c3.png", "timestamp": "2024-02-15T20:40:29.176200+00:00"}}, {"id": "65131782-1684-4017-af31-5fd97c454d85", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.375342+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently raining.", "snapshot": {"id": "9c22bb5b-84ce-4bae-963a-7eddb64974c3", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/9c22bb5b-84ce-4bae-963a-7eddb64974c3.png", "timestamp": "2024-02-15T20:40:29.176200+00:00"}}, {"id": "0fa66c46-bec9-479b-9c54-5ff00e3c2771", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.851970+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "9c22bb5b-84ce-4bae-963a-7eddb64974c3", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/9c22bb5b-84ce-4bae-963a-7eddb64974c3.png", "timestamp": "2024-02-15T20:40:29.176200+00:00"}}, {"id": "f6f6b38d-1d18-4a07-b768-d0a8b95343d0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.069239+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "9c22bb5b-84ce-4bae-963a-7eddb64974c3", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/9c22bb5b-84ce-4bae-963a-7eddb64974c3.png", "timestamp": "2024-02-15T20:40:29.176200+00:00"}}, {"id": "d2485296-41e6-4f56-a941-8968a1b648fc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.559970+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "9c22bb5b-84ce-4bae-963a-7eddb64974c3", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/9c22bb5b-84ce-4bae-963a-7eddb64974c3.png", "timestamp": "2024-02-15T20:40:29.176200+00:00"}}, {"id": "d63bf246-13be-4f7e-9b9a-003959947efc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.175886+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "a5c772c0-749b-477e-83b5-9f73e4b68877", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/a5c772c0-749b-477e-83b5-9f73e4b68877.png", "timestamp": "2024-02-15T20:47:40.082478+00:00"}}, {"id": "fa0507d6-e161-412b-b2ad-0257bd0bda74", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.861859+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and free of any obstructions.", "snapshot": {"id": "a5c772c0-749b-477e-83b5-9f73e4b68877", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/a5c772c0-749b-477e-83b5-9f73e4b68877.png", "timestamp": "2024-02-15T20:47:40.082478+00:00"}}, {"id": "1ac86812-56d8-48b6-aff3-177ad6e88ed1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.642700+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are moving at a steady pace. There is no apparent congestion.", "snapshot": {"id": "a5c772c0-749b-477e-83b5-9f73e4b68877", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/a5c772c0-749b-477e-83b5-9f73e4b68877.png", "timestamp": "2024-02-15T20:47:40.082478+00:00"}}, {"id": "7cddfca3-2a56-4f10-a1f4-8a14f89919fa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.952076+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It features a wide, multi-lane road with a slight curve to the right. The road is in good condition, with visible lane markings and traffic signs. There are several vehicles on the road, including cars, buses, and motorcycles. The vehicles are moving at a moderate speed, and there is no apparent congestion. The sidewalks on either side of the road are lined with trees and buildings.", "snapshot": {"id": "a5c772c0-749b-477e-83b5-9f73e4b68877", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/a5c772c0-749b-477e-83b5-9f73e4b68877.png", "timestamp": "2024-02-15T20:47:40.082478+00:00"}}, {"id": "c449cb3e-3afe-4c2a-a7cb-422c343b91dc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.429083+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "a5c772c0-749b-477e-83b5-9f73e4b68877", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/a5c772c0-749b-477e-83b5-9f73e4b68877.png", "timestamp": "2024-02-15T20:47:40.082478+00:00"}}, {"id": "c77d5c0d-1e08-4a30-a4ef-4245906b004e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.710835+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a5c772c0-749b-477e-83b5-9f73e4b68877", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/a5c772c0-749b-477e-83b5-9f73e4b68877.png", "timestamp": "2024-02-15T20:47:40.082478+00:00"}}, {"id": "11a674ff-c031-481c-883c-2f4f15fe419f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.395390+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24.png", "timestamp": "2024-02-15T20:45:18.938034+00:00"}}, {"id": "9b208a15-ceef-4f40-8bb6-75fab81212b4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.831613+00:00", "label": "low", "label_explanation": "The water level is low, with some dry patches visible on the road surface. The water is mostly confined to the left side of the road, with some small puddles on the right side.", "snapshot": {"id": "c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24.png", "timestamp": "2024-02-15T20:45:18.938034+00:00"}}, {"id": "bf1fe1e0-5955-4eb2-8f3b-a890370654f5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.167481+00:00", "label": "moderate", "label_explanation": "Traffic is moving slowly due to the wet road conditions. Some vehicles are seen navigating around the water, while others are stopped or moving slowly.", "snapshot": {"id": "c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24.png", "timestamp": "2024-02-15T20:45:18.938034+00:00"}}, {"id": "120fe206-c0f7-4e62-a26e-cb7664f1ad62", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.623318+00:00", "label": "true", "label_explanation": "There is water on the road surface, but it is not completely submerged. The water appears to be shallow and does not pose a significant hazard to traffic.", "snapshot": {"id": "c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24.png", "timestamp": "2024-02-15T20:45:18.938034+00:00"}}, {"id": "5a6aca41-f2c3-4e14-af0f-1dcc7e9b626b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.443479+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. There are also a few trees and buildings in the background.", "snapshot": {"id": "c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24.png", "timestamp": "2024-02-15T20:45:18.938034+00:00"}}, {"id": "5da1bbe2-1062-442d-91e9-58d85e375dd8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.200779+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c08c30f3-ea46-4e53-9f90-7f6d7d9ebd24.png", "timestamp": "2024-02-15T20:45:18.938034+00:00"}}, {"id": "2b192900-9180-4da9-98c2-e22c3da1ed75", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.842280+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c8f4faf5-7f25-4d92-9981-b80427e66e7d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c8f4faf5-7f25-4d92-9981-b80427e66e7d.png", "timestamp": "2024-02-15T20:42:53.265431+00:00"}}, {"id": "8bc07f66-9298-42af-9434-ea30cb9c1fbd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.312776+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there are no large puddles or standing water.", "snapshot": {"id": "c8f4faf5-7f25-4d92-9981-b80427e66e7d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c8f4faf5-7f25-4d92-9981-b80427e66e7d.png", "timestamp": "2024-02-15T20:42:53.265431+00:00"}}, {"id": "d0bf5624-b446-496e-8364-32f35f528778", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.814815+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "c8f4faf5-7f25-4d92-9981-b80427e66e7d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c8f4faf5-7f25-4d92-9981-b80427e66e7d.png", "timestamp": "2024-02-15T20:42:53.265431+00:00"}}, {"id": "e5d16768-30d7-4f09-93e4-2dbb799b3bdd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.527395+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few small puddles.", "snapshot": {"id": "c8f4faf5-7f25-4d92-9981-b80427e66e7d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c8f4faf5-7f25-4d92-9981-b80427e66e7d.png", "timestamp": "2024-02-15T20:42:53.265431+00:00"}}, {"id": "ccd0b79e-a362-4e63-aaff-a6dfdd1c52c4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.082870+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear. There are several vehicles on the road, including buses, cars, and motorcycles. The road is wet from recent rain, but there are no large puddles or standing water. There are also a few trees and buildings in the background.", "snapshot": {"id": "c8f4faf5-7f25-4d92-9981-b80427e66e7d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c8f4faf5-7f25-4d92-9981-b80427e66e7d.png", "timestamp": "2024-02-15T20:42:53.265431+00:00"}}, {"id": "184267f5-e6a8-4e22-b71a-27e2bdfd9331", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.013458+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "c8f4faf5-7f25-4d92-9981-b80427e66e7d", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/c8f4faf5-7f25-4d92-9981-b80427e66e7d.png", "timestamp": "2024-02-15T20:42:53.265431+00:00"}}, {"id": "862658ad-59ae-4f6c-8f15-a83c63ed95dd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.175906+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "0aa435d4-c89c-47fe-aaca-90756436b44e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/0aa435d4-c89c-47fe-aaca-90756436b44e.png", "timestamp": "2024-02-15T20:52:28.321279+00:00"}}, {"id": "6be214bc-bbd5-48af-96a5-2eb21aea139a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.682506+00:00", "label": "free", "label_explanation": "There are no road blockades in the image. The road is completely clear and open to traffic.", "snapshot": {"id": "0aa435d4-c89c-47fe-aaca-90756436b44e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/0aa435d4-c89c-47fe-aaca-90756436b44e.png", "timestamp": "2024-02-15T20:52:28.321279+00:00"}}, {"id": "0dcc4f74-0278-4b8c-a323-15c5eeaef6ae", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.969905+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "0aa435d4-c89c-47fe-aaca-90756436b44e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/0aa435d4-c89c-47fe-aaca-90756436b44e.png", "timestamp": "2024-02-15T20:52:28.321279+00:00"}}, {"id": "1f12004b-b977-47af-b792-bd54b4ede4a0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.760723+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wide and has multiple lanes. There are trees and buildings on either side of the road.", "snapshot": {"id": "0aa435d4-c89c-47fe-aaca-90756436b44e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/0aa435d4-c89c-47fe-aaca-90756436b44e.png", "timestamp": "2024-02-15T20:52:28.321279+00:00"}}, {"id": "e24ca2ea-93ba-49ce-bb19-93c5f5df6221", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.493547+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0aa435d4-c89c-47fe-aaca-90756436b44e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/0aa435d4-c89c-47fe-aaca-90756436b44e.png", "timestamp": "2024-02-15T20:52:28.321279+00:00"}}, {"id": "83f179f4-55c2-4b46-917b-5942c5e86c4e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.486139+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are all moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "0aa435d4-c89c-47fe-aaca-90756436b44e", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/0aa435d4-c89c-47fe-aaca-90756436b44e.png", "timestamp": "2024-02-15T20:52:28.321279+00:00"}}, {"id": "9f95edcf-3be9-4eb9-854f-e6563fea61bb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.955495+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a thin layer of water covering the surface.", "snapshot": {"id": "afaee4ad-a3d9-442c-86bb-ff5e4275ea09", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/afaee4ad-a3d9-442c-86bb-ff5e4275ea09.png", "timestamp": "2024-02-15T20:50:04.655201+00:00"}}, {"id": "750aa43f-2344-4070-9821-f1ed24132738", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.328363+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including buses and cars. The road surface is wet from recent rain, but there are no significant puddles or standing water. The sidewalks are lined with trees and buildings.", "snapshot": {"id": "afaee4ad-a3d9-442c-86bb-ff5e4275ea09", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/afaee4ad-a3d9-442c-86bb-ff5e4275ea09.png", "timestamp": "2024-02-15T20:50:04.655201+00:00"}}, {"id": "c83ccfa8-dd6a-4a50-8550-dcd6db09b48a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.165613+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "afaee4ad-a3d9-442c-86bb-ff5e4275ea09", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/afaee4ad-a3d9-442c-86bb-ff5e4275ea09.png", "timestamp": "2024-02-15T20:50:04.655201+00:00"}}, {"id": "7fab122a-3c24-4a31-b881-f45f7d19528a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.536223+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "afaee4ad-a3d9-442c-86bb-ff5e4275ea09", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/afaee4ad-a3d9-442c-86bb-ff5e4275ea09.png", "timestamp": "2024-02-15T20:50:04.655201+00:00"}}, {"id": "b5bb1155-8e85-44bb-a304-760e6d41a5d4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.632125+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "afaee4ad-a3d9-442c-86bb-ff5e4275ea09", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/afaee4ad-a3d9-442c-86bb-ff5e4275ea09.png", "timestamp": "2024-02-15T20:50:04.655201+00:00"}}, {"id": "9050ff37-1683-4e3d-9b44-ef32bc2f7db8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.075682+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "afaee4ad-a3d9-442c-86bb-ff5e4275ea09", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/afaee4ad-a3d9-442c-86bb-ff5e4275ea09.png", "timestamp": "2024-02-15T20:50:04.655201+00:00"}}, {"id": "cd6fe08d-57f5-440e-80d9-4143194c07e9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.210981+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible signs of water.", "snapshot": {"id": "49cd90c4-a56d-4fa0-af08-bc24166f866f", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/49cd90c4-a56d-4fa0-af08-bc24166f866f.png", "timestamp": "2024-02-15T20:54:56.367101+00:00"}}, {"id": "e5bad39d-9a8b-4d37-b722-7dc0d58a9b2e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.708945+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a slight bend to the right. It is daytime, and the weather appears to be clear. There are several vehicles on the road, including a bus, cars, and a police car. There are also a few pedestrians on the sidewalk. The road surface is dry, with no visible signs of water or debris.", "snapshot": {"id": "49cd90c4-a56d-4fa0-af08-bc24166f866f", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/49cd90c4-a56d-4fa0-af08-bc24166f866f.png", "timestamp": "2024-02-15T20:54:56.367101+00:00"}}, {"id": "ee0ea09b-f39c-4918-b4ba-a41839779586", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.513129+00:00", "label": "false", "label_explanation": "The image is clear and sharp, with no visible signs of corruption or data loss.", "snapshot": {"id": "49cd90c4-a56d-4fa0-af08-bc24166f866f", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/49cd90c4-a56d-4fa0-af08-bc24166f866f.png", "timestamp": "2024-02-15T20:54:56.367101+00:00"}}, {"id": "2736c03d-ca82-4809-b9d6-1e1193269ce5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.715553+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "49cd90c4-a56d-4fa0-af08-bc24166f866f", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/49cd90c4-a56d-4fa0-af08-bc24166f866f.png", "timestamp": "2024-02-15T20:54:56.367101+00:00"}}, {"id": "2ec8557c-2f5d-4660-9941-e1915942963e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.987287+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "49cd90c4-a56d-4fa0-af08-bc24166f866f", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/49cd90c4-a56d-4fa0-af08-bc24166f866f.png", "timestamp": "2024-02-15T20:54:56.367101+00:00"}}, {"id": "99c5eebe-35a0-4ad8-b80e-d749244fe78b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.430086+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "49cd90c4-a56d-4fa0-af08-bc24166f866f", "camera_id": "001163", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001163/49cd90c4-a56d-4fa0-af08-bc24166f866f.png", "timestamp": "2024-02-15T20:54:56.367101+00:00"}}]}, {"id": "000096", "name": "R. PINHEIRO MACHADO ALTURA DA R. DAS LARANJEIRAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933196, "longitude": -43.184628, "objects": ["traffic", "water_level", "image_corrupted", "image_description", "rain", "road_blockade"], "identifications": [{"id": "52330547-632d-45df-9dbb-6407aa95913d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.889052+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "76941611-13d4-4ef2-b98e-fa4cc9632713", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/76941611-13d4-4ef2-b98e-fa4cc9632713.png", "timestamp": "2024-02-15T20:30:19.902045+00:00"}}, {"id": "15d0c5bb-1f60-4b79-868d-a35df96e0b7e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.641734+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "76941611-13d4-4ef2-b98e-fa4cc9632713", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/76941611-13d4-4ef2-b98e-fa4cc9632713.png", "timestamp": "2024-02-15T20:30:19.902045+00:00"}}, {"id": "48d62dcc-2252-491c-8f29-8cfd155aa63b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.370830+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "76941611-13d4-4ef2-b98e-fa4cc9632713", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/76941611-13d4-4ef2-b98e-fa4cc9632713.png", "timestamp": "2024-02-15T20:30:19.902045+00:00"}}, {"id": "a0401074-9965-47d7-bc72-324fb029eac1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.158284+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "76941611-13d4-4ef2-b98e-fa4cc9632713", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/76941611-13d4-4ef2-b98e-fa4cc9632713.png", "timestamp": "2024-02-15T20:30:19.902045+00:00"}}, {"id": "d6201a2c-e52f-40b6-a7b4-3e5bcd787a08", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.853004+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "76941611-13d4-4ef2-b98e-fa4cc9632713", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/76941611-13d4-4ef2-b98e-fa4cc9632713.png", "timestamp": "2024-02-15T20:30:19.902045+00:00"}}, {"id": "84d912f9-a4c1-4a3f-8f92-ec82e0790853", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.521602+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "76941611-13d4-4ef2-b98e-fa4cc9632713", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/76941611-13d4-4ef2-b98e-fa4cc9632713.png", "timestamp": "2024-02-15T20:30:19.902045+00:00"}}, {"id": "74a97353-2a67-4eaa-bf31-c36320a8ef8f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.014469+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b1506aaf-678d-4aab-8d56-7ab54f2dcbe3", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/b1506aaf-678d-4aab-8d56-7ab54f2dcbe3.png", "timestamp": "2024-02-15T20:45:11.999739+00:00"}}, {"id": "6a2a828e-91c2-4884-aaf5-2ae39901fd27", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.441204+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "b1506aaf-678d-4aab-8d56-7ab54f2dcbe3", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/b1506aaf-678d-4aab-8d56-7ab54f2dcbe3.png", "timestamp": "2024-02-15T20:45:11.999739+00:00"}}, {"id": "21828fa9-91f1-417d-a6da-3243d2873e0c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.878584+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "b1506aaf-678d-4aab-8d56-7ab54f2dcbe3", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/b1506aaf-678d-4aab-8d56-7ab54f2dcbe3.png", "timestamp": "2024-02-15T20:45:11.999739+00:00"}}, {"id": "0e96f877-acc6-4fa0-851e-64a48f153dc5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.139958+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "b1506aaf-678d-4aab-8d56-7ab54f2dcbe3", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/b1506aaf-678d-4aab-8d56-7ab54f2dcbe3.png", "timestamp": "2024-02-15T20:45:11.999739+00:00"}}, {"id": "7f28ed5b-32ac-40f8-9b24-bfb37a4c0bd2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.658872+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "b1506aaf-678d-4aab-8d56-7ab54f2dcbe3", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/b1506aaf-678d-4aab-8d56-7ab54f2dcbe3.png", "timestamp": "2024-02-15T20:45:11.999739+00:00"}}, {"id": "026ec2db-92b0-4ccd-b9d4-abc239ba3987", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.294142+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a slight bend to the right. It is daytime and the weather appears to be clear. There are several vehicles on the road, including cars, buses, and trucks. The road is lined with trees and buildings.", "snapshot": {"id": "b1506aaf-678d-4aab-8d56-7ab54f2dcbe3", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/b1506aaf-678d-4aab-8d56-7ab54f2dcbe3.png", "timestamp": "2024-02-15T20:45:11.999739+00:00"}}, {"id": "da7b10dc-537d-4083-a7a3-856965b72757", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:09.864430+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is flowing freely, and there are no signs of any potential hazards or obstacles.", "snapshot": {"id": "855dc8ec-f1ea-4fa2-9553-151b28855ece", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/855dc8ec-f1ea-4fa2-9553-151b28855ece.png", "timestamp": "2024-02-15T20:32:47.075658+00:00"}}, {"id": "d3611bb8-304c-4f81-9046-4d92c0d65215", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:08.833876+00:00", "label": "low", "label_explanation": "Since there is no visible water on the road surface, the water level can be classified as 'low'.", "snapshot": {"id": "855dc8ec-f1ea-4fa2-9553-151b28855ece", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/855dc8ec-f1ea-4fa2-9553-151b28855ece.png", "timestamp": "2024-02-15T20:32:47.075658+00:00"}}, {"id": "6ca9d6a6-d70a-4e6a-81a1-9cb345711a6d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:09.273769+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be smooth, with no major congestion or disruptions. Vehicles are moving at a steady pace, and there are no visible accidents or incidents.", "snapshot": {"id": "855dc8ec-f1ea-4fa2-9553-151b28855ece", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/855dc8ec-f1ea-4fa2-9553-151b28855ece.png", "timestamp": "2024-02-15T20:32:47.075658+00:00"}}, {"id": "d1ca96ae-243e-4b16-a8a9-16dd4caf1b7b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:07.780107+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear, with no visible rain or water on the road surface. The road is in good condition, with no visible cracks or potholes. There are trees and buildings on either side of the road, and the sky is blue with scattered clouds.", "snapshot": {"id": "855dc8ec-f1ea-4fa2-9553-151b28855ece", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/855dc8ec-f1ea-4fa2-9553-151b28855ece.png", "timestamp": "2024-02-15T20:32:47.075658+00:00"}}, {"id": "c85cba72-6bfa-4526-acc2-41eaf9ccd767", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:08.334315+00:00", "label": "false", "label_explanation": "As mentioned earlier, there is no visible rain or water on the road surface, indicating dry conditions.", "snapshot": {"id": "855dc8ec-f1ea-4fa2-9553-151b28855ece", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/855dc8ec-f1ea-4fa2-9553-151b28855ece.png", "timestamp": "2024-02-15T20:32:47.075658+00:00"}}, {"id": "cc998f91-bf85-4515-b696-7c1afcf2d81c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:07.185180+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "855dc8ec-f1ea-4fa2-9553-151b28855ece", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/855dc8ec-f1ea-4fa2-9553-151b28855ece.png", "timestamp": "2024-02-15T20:32:47.075658+00:00"}}, {"id": "522bdd1d-200f-4a0f-8778-7b675e6be5ef", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.005574+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The entire road is clear and accessible to traffic.", "snapshot": {"id": "c9a22881-d512-4e93-a38d-5a7f7f97de20", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c9a22881-d512-4e93-a38d-5a7f7f97de20.png", "timestamp": "2024-02-15T20:35:18.163079+00:00"}}, {"id": "9c9d342f-7bdc-4e1a-8e8c-edff95259e25", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.873516+00:00", "label": "low", "label_explanation": "Since there is no rain and the road surface is dry, the water level is low.", "snapshot": {"id": "c9a22881-d512-4e93-a38d-5a7f7f97de20", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c9a22881-d512-4e93-a38d-5a7f7f97de20.png", "timestamp": "2024-02-15T20:35:18.163079+00:00"}}, {"id": "e13e954a-f3ab-449f-8d26-ba2b640f29a4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.574085+00:00", "label": "false", "label_explanation": "Although the weather appears cloudy, there is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation or puddles.", "snapshot": {"id": "c9a22881-d512-4e93-a38d-5a7f7f97de20", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c9a22881-d512-4e93-a38d-5a7f7f97de20.png", "timestamp": "2024-02-15T20:35:18.163079+00:00"}}, {"id": "74db6f88-0ffb-4973-b060-41bdb38f0afc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:37.558260+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a steady flow of vehicles moving in both directions. There are no major delays or congestion, and vehicles are able to maintain a reasonable speed.", "snapshot": {"id": "c9a22881-d512-4e93-a38d-5a7f7f97de20", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c9a22881-d512-4e93-a38d-5a7f7f97de20.png", "timestamp": "2024-02-15T20:35:18.163079+00:00"}}, {"id": "4476a7f9-ccfc-4654-af82-536ec550e0d2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.718670+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. The road is in good condition, with no visible signs of damage or construction. There are several cars, buses, and motorcycles on the road, all moving smoothly without any congestion. The sidewalks on either side of the road are wide and well-maintained, with lush green trees providing shade. There are a few buildings in the background, mostly residential and commercial structures.", "snapshot": {"id": "c9a22881-d512-4e93-a38d-5a7f7f97de20", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c9a22881-d512-4e93-a38d-5a7f7f97de20.png", "timestamp": "2024-02-15T20:35:18.163079+00:00"}}, {"id": "3b43f13a-2279-4f93-8092-cf5abcdf1729", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:34.886734+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c9a22881-d512-4e93-a38d-5a7f7f97de20", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c9a22881-d512-4e93-a38d-5a7f7f97de20.png", "timestamp": "2024-02-15T20:35:18.163079+00:00"}}, {"id": "edb1a6b8-425f-4497-b34b-13eb91a2d8f9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.158852+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "c2564840-07d2-423a-bc7b-b05071c6a4ee", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c2564840-07d2-423a-bc7b-b05071c6a4ee.png", "timestamp": "2024-02-15T20:37:51.896964+00:00"}}, {"id": "e3c8255f-33f5-4c2e-bddd-4aa8a68027ca", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.623718+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "c2564840-07d2-423a-bc7b-b05071c6a4ee", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c2564840-07d2-423a-bc7b-b05071c6a4ee.png", "timestamp": "2024-02-15T20:37:51.896964+00:00"}}, {"id": "6d5152e2-1723-408f-804c-e09cd12f5356", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.626583+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "c2564840-07d2-423a-bc7b-b05071c6a4ee", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c2564840-07d2-423a-bc7b-b05071c6a4ee.png", "timestamp": "2024-02-15T20:37:51.896964+00:00"}}, {"id": "c2e2bca6-c6cd-4b63-a5dc-407965056307", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:08.363341+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c2564840-07d2-423a-bc7b-b05071c6a4ee", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c2564840-07d2-423a-bc7b-b05071c6a4ee.png", "timestamp": "2024-02-15T20:37:51.896964+00:00"}}, {"id": "450565e0-9877-4b28-a296-23657aef65c0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.261625+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "c2564840-07d2-423a-bc7b-b05071c6a4ee", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c2564840-07d2-423a-bc7b-b05071c6a4ee.png", "timestamp": "2024-02-15T20:37:51.896964+00:00"}}, {"id": "5bb359a9-eb2d-49ec-bf71-e57b1dafc6c3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:08.993925+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a slight bend to the right. It is daytime, and the weather appears to be clear. There are several cars, buses, and motorcycles on the road, and trees on either side.", "snapshot": {"id": "c2564840-07d2-423a-bc7b-b05071c6a4ee", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/c2564840-07d2-423a-bc7b-b05071c6a4ee.png", "timestamp": "2024-02-15T20:37:51.896964+00:00"}}, {"id": "1f333cbb-99eb-4275-bc75-a6d7bfe87822", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.887230+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry and there are no signs of water accumulation.", "snapshot": {"id": "8dcacbcc-9709-48fb-aa5c-038413195f93", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/8dcacbcc-9709-48fb-aa5c-038413195f93.png", "timestamp": "2024-02-15T20:40:22.741921+00:00"}}, {"id": "7a87a941-c205-4e73-9afb-730502868b36", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.649772+00:00", "label": "easy", "label_explanation": "The traffic flow is moderate. There are several vehicles on the road, but they are able to move without any major disruptions.", "snapshot": {"id": "8dcacbcc-9709-48fb-aa5c-038413195f93", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/8dcacbcc-9709-48fb-aa5c-038413195f93.png", "timestamp": "2024-02-15T20:40:22.741921+00:00"}}, {"id": "18ddcc81-1e41-4c12-be5e-9bb54c01b25f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.612248+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear. On the left side of the road, there are several buildings and trees, while the right side is dominated by a large hill covered in dense vegetation.", "snapshot": {"id": "8dcacbcc-9709-48fb-aa5c-038413195f93", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/8dcacbcc-9709-48fb-aa5c-038413195f93.png", "timestamp": "2024-02-15T20:40:22.741921+00:00"}}, {"id": "0d9a59bf-1ba6-406c-9103-31c26ce5d76e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.324572+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of flooding or significant water accumulation.", "snapshot": {"id": "8dcacbcc-9709-48fb-aa5c-038413195f93", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/8dcacbcc-9709-48fb-aa5c-038413195f93.png", "timestamp": "2024-02-15T20:40:22.741921+00:00"}}, {"id": "a0137290-7978-47bb-9354-d0b2145e4e01", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.116975+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles.", "snapshot": {"id": "8dcacbcc-9709-48fb-aa5c-038413195f93", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/8dcacbcc-9709-48fb-aa5c-038413195f93.png", "timestamp": "2024-02-15T20:40:22.741921+00:00"}}, {"id": "9d85bc53-92d0-45a6-9635-573a96d6ac47", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.245700+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8dcacbcc-9709-48fb-aa5c-038413195f93", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/8dcacbcc-9709-48fb-aa5c-038413195f93.png", "timestamp": "2024-02-15T20:40:22.741921+00:00"}}, {"id": "e01a89e0-d203-4cb2-993d-314e151fd246", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.860128+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "39a6f6dc-5def-4e2d-9cb8-f2be08f058f6", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/39a6f6dc-5def-4e2d-9cb8-f2be08f058f6.png", "timestamp": "2024-02-15T20:42:49.386787+00:00"}}, {"id": "5c29a372-df4e-4e50-8838-034ba5b4f918", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.762762+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "39a6f6dc-5def-4e2d-9cb8-f2be08f058f6", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/39a6f6dc-5def-4e2d-9cb8-f2be08f058f6.png", "timestamp": "2024-02-15T20:42:49.386787+00:00"}}, {"id": "881b22e2-47c3-4935-ab5f-cd9c9c7770d0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.424134+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "39a6f6dc-5def-4e2d-9cb8-f2be08f058f6", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/39a6f6dc-5def-4e2d-9cb8-f2be08f058f6.png", "timestamp": "2024-02-15T20:42:49.386787+00:00"}}, {"id": "f538ec17-c298-400f-a720-7424fcfdb970", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.104959+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear. On the left side of the road, there are several residential buildings and trees. On the right side, there is a steep hill covered in dense vegetation.", "snapshot": {"id": "39a6f6dc-5def-4e2d-9cb8-f2be08f058f6", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/39a6f6dc-5def-4e2d-9cb8-f2be08f058f6.png", "timestamp": "2024-02-15T20:42:49.386787+00:00"}}, {"id": "e743913e-65a6-47eb-89e0-a1173418e470", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.359031+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "39a6f6dc-5def-4e2d-9cb8-f2be08f058f6", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/39a6f6dc-5def-4e2d-9cb8-f2be08f058f6.png", "timestamp": "2024-02-15T20:42:49.386787+00:00"}}, {"id": "1e13ccbc-8ad1-4bd7-a83d-c4e8716715ed", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.961868+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "39a6f6dc-5def-4e2d-9cb8-f2be08f058f6", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/39a6f6dc-5def-4e2d-9cb8-f2be08f058f6.png", "timestamp": "2024-02-15T20:42:49.386787+00:00"}}, {"id": "47e088a8-13d1-4d54-baae-c2df2d295f61", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.166641+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a.png", "timestamp": "2024-02-15T20:47:37.802688+00:00"}}, {"id": "7b5da786-6bb3-4ce6-89ad-c1bff68c6fdb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.733331+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a.png", "timestamp": "2024-02-15T20:47:37.802688+00:00"}}, {"id": "32b06884-9adb-4726-913b-1fdd43677f05", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.289040+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear. There are several vehicles on the road, including buses and cars. The road is surrounded by buildings and trees.", "snapshot": {"id": "3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a.png", "timestamp": "2024-02-15T20:47:37.802688+00:00"}}, {"id": "22754f0a-2527-4b56-8032-da89b286275c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.954463+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a.png", "timestamp": "2024-02-15T20:47:37.802688+00:00"}}, {"id": "2a9917f0-43a9-42d3-bdd8-9ced407ce1c1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.794622+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades. Traffic is able to flow freely.", "snapshot": {"id": "3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a.png", "timestamp": "2024-02-15T20:47:37.802688+00:00"}}, {"id": "e8ab770f-3ad7-4c73-9ff9-a4430363ed68", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.482965+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or congestion visible.", "snapshot": {"id": "3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/3ced1e11-a77f-4e0a-9aa1-68b5221d5d4a.png", "timestamp": "2024-02-15T20:47:37.802688+00:00"}}, {"id": "45120e1c-6b11-4aa0-9d9c-72f54646d7ec", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.837369+00:00", "label": "null", "label_explanation": "The image shows a six-lane urban road with light traffic during the day. The road is in good condition, with no visible potholes or cracks. There are trees and buildings on either side of the road.", "snapshot": {"id": "e335a70e-4fb6-4534-8f22-2cbb9d157fbd", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e335a70e-4fb6-4534-8f22-2cbb9d157fbd.png", "timestamp": "2024-02-15T20:54:53.571597+00:00"}}, {"id": "dba6f87b-c24a-4f2c-9584-54902509bcc9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.012564+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "e335a70e-4fb6-4534-8f22-2cbb9d157fbd", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e335a70e-4fb6-4534-8f22-2cbb9d157fbd.png", "timestamp": "2024-02-15T20:54:53.571597+00:00"}}, {"id": "0eb1a578-cdbc-44a4-bb36-909a76253dbe", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.585515+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e335a70e-4fb6-4534-8f22-2cbb9d157fbd", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e335a70e-4fb6-4534-8f22-2cbb9d157fbd.png", "timestamp": "2024-02-15T20:54:53.571597+00:00"}}, {"id": "8feb5285-f0a4-4bf4-8ccd-2d0d0d3f410a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.677720+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "e335a70e-4fb6-4534-8f22-2cbb9d157fbd", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e335a70e-4fb6-4534-8f22-2cbb9d157fbd.png", "timestamp": "2024-02-15T20:54:53.571597+00:00"}}, {"id": "112e119a-3997-4500-8920-99bc782df379", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.401149+00:00", "label": "easy", "label_explanation": "The traffic is light, with vehicles moving smoothly in both directions.", "snapshot": {"id": "e335a70e-4fb6-4534-8f22-2cbb9d157fbd", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e335a70e-4fb6-4534-8f22-2cbb9d157fbd.png", "timestamp": "2024-02-15T20:54:53.571597+00:00"}}, {"id": "35c8b7c7-3b61-4623-99c8-27fb1b523dc3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.253938+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "e335a70e-4fb6-4534-8f22-2cbb9d157fbd", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e335a70e-4fb6-4534-8f22-2cbb9d157fbd.png", "timestamp": "2024-02-15T20:54:53.571597+00:00"}}, {"id": "0afe1331-047b-4880-9a8a-3d1e7015a7e6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.852728+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a slight bend to the right. It is daytime and the weather appears to be clear. There are several cars and buses on the road, and trees on either side.", "snapshot": {"id": "f64bf196-ddcf-4060-a460-a6e96c716038", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/f64bf196-ddcf-4060-a460-a6e96c716038.png", "timestamp": "2024-02-15T20:52:24.087380+00:00"}}, {"id": "a026f991-106d-45b2-aaca-c931203f0443", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.846481+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "f64bf196-ddcf-4060-a460-a6e96c716038", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/f64bf196-ddcf-4060-a460-a6e96c716038.png", "timestamp": "2024-02-15T20:52:24.087380+00:00"}}, {"id": "de3cb448-8447-4f3b-86f0-1f808152b7ba", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.643281+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars and buses moving at a steady pace.", "snapshot": {"id": "f64bf196-ddcf-4060-a460-a6e96c716038", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/f64bf196-ddcf-4060-a460-a6e96c716038.png", "timestamp": "2024-02-15T20:52:24.087380+00:00"}}, {"id": "7ea93cfb-04de-4f64-aa8f-825052a0db25", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.077011+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "f64bf196-ddcf-4060-a460-a6e96c716038", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/f64bf196-ddcf-4060-a460-a6e96c716038.png", "timestamp": "2024-02-15T20:52:24.087380+00:00"}}, {"id": "8017bbcf-bfe1-4b17-a9ca-559e95a9fd70", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.637091+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f64bf196-ddcf-4060-a460-a6e96c716038", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/f64bf196-ddcf-4060-a460-a6e96c716038.png", "timestamp": "2024-02-15T20:52:24.087380+00:00"}}, {"id": "675afc14-cda5-49c3-bf18-4d123f70a4bf", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.387786+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "f64bf196-ddcf-4060-a460-a6e96c716038", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/f64bf196-ddcf-4060-a460-a6e96c716038.png", "timestamp": "2024-02-15T20:52:24.087380+00:00"}}, {"id": "f4943ac9-8448-436d-b68e-f4b2abd0ff29", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.606385+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a slight bend to the right. It is daytime and the weather appears to be clear. There are several cars and a bus on the road, and trees on either side.", "snapshot": {"id": "e91096b8-a915-4478-a3e2-0b0626b3c472", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e91096b8-a915-4478-a3e2-0b0626b3c472.png", "timestamp": "2024-02-15T20:50:02.038790+00:00"}}, {"id": "b36d14ca-b0ce-4173-b55c-8175ff16c05c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.263983+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars and a bus moving at a steady pace.", "snapshot": {"id": "e91096b8-a915-4478-a3e2-0b0626b3c472", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e91096b8-a915-4478-a3e2-0b0626b3c472.png", "timestamp": "2024-02-15T20:50:02.038790+00:00"}}, {"id": "fb6d1e02-10ea-48c3-a037-696aa477e49f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.337172+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e91096b8-a915-4478-a3e2-0b0626b3c472", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e91096b8-a915-4478-a3e2-0b0626b3c472.png", "timestamp": "2024-02-15T20:50:02.038790+00:00"}}, {"id": "9b4316a2-f550-4966-8054-1e3aa76eb04b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.548203+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "e91096b8-a915-4478-a3e2-0b0626b3c472", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e91096b8-a915-4478-a3e2-0b0626b3c472.png", "timestamp": "2024-02-15T20:50:02.038790+00:00"}}, {"id": "81626267-3ed4-40fd-8118-0d7208cba509", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.095167+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "e91096b8-a915-4478-a3e2-0b0626b3c472", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e91096b8-a915-4478-a3e2-0b0626b3c472.png", "timestamp": "2024-02-15T20:50:02.038790+00:00"}}, {"id": "db26784a-8806-4cd1-b157-545d50f0341b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.748763+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "e91096b8-a915-4478-a3e2-0b0626b3c472", "camera_id": "000096", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000096/e91096b8-a915-4478-a3e2-0b0626b3c472.png", "timestamp": "2024-02-15T20:50:02.038790+00:00"}}]}, {"id": "000099", "name": "AV. 31 DE MAR\u00c7O X PRA\u00c7A APOTEOSE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913982, "longitude": -43.195426, "objects": ["image_description", "rain", "traffic", "road_blockade", "image_corrupted", "water_level"], "identifications": [{"id": "3ffc76d9-5e2e-425e-b1ba-d6835a9d7f7a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.284104+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with the bus and cars moving slowly due to the wet road conditions.", "snapshot": {"id": "8fca29b6-85c7-4d4b-b508-51d6d8c6c59f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/8fca29b6-85c7-4d4b-b508-51d6d8c6c59f.png", "timestamp": "2024-02-15T20:30:25.866644+00:00"}}, {"id": "cb53613b-b901-4ae0-9035-30479a21d089", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.094957+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles on the road surface.", "snapshot": {"id": "8fca29b6-85c7-4d4b-b508-51d6d8c6c59f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/8fca29b6-85c7-4d4b-b508-51d6d8c6c59f.png", "timestamp": "2024-02-15T20:30:25.866644+00:00"}}, {"id": "6e55e9c3-0032-47aa-aed1-813dd571e4a5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.734056+00:00", "label": "true", "label_explanation": "The road is wet, and there are small puddles of water on the surface.", "snapshot": {"id": "8fca29b6-85c7-4d4b-b508-51d6d8c6c59f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/8fca29b6-85c7-4d4b-b508-51d6d8c6c59f.png", "timestamp": "2024-02-15T20:30:25.866644+00:00"}}, {"id": "86032157-659a-4252-a613-c8d889a78915", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.275387+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8fca29b6-85c7-4d4b-b508-51d6d8c6c59f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/8fca29b6-85c7-4d4b-b508-51d6d8c6c59f.png", "timestamp": "2024-02-15T20:30:25.866644+00:00"}}, {"id": "d05c2e43-4d7e-42bb-b366-1d2fd774aa0b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.480851+00:00", "label": "free", "label_explanation": "There are no road blockades, and the road is completely passable.", "snapshot": {"id": "8fca29b6-85c7-4d4b-b508-51d6d8c6c59f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/8fca29b6-85c7-4d4b-b508-51d6d8c6c59f.png", "timestamp": "2024-02-15T20:30:25.866644+00:00"}}, {"id": "a061003f-84b6-4188-a9f8-d11ddef28efc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.427894+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a bus driving in the center. There are cars parked on the side of the road, and a large stadium can be seen in the background.", "snapshot": {"id": "8fca29b6-85c7-4d4b-b508-51d6d8c6c59f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/8fca29b6-85c7-4d4b-b508-51d6d8c6c59f.png", "timestamp": "2024-02-15T20:30:25.866644+00:00"}}, {"id": "7ee776b5-2c45-4edd-8e63-bef7d1b5f9aa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.420780+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "3ec17148-9cc7-4705-907b-b88b5c450d2c", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/3ec17148-9cc7-4705-907b-b88b5c450d2c.png", "timestamp": "2024-02-15T20:32:55.603323+00:00"}}, {"id": "833f4095-1072-4306-b672-10d982f765ee", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:14.767596+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move without any major disruptions.", "snapshot": {"id": "3ec17148-9cc7-4705-907b-b88b5c450d2c", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/3ec17148-9cc7-4705-907b-b88b5c450d2c.png", "timestamp": "2024-02-15T20:32:55.603323+00:00"}}, {"id": "31bfc1ca-1bef-41d3-9f14-5d09212f8037", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:14.057191+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "3ec17148-9cc7-4705-907b-b88b5c450d2c", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/3ec17148-9cc7-4705-907b-b88b5c450d2c.png", "timestamp": "2024-02-15T20:32:55.603323+00:00"}}, {"id": "b7d35fee-a761-4ab6-b0f4-ffb0092bed26", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:12.380928+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3ec17148-9cc7-4705-907b-b88b5c450d2c", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/3ec17148-9cc7-4705-907b-b88b5c450d2c.png", "timestamp": "2024-02-15T20:32:55.603323+00:00"}}, {"id": "c4f3bb40-3fcd-425a-b65d-74d01aee007d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:13.562981+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also puddles of water on the road.", "snapshot": {"id": "3ec17148-9cc7-4705-907b-b88b5c450d2c", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/3ec17148-9cc7-4705-907b-b88b5c450d2c.png", "timestamp": "2024-02-15T20:32:55.603323+00:00"}}, {"id": "3c083ec6-0d14-496d-b173-d47575a3cb98", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:13.024076+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are residential buildings and commercial establishments on either side of the road. Trees are present along the road.", "snapshot": {"id": "3ec17148-9cc7-4705-907b-b88b5c450d2c", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/3ec17148-9cc7-4705-907b-b88b5c450d2c.png", "timestamp": "2024-02-15T20:32:55.603323+00:00"}}, {"id": "b55f7db9-7f93-4104-8757-0a72084f3464", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.524215+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "060e3d7e-7848-4292-a735-26701286a441", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/060e3d7e-7848-4292-a735-26701286a441.png", "timestamp": "2024-02-15T20:42:52.164435+00:00"}}, {"id": "307f7441-d3b4-4988-8713-ca886f780364", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.174446+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "060e3d7e-7848-4292-a735-26701286a441", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/060e3d7e-7848-4292-a735-26701286a441.png", "timestamp": "2024-02-15T20:42:52.164435+00:00"}}, {"id": "391c8ce7-afc8-4f81-8ad5-a78d072fd252", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.669175+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road.", "snapshot": {"id": "060e3d7e-7848-4292-a735-26701286a441", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/060e3d7e-7848-4292-a735-26701286a441.png", "timestamp": "2024-02-15T20:42:52.164435+00:00"}}, {"id": "3b80b4cd-cc01-4d35-b329-bfbba658c44f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.310004+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars, buses, and motorbikes moving at a steady pace.", "snapshot": {"id": "060e3d7e-7848-4292-a735-26701286a441", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/060e3d7e-7848-4292-a735-26701286a441.png", "timestamp": "2024-02-15T20:42:52.164435+00:00"}}, {"id": "d73f97eb-b7ac-4c59-a0bb-dfa35d0351f9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.058784+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present.", "snapshot": {"id": "060e3d7e-7848-4292-a735-26701286a441", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/060e3d7e-7848-4292-a735-26701286a441.png", "timestamp": "2024-02-15T20:42:52.164435+00:00"}}, {"id": "e5ed4017-b506-4b76-bb65-c1e06f9e5b9d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.394490+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a partial view of a stadium on the right. The road has several lanes and is moderately busy with cars, buses, and motorbikes. The weather appears to be overcast, and the road surface is wet from recent rain. There are trees on either side of the road, and buildings and a mountain can be seen in the background.", "snapshot": {"id": "060e3d7e-7848-4292-a735-26701286a441", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/060e3d7e-7848-4292-a735-26701286a441.png", "timestamp": "2024-02-15T20:42:52.164435+00:00"}}, {"id": "fae10f2a-43ee-426f-a65e-10a1bc37ec10", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.513782+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a clear, dry surface. There are several vehicles parked on the side of the road, and a few trees can be seen in the background. The weather appears to be clear and sunny.", "snapshot": {"id": "d4cc8954-4043-47ae-bb17-43b4a724297f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/d4cc8954-4043-47ae-bb17-43b4a724297f.png", "timestamp": "2024-02-15T20:47:38.107516+00:00"}}, {"id": "ecb42f6c-df54-4ee4-b419-42a960b44543", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.734351+00:00", "label": "free", "label_explanation": "There are no obstructions on the road.", "snapshot": {"id": "d4cc8954-4043-47ae-bb17-43b4a724297f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/d4cc8954-4043-47ae-bb17-43b4a724297f.png", "timestamp": "2024-02-15T20:47:38.107516+00:00"}}, {"id": "6f9332d0-8359-430f-bbc6-a5f507214e88", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.321784+00:00", "label": "false", "label_explanation": "The image is clear with no signs of data loss or corruption.", "snapshot": {"id": "d4cc8954-4043-47ae-bb17-43b4a724297f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/d4cc8954-4043-47ae-bb17-43b4a724297f.png", "timestamp": "2024-02-15T20:47:38.107516+00:00"}}, {"id": "68803ac5-9a7d-41f7-a0a0-a7993b2b8575", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.836741+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "d4cc8954-4043-47ae-bb17-43b4a724297f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/d4cc8954-4043-47ae-bb17-43b4a724297f.png", "timestamp": "2024-02-15T20:47:38.107516+00:00"}}, {"id": "200a903a-495c-4ece-ad7f-124ff5b49685", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.294683+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly with no congestion.", "snapshot": {"id": "d4cc8954-4043-47ae-bb17-43b4a724297f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/d4cc8954-4043-47ae-bb17-43b4a724297f.png", "timestamp": "2024-02-15T20:47:38.107516+00:00"}}, {"id": "f359c40a-c32c-4881-810c-7a91ff2ad321", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.050730+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "d4cc8954-4043-47ae-bb17-43b4a724297f", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/d4cc8954-4043-47ae-bb17-43b4a724297f.png", "timestamp": "2024-02-15T20:47:38.107516+00:00"}}, {"id": "1506cc6a-7d67-4e06-abbf-289c914ec7d5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.006416+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "dbe599cf-9e68-4282-bee3-d27194f783a6", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/dbe599cf-9e68-4282-bee3-d27194f783a6.png", "timestamp": "2024-02-15T20:45:14.223951+00:00"}}, {"id": "031300c2-a5f0-407a-ba55-3054725d57cb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.537402+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "dbe599cf-9e68-4282-bee3-d27194f783a6", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/dbe599cf-9e68-4282-bee3-d27194f783a6.png", "timestamp": "2024-02-15T20:45:14.223951+00:00"}}, {"id": "13b84bcc-3511-4756-a0c3-f8255c21b4cd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.628145+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "dbe599cf-9e68-4282-bee3-d27194f783a6", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/dbe599cf-9e68-4282-bee3-d27194f783a6.png", "timestamp": "2024-02-15T20:45:14.223951+00:00"}}, {"id": "c48ac626-9047-4b6f-8cf2-7bf6a0e0f347", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.354908+00:00", "label": "moderate", "label_explanation": "The road is moderately busy with cars and people.", "snapshot": {"id": "dbe599cf-9e68-4282-bee3-d27194f783a6", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/dbe599cf-9e68-4282-bee3-d27194f783a6.png", "timestamp": "2024-02-15T20:45:14.223951+00:00"}}, {"id": "fbe2d5aa-8c90-488b-a6a6-ea255a7beabd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.247197+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a partial view of a soccer stadium in the background. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "dbe599cf-9e68-4282-bee3-d27194f783a6", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/dbe599cf-9e68-4282-bee3-d27194f783a6.png", "timestamp": "2024-02-15T20:45:14.223951+00:00"}}, {"id": "12d6c4fd-cdd3-440e-8152-fdb38b7e43e9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.030892+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "dbe599cf-9e68-4282-bee3-d27194f783a6", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/dbe599cf-9e68-4282-bee3-d27194f783a6.png", "timestamp": "2024-02-15T20:45:14.223951+00:00"}}, {"id": "f0b8994d-4b0b-488c-a605-1fa75a9fcf7b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.757744+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "60059cb4-b88e-4df3-b478-c0d80ad41c78", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/60059cb4-b88e-4df3-b478-c0d80ad41c78.png", "timestamp": "2024-02-15T20:35:28.067389+00:00"}}, {"id": "a19d2800-68b8-484d-99e8-2b903b1a06fa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.910485+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "60059cb4-b88e-4df3-b478-c0d80ad41c78", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/60059cb4-b88e-4df3-b478-c0d80ad41c78.png", "timestamp": "2024-02-15T20:35:28.067389+00:00"}}, {"id": "6feb8176-ab31-443d-80ee-752d3c7ebc20", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.352002+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "60059cb4-b88e-4df3-b478-c0d80ad41c78", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/60059cb4-b88e-4df3-b478-c0d80ad41c78.png", "timestamp": "2024-02-15T20:35:28.067389+00:00"}}, {"id": "d12dd9a1-d90e-469d-9f07-fd3dd323451a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.087594+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "60059cb4-b88e-4df3-b478-c0d80ad41c78", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/60059cb4-b88e-4df3-b478-c0d80ad41c78.png", "timestamp": "2024-02-15T20:35:28.067389+00:00"}}, {"id": "1eb85d99-c42c-4c8e-89e9-6eea5803cf11", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.125889+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a clear, dry surface. There are several vehicles on the road, including cars, buses, and trucks. The road is lined with trees and buildings, and there is a stadium in the background.", "snapshot": {"id": "60059cb4-b88e-4df3-b478-c0d80ad41c78", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/60059cb4-b88e-4df3-b478-c0d80ad41c78.png", "timestamp": "2024-02-15T20:35:28.067389+00:00"}}, {"id": "305ed3f3-3aa7-413e-b52d-249a9636636d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.533015+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "60059cb4-b88e-4df3-b478-c0d80ad41c78", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/60059cb4-b88e-4df3-b478-c0d80ad41c78.png", "timestamp": "2024-02-15T20:35:28.067389+00:00"}}, {"id": "eab292f2-b3fe-4469-82b9-8422cfb0a628", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.583481+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "5c07760e-ddb3-470c-820d-b392199d8a13", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/5c07760e-ddb3-470c-820d-b392199d8a13.png", "timestamp": "2024-02-15T20:37:56.117288+00:00"}}, {"id": "b0ec6ce6-b3da-4b92-a085-45e93b750058", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.085510+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no congestion or delays.", "snapshot": {"id": "5c07760e-ddb3-470c-820d-b392199d8a13", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/5c07760e-ddb3-470c-820d-b392199d8a13.png", "timestamp": "2024-02-15T20:37:56.117288+00:00"}}, {"id": "e54001c9-322b-48e5-8603-4c2fe8fbb7b5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.583935+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "5c07760e-ddb3-470c-820d-b392199d8a13", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/5c07760e-ddb3-470c-820d-b392199d8a13.png", "timestamp": "2024-02-15T20:37:56.117288+00:00"}}, {"id": "c4cf4cb0-4119-481c-b9e7-1080788241f1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.969355+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a clear, dry surface. There are several cars on the road, and the surrounding area is a mix of residential and commercial buildings.", "snapshot": {"id": "5c07760e-ddb3-470c-820d-b392199d8a13", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/5c07760e-ddb3-470c-820d-b392199d8a13.png", "timestamp": "2024-02-15T20:37:56.117288+00:00"}}, {"id": "8398328f-758e-47ee-b0be-12a914ec83f6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.691881+00:00", "label": "low", "label_explanation": "The road surface is completely dry, with no water present.", "snapshot": {"id": "5c07760e-ddb3-470c-820d-b392199d8a13", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/5c07760e-ddb3-470c-820d-b392199d8a13.png", "timestamp": "2024-02-15T20:37:56.117288+00:00"}}, {"id": "b4d93e4f-c42c-42ff-9202-22323046f97a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.319222+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "5c07760e-ddb3-470c-820d-b392199d8a13", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/5c07760e-ddb3-470c-820d-b392199d8a13.png", "timestamp": "2024-02-15T20:37:56.117288+00:00"}}, {"id": "0d4cf2bb-97c3-4f48-b150-eddab76cbdd9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.956186+00:00", "label": "moderate", "label_explanation": "The road has moderate traffic, with several vehicles visible, including a yellow taxi.", "snapshot": {"id": "51747873-48d8-4c71-8a7f-2e8331aa418a", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/51747873-48d8-4c71-8a7f-2e8331aa418a.png", "timestamp": "2024-02-15T20:40:27.754244+00:00"}}, {"id": "5d88dd10-f2d2-476e-8ccf-85f614711bc1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.534856+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "51747873-48d8-4c71-8a7f-2e8331aa418a", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/51747873-48d8-4c71-8a7f-2e8331aa418a.png", "timestamp": "2024-02-15T20:40:27.754244+00:00"}}, {"id": "a91aac72-7356-48b1-bbd8-7a72f70cf9bf", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.727946+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "51747873-48d8-4c71-8a7f-2e8331aa418a", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/51747873-48d8-4c71-8a7f-2e8331aa418a.png", "timestamp": "2024-02-15T20:40:27.754244+00:00"}}, {"id": "112605f7-e095-41c8-b5e1-2bee1550a826", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.048706+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "51747873-48d8-4c71-8a7f-2e8331aa418a", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/51747873-48d8-4c71-8a7f-2e8331aa418a.png", "timestamp": "2024-02-15T20:40:27.754244+00:00"}}, {"id": "7e258c0b-d54d-479f-8b8f-2ccbae387163", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.148794+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road.", "snapshot": {"id": "51747873-48d8-4c71-8a7f-2e8331aa418a", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/51747873-48d8-4c71-8a7f-2e8331aa418a.png", "timestamp": "2024-02-15T20:40:27.754244+00:00"}}, {"id": "f7fc2bb7-c9b5-46cc-8f36-dba913c9b468", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.283422+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street, surrounding buildings, and a stadium in the background. The weather appears to be cloudy, and the time of day is likely early morning or late afternoon due to the long shadows cast by the buildings.", "snapshot": {"id": "51747873-48d8-4c71-8a7f-2e8331aa418a", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/51747873-48d8-4c71-8a7f-2e8331aa418a.png", "timestamp": "2024-02-15T20:40:27.754244+00:00"}}, {"id": "f230fe90-b35b-4a8a-9d82-8cb16014798d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.095234+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "fb535bd1-0d5b-4cf1-bb84-4f3820bea04d", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/fb535bd1-0d5b-4cf1-bb84-4f3820bea04d.png", "timestamp": "2024-02-15T20:52:26.313402+00:00"}}, {"id": "40b689c2-15a9-4e97-bee8-97a41f78567a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.703410+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "fb535bd1-0d5b-4cf1-bb84-4f3820bea04d", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/fb535bd1-0d5b-4cf1-bb84-4f3820bea04d.png", "timestamp": "2024-02-15T20:52:26.313402+00:00"}}, {"id": "664f0dc9-f8ab-4e17-9134-a361bd248591", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:38.105937+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fb535bd1-0d5b-4cf1-bb84-4f3820bea04d", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/fb535bd1-0d5b-4cf1-bb84-4f3820bea04d.png", "timestamp": "2024-02-15T20:52:26.313402+00:00"}}, {"id": "dce2a4ca-1e20-44b9-9d8f-dbf5c4631867", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.902342+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving smoothly without any significant congestion or hazards.", "snapshot": {"id": "fb535bd1-0d5b-4cf1-bb84-4f3820bea04d", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/fb535bd1-0d5b-4cf1-bb84-4f3820bea04d.png", "timestamp": "2024-02-15T20:52:26.313402+00:00"}}, {"id": "0b73e2e2-315d-43f7-8ac2-e6db2c763f64", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.550805+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "fb535bd1-0d5b-4cf1-bb84-4f3820bea04d", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/fb535bd1-0d5b-4cf1-bb84-4f3820bea04d.png", "timestamp": "2024-02-15T20:52:26.313402+00:00"}}, {"id": "d8e12b3c-0ea6-4028-ab20-974a73e483d3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:38.740355+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "fb535bd1-0d5b-4cf1-bb84-4f3820bea04d", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/fb535bd1-0d5b-4cf1-bb84-4f3820bea04d.png", "timestamp": "2024-02-15T20:52:26.313402+00:00"}}, {"id": "954415f0-fc04-47b1-8df1-bb50b1973e62", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.788743+00:00", "label": "null", "label_explanation": "The image shows a wide, paved road with a clear lane for oncoming traffic. The road is lined with trees and buildings, and there is a stadium in the background.", "snapshot": {"id": "c33b15ec-a59e-4c10-aa24-e11ed4398892", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/c33b15ec-a59e-4c10-aa24-e11ed4398892.png", "timestamp": "2024-02-15T20:54:55.285828+00:00"}}, {"id": "a63dca9a-d19e-4bc0-be5a-b71289bafbaa", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.081912+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road is dry and there are no visible signs of water.", "snapshot": {"id": "c33b15ec-a59e-4c10-aa24-e11ed4398892", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/c33b15ec-a59e-4c10-aa24-e11ed4398892.png", "timestamp": "2024-02-15T20:54:55.285828+00:00"}}, {"id": "7b29edfe-74c9-4f28-b173-2a66d53776b1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.685715+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving at a steady pace.", "snapshot": {"id": "c33b15ec-a59e-4c10-aa24-e11ed4398892", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/c33b15ec-a59e-4c10-aa24-e11ed4398892.png", "timestamp": "2024-02-15T20:54:55.285828+00:00"}}, {"id": "e18e3672-c890-4f5c-a2fc-a88dc2557e1f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.348674+00:00", "label": "low", "label_explanation": "There is no water on the road. The road is completely dry.", "snapshot": {"id": "c33b15ec-a59e-4c10-aa24-e11ed4398892", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/c33b15ec-a59e-4c10-aa24-e11ed4398892.png", "timestamp": "2024-02-15T20:54:55.285828+00:00"}}, {"id": "3c3c6cee-48bf-42e9-874a-c4716dddfcf2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.545137+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c33b15ec-a59e-4c10-aa24-e11ed4398892", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/c33b15ec-a59e-4c10-aa24-e11ed4398892.png", "timestamp": "2024-02-15T20:54:55.285828+00:00"}}, {"id": "71dfce3d-bb77-48da-89d6-16be41620437", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.884946+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is completely clear.", "snapshot": {"id": "c33b15ec-a59e-4c10-aa24-e11ed4398892", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/c33b15ec-a59e-4c10-aa24-e11ed4398892.png", "timestamp": "2024-02-15T20:54:55.285828+00:00"}}, {"id": "4bc3b864-af75-45a6-aa12-a2baafad6509", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.421923+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "7618c70f-d492-493c-88c3-29ccac5fd9c4", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/7618c70f-d492-493c-88c3-29ccac5fd9c4.png", "timestamp": "2024-02-15T20:50:03.310651+00:00"}}, {"id": "e1b8d8f8-d80e-4ec8-a1e2-d4d87064b824", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.226960+00:00", "label": "easy", "label_explanation": "There is no traffic on the road.", "snapshot": {"id": "7618c70f-d492-493c-88c3-29ccac5fd9c4", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/7618c70f-d492-493c-88c3-29ccac5fd9c4.png", "timestamp": "2024-02-15T20:50:03.310651+00:00"}}, {"id": "37fff3ef-d843-4f97-866a-e542e1753d1c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.997739+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "7618c70f-d492-493c-88c3-29ccac5fd9c4", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/7618c70f-d492-493c-88c3-29ccac5fd9c4.png", "timestamp": "2024-02-15T20:50:03.310651+00:00"}}, {"id": "992bd09a-fdeb-4c85-a6a5-63eab7cca33b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.823318+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "7618c70f-d492-493c-88c3-29ccac5fd9c4", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/7618c70f-d492-493c-88c3-29ccac5fd9c4.png", "timestamp": "2024-02-15T20:50:03.310651+00:00"}}, {"id": "dd841d16-de24-49e6-b193-7dc52b25ff6c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.367690+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7618c70f-d492-493c-88c3-29ccac5fd9c4", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/7618c70f-d492-493c-88c3-29ccac5fd9c4.png", "timestamp": "2024-02-15T20:50:03.310651+00:00"}}, {"id": "bc60c1a4-9ecd-474d-b864-c118733a81d2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.522387+00:00", "label": "null", "label_explanation": "The image shows an urban road with a few parked cars on the side. There are also some trees and buildings in the background.", "snapshot": {"id": "7618c70f-d492-493c-88c3-29ccac5fd9c4", "camera_id": "000099", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000099/7618c70f-d492-493c-88c3-29ccac5fd9c4.png", "timestamp": "2024-02-15T20:50:03.310651+00:00"}}]}, {"id": "001534", "name": "R. MORAIS E SILVA, 83 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912101, "longitude": -43.221899, "objects": ["road_blockade", "image_corrupted", "image_description", "traffic", "rain", "water_level"], "identifications": [{"id": "70c2b762-e9ce-4130-8de7-99ad4f25b942", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.244462+00:00", "label": "null", "label_explanation": "The image captures a scene on an urban road during the day. It is a four-lane road with a bus stop on the left side. There are several vehicles on the road, including a yellow taxi, a white van, and a black car. There are also a few pedestrians on the sidewalk.", "snapshot": {"id": "af8f57b7-f043-41da-98fb-9edae095eba0", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/af8f57b7-f043-41da-98fb-9edae095eba0.png", "timestamp": "2024-02-15T20:30:13.802523+00:00"}}, {"id": "f3247356-9895-4742-b6d3-08818536e92b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.516463+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road is dry, and there are no visible signs of water.", "snapshot": {"id": "af8f57b7-f043-41da-98fb-9edae095eba0", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/af8f57b7-f043-41da-98fb-9edae095eba0.png", "timestamp": "2024-02-15T20:30:13.802523+00:00"}}, {"id": "086d852a-92e3-4450-959b-9c35eee497b8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:27.859146+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "af8f57b7-f043-41da-98fb-9edae095eba0", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/af8f57b7-f043-41da-98fb-9edae095eba0.png", "timestamp": "2024-02-15T20:30:13.802523+00:00"}}, {"id": "21529ce6-f430-4659-bdd6-f1a9fa878491", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.840556+00:00", "label": "low", "label_explanation": "There is no water on the road. The road surface is completely dry.", "snapshot": {"id": "af8f57b7-f043-41da-98fb-9edae095eba0", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/af8f57b7-f043-41da-98fb-9edae095eba0.png", "timestamp": "2024-02-15T20:30:13.802523+00:00"}}, {"id": "90330d80-f826-44c5-a4b9-ded7053e5b9c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.644512+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and free of any obstructions.", "snapshot": {"id": "af8f57b7-f043-41da-98fb-9edae095eba0", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/af8f57b7-f043-41da-98fb-9edae095eba0.png", "timestamp": "2024-02-15T20:30:13.802523+00:00"}}, {"id": "7a7f3481-f8d8-4a20-9c6f-d7f42b6471c2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.358079+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few vehicles on the road, but they are all moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "af8f57b7-f043-41da-98fb-9edae095eba0", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/af8f57b7-f043-41da-98fb-9edae095eba0.png", "timestamp": "2024-02-15T20:30:13.802523+00:00"}}, {"id": "1f9a70ed-4772-4293-86bc-f087df9e9634", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:01.457030+00:00", "label": "low", "label_explanation": "As mentioned earlier, there are a few small puddles on the road surface. However, these puddles are isolated and do not cover a significant portion of the road. Therefore, the water level can be classified as 'low'.", "snapshot": {"id": "d7c4ba7c-860c-4aa9-bb33-f5f192782559", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/d7c4ba7c-860c-4aa9-bb33-f5f192782559.png", "timestamp": "2024-02-15T20:32:41.506523+00:00"}}, {"id": "2abd760f-f053-445b-93c0-5e4627d64322", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:00.870837+00:00", "label": "false", "label_explanation": "Although there are a few small puddles on the road surface, the overall weather conditions appear to be dry. There is no visible rain or significant water accumulation.", "snapshot": {"id": "d7c4ba7c-860c-4aa9-bb33-f5f192782559", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/d7c4ba7c-860c-4aa9-bb33-f5f192782559.png", "timestamp": "2024-02-15T20:32:41.506523+00:00"}}, {"id": "42b25dc7-161c-4062-becc-2fe7cb3f1d9b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:00.248993+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is mostly dry, with a few small puddles scattered about. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also present, walking on the sidewalks and crossing the street. The road is lined with trees, buildings, and other urban infrastructure.", "snapshot": {"id": "d7c4ba7c-860c-4aa9-bb33-f5f192782559", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/d7c4ba7c-860c-4aa9-bb33-f5f192782559.png", "timestamp": "2024-02-15T20:32:41.506523+00:00"}}, {"id": "767e5124-6aaa-4046-9be5-7ac636127012", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:02.123505+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be smooth, with no major congestion or disruptions. Vehicles are able to navigate the road without any significant hindrance caused by the small puddles.", "snapshot": {"id": "d7c4ba7c-860c-4aa9-bb33-f5f192782559", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/d7c4ba7c-860c-4aa9-bb33-f5f192782559.png", "timestamp": "2024-02-15T20:32:41.506523+00:00"}}, {"id": "43bf65e8-0bfe-4a32-85a2-ff7749a96b54", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:59.509334+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d7c4ba7c-860c-4aa9-bb33-f5f192782559", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/d7c4ba7c-860c-4aa9-bb33-f5f192782559.png", "timestamp": "2024-02-15T20:32:41.506523+00:00"}}, {"id": "de8c05c3-51dd-4526-807f-238c8b552c51", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:02.645782+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. The entire road surface is clear, allowing vehicles and pedestrians to move freely.", "snapshot": {"id": "d7c4ba7c-860c-4aa9-bb33-f5f192782559", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/d7c4ba7c-860c-4aa9-bb33-f5f192782559.png", "timestamp": "2024-02-15T20:32:41.506523+00:00"}}, {"id": "a2429401-59a2-4341-b468-dee3bd533081", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.488364+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are a few parked cars on the side of the road and several people are walking on the sidewalk.", "snapshot": {"id": "0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8.png", "timestamp": "2024-02-15T20:45:06.917953+00:00"}}, {"id": "d23bac19-4447-40ea-95cb-d8ff6ed34692", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.770032+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain has stopped and the road is not flooded.", "snapshot": {"id": "0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8.png", "timestamp": "2024-02-15T20:45:06.917953+00:00"}}, {"id": "d9c9be8c-9d3c-4533-a95b-56abf65fccb5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.726927+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The parked cars are on the side of the road and they are not blocking traffic.", "snapshot": {"id": "0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8.png", "timestamp": "2024-02-15T20:45:06.917953+00:00"}}, {"id": "2feef9dd-19f4-4810-a7d3-debb1fac0ac7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.240639+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but it is not flooded.", "snapshot": {"id": "0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8.png", "timestamp": "2024-02-15T20:45:06.917953+00:00"}}, {"id": "fb66ff25-2f1a-413f-8e35-ac737eb9f3aa", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.185567+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8.png", "timestamp": "2024-02-15T20:45:06.917953+00:00"}}, {"id": "b4e7c3ad-fe2d-46e1-8fab-2b8bc4cdc4ef", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.491708+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars driving on the road. The parked cars on the side of the road are not obstructing traffic.", "snapshot": {"id": "0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0809b971-9ed4-41ff-b1b5-b7cf7a0a41a8.png", "timestamp": "2024-02-15T20:45:06.917953+00:00"}}, {"id": "852cd514-08a1-4586-aaf9-4239b6532d85", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:31.308483+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "1c60f482-8651-4fb8-83a2-b2b0ab7f43a1", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/1c60f482-8651-4fb8-83a2-b2b0ab7f43a1.png", "timestamp": "2024-02-15T20:35:15.164235+00:00"}}, {"id": "6c86d73b-f052-4fbc-bfc6-f0586b543b81", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:29.048479+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1c60f482-8651-4fb8-83a2-b2b0ab7f43a1", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/1c60f482-8651-4fb8-83a2-b2b0ab7f43a1.png", "timestamp": "2024-02-15T20:35:15.164235+00:00"}}, {"id": "1491311c-99c9-4f6a-ac97-e5913b85f032", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:30.519845+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "1c60f482-8651-4fb8-83a2-b2b0ab7f43a1", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/1c60f482-8651-4fb8-83a2-b2b0ab7f43a1.png", "timestamp": "2024-02-15T20:35:15.164235+00:00"}}, {"id": "dfb95eaf-0ccc-462f-85f8-a60fb24d732f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:30.248517+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "1c60f482-8651-4fb8-83a2-b2b0ab7f43a1", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/1c60f482-8651-4fb8-83a2-b2b0ab7f43a1.png", "timestamp": "2024-02-15T20:35:15.164235+00:00"}}, {"id": "c3ebd3ce-0e81-46e2-b9e6-a57227f8c26e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:29.351565+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars, a bus, and a motorcycle. Pedestrians are also present on the sidewalks.", "snapshot": {"id": "1c60f482-8651-4fb8-83a2-b2b0ab7f43a1", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/1c60f482-8651-4fb8-83a2-b2b0ab7f43a1.png", "timestamp": "2024-02-15T20:35:15.164235+00:00"}}, {"id": "368a89ee-eadb-488a-a62f-a9a62f85af9e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:29.965320+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy, as the vehicles and pedestrians are still able to move around without difficulty.", "snapshot": {"id": "1c60f482-8651-4fb8-83a2-b2b0ab7f43a1", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/1c60f482-8651-4fb8-83a2-b2b0ab7f43a1.png", "timestamp": "2024-02-15T20:35:15.164235+00:00"}}, {"id": "fc4705b0-e895-4c35-a00d-cb0586bfa424", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:57.883669+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "747f41e3-48ad-4da4-bb3e-33edcaa49244", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/747f41e3-48ad-4da4-bb3e-33edcaa49244.png", "timestamp": "2024-02-15T20:37:45.090001+00:00"}}, {"id": "003cc68d-91d6-4551-82ed-76e7b3f7347d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:56.749935+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and distorted shapes, making it impossible to analyze.", "snapshot": {"id": "747f41e3-48ad-4da4-bb3e-33edcaa49244", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/747f41e3-48ad-4da4-bb3e-33edcaa49244.png", "timestamp": "2024-02-15T20:37:45.090001+00:00"}}, {"id": "86eb2cd8-07d2-482f-a237-ac9fa8691de9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.750324+00:00", "label": "null", "label_explanation": "The image captures a scene of an urban road with a person walking on the sidewalk to the right side of the road. There are a few parked cars on the side of the road, and the road itself is dry with no visible signs of water.", "snapshot": {"id": "5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb.png", "timestamp": "2024-02-15T20:42:45.358600+00:00"}}, {"id": "cd787c22-5cc4-4e85-9fb5-ba2cfd7ab67b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.393519+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible signs of water.", "snapshot": {"id": "5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb.png", "timestamp": "2024-02-15T20:42:45.358600+00:00"}}, {"id": "94954a99-e668-4c9a-9ce7-b9b5c4ca195c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.033362+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb.png", "timestamp": "2024-02-15T20:42:45.358600+00:00"}}, {"id": "d0d63254-ab0c-4f6a-a939-4836d1f086ea", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.603029+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions.", "snapshot": {"id": "5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb.png", "timestamp": "2024-02-15T20:42:45.358600+00:00"}}, {"id": "29aa3701-66a2-4ba2-a487-4912640caf04", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.529706+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb.png", "timestamp": "2024-02-15T20:42:45.358600+00:00"}}, {"id": "0fa1d1f6-ff73-425b-b782-b7badfb71999", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.984737+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions.", "snapshot": {"id": "5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/5dd5f80a-1284-4c09-81e0-f2a81ff3c8bb.png", "timestamp": "2024-02-15T20:42:45.358600+00:00"}}, {"id": "f616911f-0904-4798-b227-f7492f6e1100", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.317658+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions. The road is clear and passable in both directions.", "snapshot": {"id": "0978612b-0cb7-458f-b3dc-33dca88ae65d", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0978612b-0cb7-458f-b3dc-33dca88ae65d.png", "timestamp": "2024-02-15T20:40:16.616428+00:00"}}, {"id": "a6178c50-ce68-4ae3-af22-626dbbce1022", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.486026+00:00", "label": "low", "label_explanation": "The water level on the road is low. There is no visible water on the road surface.", "snapshot": {"id": "0978612b-0cb7-458f-b3dc-33dca88ae65d", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0978612b-0cb7-458f-b3dc-33dca88ae65d.png", "timestamp": "2024-02-15T20:40:16.616428+00:00"}}, {"id": "9e284972-2cd9-4557-8681-8dd706fde24d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.973729+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a few cars and a bicycle visible, but the road is not congested. The vehicles are moving at a moderate speed, and there are no visible delays or obstructions.", "snapshot": {"id": "0978612b-0cb7-458f-b3dc-33dca88ae65d", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0978612b-0cb7-458f-b3dc-33dca88ae65d.png", "timestamp": "2024-02-15T20:40:16.616428+00:00"}}, {"id": "ee40deb7-9d4b-42ba-bd47-8d1244225fba", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.144102+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation or puddles.", "snapshot": {"id": "0978612b-0cb7-458f-b3dc-33dca88ae65d", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0978612b-0cb7-458f-b3dc-33dca88ae65d.png", "timestamp": "2024-02-15T20:40:16.616428+00:00"}}, {"id": "7b5cb910-8f38-4fa5-93e9-b19304beb0f9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:33.856367+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with a slight bend to the right. The road surface is paved and in good condition, with visible lane markings. There are trees and buildings on either side of the road, and a few parked cars along the curb. There is moderate traffic on the road, with a few cars and a bicycle visible. The overall visibility is good, with no significant obstructions or hazards.", "snapshot": {"id": "0978612b-0cb7-458f-b3dc-33dca88ae65d", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0978612b-0cb7-458f-b3dc-33dca88ae65d.png", "timestamp": "2024-02-15T20:40:16.616428+00:00"}}, {"id": "981be500-8abd-4c09-9206-1c146fa4e862", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:33.505462+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0978612b-0cb7-458f-b3dc-33dca88ae65d", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/0978612b-0cb7-458f-b3dc-33dca88ae65d.png", "timestamp": "2024-02-15T20:40:16.616428+00:00"}}, {"id": "69edae4f-a123-4afc-9805-2239da0e5540", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:43.029660+00:00", "label": "free", "label_explanation": "The road is completely free of any obstructions, allowing for smooth traffic flow.", "snapshot": {"id": "604c36b8-2186-4284-868d-4b5e5aa50d89", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/604c36b8-2186-4284-868d-4b5e5aa50d89.png", "timestamp": "2024-02-15T20:47:30.432026+00:00"}}, {"id": "5c498952-8931-4c5c-a61f-cc5e331f29b9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.686432+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion or obstructions.", "snapshot": {"id": "604c36b8-2186-4284-868d-4b5e5aa50d89", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/604c36b8-2186-4284-868d-4b5e5aa50d89.png", "timestamp": "2024-02-15T20:47:30.432026+00:00"}}, {"id": "c36814de-9a17-46fd-824a-3255942d331d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.249751+00:00", "label": "low", "label_explanation": "The road surface is completely dry, with no standing water.", "snapshot": {"id": "604c36b8-2186-4284-868d-4b5e5aa50d89", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/604c36b8-2186-4284-868d-4b5e5aa50d89.png", "timestamp": "2024-02-15T20:47:30.432026+00:00"}}, {"id": "ec8853a3-1bad-4cb3-a2d4-6b82f754277b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.619168+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with a single black parked car on the left side. The road is lined with trees and buildings, with people walking on the right side of the road. There is a bus stop sign on the right side of the road.", "snapshot": {"id": "604c36b8-2186-4284-868d-4b5e5aa50d89", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/604c36b8-2186-4284-868d-4b5e5aa50d89.png", "timestamp": "2024-02-15T20:47:30.432026+00:00"}}, {"id": "13ec1a02-034a-4f7a-b1ec-8038f5be4cb8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.974182+00:00", "label": "false", "label_explanation": "The road surface is dry, with no visible signs of rain or water accumulation.", "snapshot": {"id": "604c36b8-2186-4284-868d-4b5e5aa50d89", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/604c36b8-2186-4284-868d-4b5e5aa50d89.png", "timestamp": "2024-02-15T20:47:30.432026+00:00"}}, {"id": "dc985864-ae10-4dec-a5b1-aac9c7f2267c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.330279+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "604c36b8-2186-4284-868d-4b5e5aa50d89", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/604c36b8-2186-4284-868d-4b5e5aa50d89.png", "timestamp": "2024-02-15T20:47:30.432026+00:00"}}, {"id": "b2facc00-dd0a-40d6-a7b1-ec3958efe2c6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.150824+00:00", "label": "easy", "label_explanation": "The road is dry, and there are no visible obstructions or traffic disruptions. Traffic can flow smoothly.", "snapshot": {"id": "33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899.png", "timestamp": "2024-02-15T20:54:48.190716+00:00"}}, {"id": "f62ad521-94e3-4fa4-a378-397d3815bb65", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.720334+00:00", "label": "false", "label_explanation": "As mentioned earlier, the road surface is dry, indicating no recent rainfall.", "snapshot": {"id": "33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899.png", "timestamp": "2024-02-15T20:54:48.190716+00:00"}}, {"id": "d4eae318-dc69-475e-8044-7be7cda951f0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.443617+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear for\u901a\u884c.", "snapshot": {"id": "33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899.png", "timestamp": "2024-02-15T20:54:48.190716+00:00"}}, {"id": "9ca119ed-8cb7-4868-b92e-6e5e8dfd10cc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.485559+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is dry, with no visible signs of water accumulation. There are a few parked cars on the side of the road, and trees can be seen lining the street.", "snapshot": {"id": "33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899.png", "timestamp": "2024-02-15T20:54:48.190716+00:00"}}, {"id": "c0f8e999-83e7-4253-a854-0ee197cbeaef", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.932845+00:00", "label": "low", "label_explanation": "Since there is no visible water on the road surface, the water level can be classified as 'low'.", "snapshot": {"id": "33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899.png", "timestamp": "2024-02-15T20:54:48.190716+00:00"}}, {"id": "ddf87848-78c9-4483-a89f-f5f3673301f3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.118756+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/33b6a0c6-31ec-4cfa-b8cf-1d4d1d4d7899.png", "timestamp": "2024-02-15T20:54:48.190716+00:00"}}, {"id": "24a41330-16b0-43f4-9f32-ecb35560dd4b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.099032+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or accidents visible in the image.", "snapshot": {"id": "b76939a1-08dd-4a87-bb4f-7e06eeb71e2f", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/b76939a1-08dd-4a87-bb4f-7e06eeb71e2f.png", "timestamp": "2024-02-15T20:52:18.728809+00:00"}}, {"id": "3e18be06-a7cb-4160-b7f1-1494b26af08b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.486365+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "b76939a1-08dd-4a87-bb4f-7e06eeb71e2f", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/b76939a1-08dd-4a87-bb4f-7e06eeb71e2f.png", "timestamp": "2024-02-15T20:52:18.728809+00:00"}}, {"id": "8dab85ca-0762-4df6-b0ec-0c7f555cce80", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.834215+00:00", "label": "low", "label_explanation": "There is no visible water on the road surface.", "snapshot": {"id": "b76939a1-08dd-4a87-bb4f-7e06eeb71e2f", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/b76939a1-08dd-4a87-bb4f-7e06eeb71e2f.png", "timestamp": "2024-02-15T20:52:18.728809+00:00"}}, {"id": "f1e3e0bd-0ee6-4a84-8c8b-5bc4a4832b7f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.892865+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b76939a1-08dd-4a87-bb4f-7e06eeb71e2f", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/b76939a1-08dd-4a87-bb4f-7e06eeb71e2f.png", "timestamp": "2024-02-15T20:52:18.728809+00:00"}}, {"id": "72c1317c-4412-4894-bf99-0e4e5c996eb1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.401060+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "b76939a1-08dd-4a87-bb4f-7e06eeb71e2f", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/b76939a1-08dd-4a87-bb4f-7e06eeb71e2f.png", "timestamp": "2024-02-15T20:52:18.728809+00:00"}}, {"id": "0c09bf44-5749-4918-86c2-2788a349a711", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.118335+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road during daytime. It is a four-lane road with a painted median strip. On either side of the road, there are tall buildings and lush trees. The weather appears to be clear, as there are no visible signs of rain or snow. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians can also be seen walking on the sidewalks.", "snapshot": {"id": "b76939a1-08dd-4a87-bb4f-7e06eeb71e2f", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/b76939a1-08dd-4a87-bb4f-7e06eeb71e2f.png", "timestamp": "2024-02-15T20:52:18.728809+00:00"}}, {"id": "302c8dea-6013-4c34-a12f-011239ccb529", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.447247+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are several vehicles on the road, but they are able to move without significant congestion.", "snapshot": {"id": "887b3a47-7e9f-4d31-9197-ab594c77df48", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/887b3a47-7e9f-4d31-9197-ab594c77df48.png", "timestamp": "2024-02-15T20:49:55.821095+00:00"}}, {"id": "4e9ce946-f0d2-404b-9263-0ed5bbf670e5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.126329+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of flooding or water accumulation on the road surface.", "snapshot": {"id": "887b3a47-7e9f-4d31-9197-ab594c77df48", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/887b3a47-7e9f-4d31-9197-ab594c77df48.png", "timestamp": "2024-02-15T20:49:55.821095+00:00"}}, {"id": "8a405708-b18a-4831-901f-556a7bfe5db9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.866939+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "887b3a47-7e9f-4d31-9197-ab594c77df48", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/887b3a47-7e9f-4d31-9197-ab594c77df48.png", "timestamp": "2024-02-15T20:49:55.821095+00:00"}}, {"id": "251f38f9-1eb1-4270-bcf3-35541ca74baf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.559594+00:00", "label": "null", "label_explanation": "The image captures a scene of an urban road with moderate traffic. It is daytime, and the weather appears to be clear. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "887b3a47-7e9f-4d31-9197-ab594c77df48", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/887b3a47-7e9f-4d31-9197-ab594c77df48.png", "timestamp": "2024-02-15T20:49:55.821095+00:00"}}, {"id": "bc5eff86-9814-43bf-8473-333db02bad30", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.631267+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "887b3a47-7e9f-4d31-9197-ab594c77df48", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/887b3a47-7e9f-4d31-9197-ab594c77df48.png", "timestamp": "2024-02-15T20:49:55.821095+00:00"}}, {"id": "2dfb8f00-b8b7-4e9e-8f47-0d91058c4114", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.240411+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "887b3a47-7e9f-4d31-9197-ab594c77df48", "camera_id": "001534", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001534/887b3a47-7e9f-4d31-9197-ab594c77df48.png", "timestamp": "2024-02-15T20:49:55.821095+00:00"}}]}, {"id": "000002", "name": "AV. PRES. VARGAS X AV. RIO BRANCO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901392, "longitude": -43.179391, "objects": ["water_level", "road_blockade", "traffic", "rain", "image_corrupted", "image_description"], "identifications": [{"id": "47ecf1fd-d77b-462e-b8cd-8aaaf8910e74", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.352103+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While the road is wet, the water is not deep enough to impede traffic or cause any significant hazards.", "snapshot": {"id": "e11d0dee-4efb-4842-a3b7-2e53c72587a2", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/e11d0dee-4efb-4842-a3b7-2e53c72587a2.png", "timestamp": "2024-02-15T20:30:18.425726+00:00"}}, {"id": "e2d0f80c-c50d-4b7a-a032-e98a27be2a75", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.347763+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e11d0dee-4efb-4842-a3b7-2e53c72587a2", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/e11d0dee-4efb-4842-a3b7-2e53c72587a2.png", "timestamp": "2024-02-15T20:30:18.425726+00:00"}}, {"id": "90087a42-ae87-43d0-af61-92bfbe721e6d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.819193+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road from other sources such as sprinklers or a nearby water body.", "snapshot": {"id": "e11d0dee-4efb-4842-a3b7-2e53c72587a2", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/e11d0dee-4efb-4842-a3b7-2e53c72587a2.png", "timestamp": "2024-02-15T20:30:18.425726+00:00"}}, {"id": "86041af8-ead6-4217-9156-dc343ff513a4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.638113+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and a wide road in the center. It is daytime and the weather appears to be cloudy or overcast. There are several vehicles on the road, including buses and cars. Pedestrians are crossing the road at a crosswalk.", "snapshot": {"id": "e11d0dee-4efb-4842-a3b7-2e53c72587a2", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/e11d0dee-4efb-4842-a3b7-2e53c72587a2.png", "timestamp": "2024-02-15T20:30:18.425726+00:00"}}, {"id": "5c7d197d-675c-49cc-839b-830049881eed", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.917955+00:00", "label": "free", "label_explanation": "The road is clear, with no blockades or obstructions visible. Traffic is able to flow freely in both directions.", "snapshot": {"id": "e11d0dee-4efb-4842-a3b7-2e53c72587a2", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/e11d0dee-4efb-4842-a3b7-2e53c72587a2.png", "timestamp": "2024-02-15T20:30:18.425726+00:00"}}, {"id": "843f39a1-099e-473e-8266-de660a616786", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.691577+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "e11d0dee-4efb-4842-a3b7-2e53c72587a2", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/e11d0dee-4efb-4842-a3b7-2e53c72587a2.png", "timestamp": "2024-02-15T20:30:18.425726+00:00"}}, {"id": "37d4c228-40e2-439f-a394-d8a4d47e354f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:00.942807+00:00", "label": "true", "label_explanation": "The road is wet from the rain, but it is still passable.", "snapshot": {"id": "4439c590-770f-4386-8ba4-506a0a2bd824", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/4439c590-770f-4386-8ba4-506a0a2bd824.png", "timestamp": "2024-02-15T20:42:49.512563+00:00"}}, {"id": "8ae39378-cd4d-432c-929c-ae331ace9fd4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:00.182044+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4439c590-770f-4386-8ba4-506a0a2bd824", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/4439c590-770f-4386-8ba4-506a0a2bd824.png", "timestamp": "2024-02-15T20:42:49.512563+00:00"}}, {"id": "c2a289d0-ee0f-4b00-8f41-a627ef4fc4f6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.693390+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable.", "snapshot": {"id": "4439c590-770f-4386-8ba4-506a0a2bd824", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/4439c590-770f-4386-8ba4-506a0a2bd824.png", "timestamp": "2024-02-15T20:42:49.512563+00:00"}}, {"id": "ce9d987d-0705-4b72-91ca-74bdd7485938", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.365545+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a lot of vehicles on the road, but they are moving at a steady pace.", "snapshot": {"id": "4439c590-770f-4386-8ba4-506a0a2bd824", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/4439c590-770f-4386-8ba4-506a0a2bd824.png", "timestamp": "2024-02-15T20:42:49.512563+00:00"}}, {"id": "bab62d2b-0787-4663-b3f3-bb127fd978a9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:00.464034+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road during daytime. It is a wide road with multiple lanes, and there are several vehicles on it. There are buses, cars, and trucks. The road is wet from the rain, but it is still passable.", "snapshot": {"id": "4439c590-770f-4386-8ba4-506a0a2bd824", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/4439c590-770f-4386-8ba4-506a0a2bd824.png", "timestamp": "2024-02-15T20:42:49.512563+00:00"}}, {"id": "f557cd3f-2337-4071-8938-b19575b2edd2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.173066+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some puddles, but they are not deep.", "snapshot": {"id": "4439c590-770f-4386-8ba4-506a0a2bd824", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/4439c590-770f-4386-8ba4-506a0a2bd824.png", "timestamp": "2024-02-15T20:42:49.512563+00:00"}}, {"id": "3b6c8afa-e29f-42a2-8321-24dda073b406", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.305836+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and free of any obstructions.", "snapshot": {"id": "928c3588-d3a1-4d10-bb16-eac1467b55f7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/928c3588-d3a1-4d10-bb16-eac1467b55f7.png", "timestamp": "2024-02-15T20:45:11.278953+00:00"}}, {"id": "037b1f58-362b-4ce4-b7ae-fe9346f814ec", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.765620+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "928c3588-d3a1-4d10-bb16-eac1467b55f7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/928c3588-d3a1-4d10-bb16-eac1467b55f7.png", "timestamp": "2024-02-15T20:45:11.278953+00:00"}}, {"id": "54ea035e-209a-4add-8157-1c64102519d3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.703220+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "928c3588-d3a1-4d10-bb16-eac1467b55f7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/928c3588-d3a1-4d10-bb16-eac1467b55f7.png", "timestamp": "2024-02-15T20:45:11.278953+00:00"}}, {"id": "9c4b1ca9-3a4d-40e0-863d-9d4d8ca074d3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.906526+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is a wide road with multiple lanes, and there are several vehicles on the road, including buses and cars. The road is lined with trees, and there are buildings and other structures in the background.", "snapshot": {"id": "928c3588-d3a1-4d10-bb16-eac1467b55f7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/928c3588-d3a1-4d10-bb16-eac1467b55f7.png", "timestamp": "2024-02-15T20:45:11.278953+00:00"}}, {"id": "3d06a0a7-1bb5-44a8-a853-ce8b518a6178", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.002222+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major obstructions or delays.", "snapshot": {"id": "928c3588-d3a1-4d10-bb16-eac1467b55f7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/928c3588-d3a1-4d10-bb16-eac1467b55f7.png", "timestamp": "2024-02-15T20:45:11.278953+00:00"}}, {"id": "d49222c3-569b-4dcd-8121-2d464c0bde27", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.253330+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water on the road.", "snapshot": {"id": "928c3588-d3a1-4d10-bb16-eac1467b55f7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/928c3588-d3a1-4d10-bb16-eac1467b55f7.png", "timestamp": "2024-02-15T20:45:11.278953+00:00"}}, {"id": "6075be05-c235-4ddf-95f2-40ce7ba91b2e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.016744+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible in the image.", "snapshot": {"id": "88a3217b-7c21-4c73-86ec-6193bae9ee42", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/88a3217b-7c21-4c73-86ec-6193bae9ee42.png", "timestamp": "2024-02-15T20:35:19.537567+00:00"}}, {"id": "5de5ae36-6756-4502-8108-d53b682327ac", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:37.584269+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or obstructions visible in the image.", "snapshot": {"id": "88a3217b-7c21-4c73-86ec-6193bae9ee42", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/88a3217b-7c21-4c73-86ec-6193bae9ee42.png", "timestamp": "2024-02-15T20:35:19.537567+00:00"}}, {"id": "81bffe27-a548-447f-8caa-fc9345e0565a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.550249+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. There are several vehicles on the road, including buses, cars, and motorcycles. Pedestrians are also visible, crossing the road at a crosswalk. The road is wet from recent rain, but there are no significant puddles or flooding.", "snapshot": {"id": "88a3217b-7c21-4c73-86ec-6193bae9ee42", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/88a3217b-7c21-4c73-86ec-6193bae9ee42.png", "timestamp": "2024-02-15T20:35:19.537567+00:00"}}, {"id": "e76c8779-2222-4d1c-a316-24a2623501b2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.870058+00:00", "label": "low", "label_explanation": "There is no significant water on the road surface. The road is wet from recent rain, but there are no puddles or flooding.", "snapshot": {"id": "88a3217b-7c21-4c73-86ec-6193bae9ee42", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/88a3217b-7c21-4c73-86ec-6193bae9ee42.png", "timestamp": "2024-02-15T20:35:19.537567+00:00"}}, {"id": "145faf85-a6fe-4c1e-bfab-e992e730c8b3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.489258+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy and there is no standing water on the road.", "snapshot": {"id": "88a3217b-7c21-4c73-86ec-6193bae9ee42", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/88a3217b-7c21-4c73-86ec-6193bae9ee42.png", "timestamp": "2024-02-15T20:35:19.537567+00:00"}}, {"id": "60aa15df-92c0-4a56-b6a0-1d9d2329469f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:34.705070+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "88a3217b-7c21-4c73-86ec-6193bae9ee42", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/88a3217b-7c21-4c73-86ec-6193bae9ee42.png", "timestamp": "2024-02-15T20:35:19.537567+00:00"}}, {"id": "b51c1593-d846-4773-a43e-f499641278ff", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:06.292983+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. There are several vehicles on the road, including buses and cars. Pedestrians are also visible, crossing the road at a crosswalk. The road is lined with buildings and trees.", "snapshot": {"id": "45dc432b-c762-49c2-bc0f-86a44d766e47", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/45dc432b-c762-49c2-bc0f-86a44d766e47.png", "timestamp": "2024-02-15T20:37:50.605257+00:00"}}, {"id": "698261cf-59cb-49ed-b234-c84f26a075d6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:07.986840+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a number of vehicles on the road, but they are able to move at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "45dc432b-c762-49c2-bc0f-86a44d766e47", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/45dc432b-c762-49c2-bc0f-86a44d766e47.png", "timestamp": "2024-02-15T20:37:50.605257+00:00"}}, {"id": "31b5a9ed-b3cf-4a1b-a803-ba2416394639", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:07.413908+00:00", "label": "low", "label_explanation": "The water level on the road is low. While the road is wet, there are no significant puddles or areas where water is pooling. The water appears to be evenly distributed across the road surface.", "snapshot": {"id": "45dc432b-c762-49c2-bc0f-86a44d766e47", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/45dc432b-c762-49c2-bc0f-86a44d766e47.png", "timestamp": "2024-02-15T20:37:50.605257+00:00"}}, {"id": "aa32c048-1471-4f65-873e-037df78b09b9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:08.483359+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic in both directions.", "snapshot": {"id": "45dc432b-c762-49c2-bc0f-86a44d766e47", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/45dc432b-c762-49c2-bc0f-86a44d766e47.png", "timestamp": "2024-02-15T20:37:50.605257+00:00"}}, {"id": "8a6f7ada-0d1b-4591-bdf5-4e9392b5dc27", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:05.818257+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "45dc432b-c762-49c2-bc0f-86a44d766e47", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/45dc432b-c762-49c2-bc0f-86a44d766e47.png", "timestamp": "2024-02-15T20:37:50.605257+00:00"}}, {"id": "e2b86c46-c655-4212-abca-9b0277400c03", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:06.780638+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or is currently raining. The reflections on the road from the street lights and buildings are elongated and distorted, further suggesting the presence of water on the road.", "snapshot": {"id": "45dc432b-c762-49c2-bc0f-86a44d766e47", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/45dc432b-c762-49c2-bc0f-86a44d766e47.png", "timestamp": "2024-02-15T20:37:50.605257+00:00"}}, {"id": "4d7e4c18-a36a-4633-a821-749e31c4cf4b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.100205+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable for vehicles.", "snapshot": {"id": "c5a7a363-a4b5-4638-b3f0-5a4b153ecbec", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c5a7a363-a4b5-4638-b3f0-5a4b153ecbec.png", "timestamp": "2024-02-15T20:40:22.664695+00:00"}}, {"id": "4cd70d8f-9df8-466f-8545-eab68bae8c6a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.318774+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some puddles on the road, but they are not very deep. The road is still passable for vehicles.", "snapshot": {"id": "c5a7a363-a4b5-4638-b3f0-5a4b153ecbec", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c5a7a363-a4b5-4638-b3f0-5a4b153ecbec.png", "timestamp": "2024-02-15T20:40:22.664695+00:00"}}, {"id": "196160c5-734c-46b5-b814-d6342dc0cebf", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.963953+00:00", "label": "true", "label_explanation": "The road is wet from rain, and there are some puddles on the road.", "snapshot": {"id": "c5a7a363-a4b5-4638-b3f0-5a4b153ecbec", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c5a7a363-a4b5-4638-b3f0-5a4b153ecbec.png", "timestamp": "2024-02-15T20:40:22.664695+00:00"}}, {"id": "234c0682-cee4-4f6f-a579-a3a6eba79746", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.536709+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road during the day. It is a wide road with multiple lanes, and there are a variety of vehicles on the road, including buses, cars, and trucks. The road is wet from rain, and there are some puddles on the road. There are also a number of trees and buildings in the background.", "snapshot": {"id": "c5a7a363-a4b5-4638-b3f0-5a4b153ecbec", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c5a7a363-a4b5-4638-b3f0-5a4b153ecbec.png", "timestamp": "2024-02-15T20:40:22.664695+00:00"}}, {"id": "7220c5cd-50b5-4c5b-bd47-0567100e7ca5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.639313+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or blockages.", "snapshot": {"id": "c5a7a363-a4b5-4638-b3f0-5a4b153ecbec", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c5a7a363-a4b5-4638-b3f0-5a4b153ecbec.png", "timestamp": "2024-02-15T20:40:22.664695+00:00"}}, {"id": "5a19d17f-d179-4ccc-991e-b28087940348", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.233027+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c5a7a363-a4b5-4638-b3f0-5a4b153ecbec", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c5a7a363-a4b5-4638-b3f0-5a4b153ecbec.png", "timestamp": "2024-02-15T20:40:22.664695+00:00"}}, {"id": "860e5bcd-3c18-4547-a0cf-e80250846a29", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.828234+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "fd754511-cdfb-4305-ab6d-a144d2826cc7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/fd754511-cdfb-4305-ab6d-a144d2826cc7.png", "timestamp": "2024-02-15T20:47:36.179107+00:00"}}, {"id": "3c111749-efd3-442f-9537-56f59c71e18a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.609867+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "fd754511-cdfb-4305-ab6d-a144d2826cc7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/fd754511-cdfb-4305-ab6d-a144d2826cc7.png", "timestamp": "2024-02-15T20:47:36.179107+00:00"}}, {"id": "0840dbfe-c199-4357-9e95-82dfca529924", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.288577+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away.", "snapshot": {"id": "fd754511-cdfb-4305-ab6d-a144d2826cc7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/fd754511-cdfb-4305-ab6d-a144d2826cc7.png", "timestamp": "2024-02-15T20:47:36.179107+00:00"}}, {"id": "49567c14-323e-4b50-9164-b8119fcc3494", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.007333+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "fd754511-cdfb-4305-ab6d-a144d2826cc7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/fd754511-cdfb-4305-ab6d-a144d2826cc7.png", "timestamp": "2024-02-15T20:47:36.179107+00:00"}}, {"id": "1905c32c-8e15-455f-a500-3c0b2debe102", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.740803+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a wide, multi-lane road with a central median and traffic lights. There are several vehicles on the road, including buses and cars. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "fd754511-cdfb-4305-ab6d-a144d2826cc7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/fd754511-cdfb-4305-ab6d-a144d2826cc7.png", "timestamp": "2024-02-15T20:47:36.179107+00:00"}}, {"id": "f08bbaa6-8fbf-4deb-b49d-c6bffc656688", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.448561+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fd754511-cdfb-4305-ab6d-a144d2826cc7", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/fd754511-cdfb-4305-ab6d-a144d2826cc7.png", "timestamp": "2024-02-15T20:47:36.179107+00:00"}}, {"id": "b3ea5e98-41ea-4852-a87b-7d7d0a9bda3e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:10.228730+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move at a steady pace.", "snapshot": {"id": "73018d2e-6cf3-45f9-9d69-c755c08a2504", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/73018d2e-6cf3-45f9-9d69-c755c08a2504.png", "timestamp": "2024-02-15T20:32:48.756344+00:00"}}, {"id": "41f07dc0-3953-4d3b-b7d9-6178af360586", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:08.782485+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "73018d2e-6cf3-45f9-9d69-c755c08a2504", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/73018d2e-6cf3-45f9-9d69-c755c08a2504.png", "timestamp": "2024-02-15T20:32:48.756344+00:00"}}, {"id": "5c3ac7cf-62a2-4679-9edd-1fd46ec9bd48", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:10.896119+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear, and there are no obstructions to traffic.", "snapshot": {"id": "73018d2e-6cf3-45f9-9d69-c755c08a2504", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/73018d2e-6cf3-45f9-9d69-c755c08a2504.png", "timestamp": "2024-02-15T20:32:48.756344+00:00"}}, {"id": "e25e6b87-32c7-4a60-a6e6-2b6e4d67f951", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:09.866035+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not pose a significant risk to drivers.", "snapshot": {"id": "73018d2e-6cf3-45f9-9d69-c755c08a2504", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/73018d2e-6cf3-45f9-9d69-c755c08a2504.png", "timestamp": "2024-02-15T20:32:48.756344+00:00"}}, {"id": "365ecb9c-eece-457f-b6ed-4625704fb3b1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:09.143869+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road during daytime. It is rush hour, and there is moderate traffic on the road. The road is wide and has multiple lanes, with a few trees on either side. There are several tall buildings in the background.", "snapshot": {"id": "73018d2e-6cf3-45f9-9d69-c755c08a2504", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/73018d2e-6cf3-45f9-9d69-c755c08a2504.png", "timestamp": "2024-02-15T20:32:48.756344+00:00"}}, {"id": "f557e9be-efc3-4eee-b4e8-9a2b59a6b2ab", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:09.537410+00:00", "label": "true", "label_explanation": "The road is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "73018d2e-6cf3-45f9-9d69-c755c08a2504", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/73018d2e-6cf3-45f9-9d69-c755c08a2504.png", "timestamp": "2024-02-15T20:32:48.756344+00:00"}}, {"id": "1d00e6dc-c959-4759-bdd9-9bf7f4ae5b12", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.674193+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road during daytime. It is a wide road with multiple lanes, and there are several vehicles on the road, including buses and cars. There are also people walking on the sidewalks and crossing the street. The weather appears to be clear, and the road surface is dry.", "snapshot": {"id": "76d9b24e-b111-4bc2-9276-6a07df573d69", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/76d9b24e-b111-4bc2-9276-6a07df573d69.png", "timestamp": "2024-02-15T20:52:23.096817+00:00"}}, {"id": "900485df-3057-4f7c-8edc-4263f27ef842", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.362822+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "76d9b24e-b111-4bc2-9276-6a07df573d69", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/76d9b24e-b111-4bc2-9276-6a07df573d69.png", "timestamp": "2024-02-15T20:52:23.096817+00:00"}}, {"id": "e4f01a8b-140e-4d1b-affa-62a89907d1f5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.090793+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "76d9b24e-b111-4bc2-9276-6a07df573d69", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/76d9b24e-b111-4bc2-9276-6a07df573d69.png", "timestamp": "2024-02-15T20:52:23.096817+00:00"}}, {"id": "59105b92-26cf-47c9-a61d-0fc8855a091e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.616149+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "76d9b24e-b111-4bc2-9276-6a07df573d69", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/76d9b24e-b111-4bc2-9276-6a07df573d69.png", "timestamp": "2024-02-15T20:52:23.096817+00:00"}}, {"id": "c29a76e3-46ce-4ac9-8d7c-aa876fb18eaf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.450760+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "76d9b24e-b111-4bc2-9276-6a07df573d69", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/76d9b24e-b111-4bc2-9276-6a07df573d69.png", "timestamp": "2024-02-15T20:52:23.096817+00:00"}}, {"id": "0fc75321-dc07-48a0-88da-7dcd21c831c6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.935774+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "76d9b24e-b111-4bc2-9276-6a07df573d69", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/76d9b24e-b111-4bc2-9276-6a07df573d69.png", "timestamp": "2024-02-15T20:52:23.096817+00:00"}}, {"id": "35810934-469c-4548-8df6-a23f1de371fd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:11.880006+00:00", "label": "true", "label_explanation": "While the image is not corrupted, it does appear to be raining lightly. The road surface is wet and there are small puddles of water on the road.", "snapshot": {"id": "cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79.png", "timestamp": "2024-02-15T20:50:00.062992+00:00"}}, {"id": "64c5e8e1-ef28-4f23-beca-c13d5cfd9801", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.183400+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are small puddles of water on the road, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79.png", "timestamp": "2024-02-15T20:50:00.062992+00:00"}}, {"id": "90b2e981-e4b4-4fd1-95df-5db82521c564", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:11.641577+00:00", "label": "null", "label_explanation": "The image captures a wide, urban road with tall buildings on either side. It is daytime and the weather appears to be cloudy. There are multiple lanes of traffic, with cars, buses, and trucks visible. Pedestrians are crossing the road at a marked crosswalk.", "snapshot": {"id": "cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79.png", "timestamp": "2024-02-15T20:50:00.062992+00:00"}}, {"id": "9b21141e-c731-4207-82b3-8bfd8af957e9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.636895+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79.png", "timestamp": "2024-02-15T20:50:00.062992+00:00"}}, {"id": "ad93d8d4-7e7e-461a-87ae-b6919a607ac2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.427963+00:00", "label": "moderate", "label_explanation": "The traffic on the road is moderate. There are a number of cars, buses, and trucks on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79.png", "timestamp": "2024-02-15T20:50:00.062992+00:00"}}, {"id": "53277d3c-1096-486f-9fdd-e061bdbd6fc8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:11.240373+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/cfbaf4dd-f05f-4b8b-84c1-f05dc2f1cd79.png", "timestamp": "2024-02-15T20:50:00.062992+00:00"}}, {"id": "ebcf48dc-0f57-47fc-bf9a-7a2471e892da", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:03.187054+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It features multiple lanes of traffic, with buses, cars, and pedestrians present. The road is flanked by tall buildings and trees, with a clear blue sky overhead.", "snapshot": {"id": "c629a7a4-a2e0-4e21-b062-c7d8fd43012a", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c629a7a4-a2e0-4e21-b062-c7d8fd43012a.png", "timestamp": "2024-02-15T20:54:52.302457+00:00"}}, {"id": "7de951a2-c7be-4712-bf8e-0bdf072d0b59", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.236964+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving steadily without significant congestion.", "snapshot": {"id": "c629a7a4-a2e0-4e21-b062-c7d8fd43012a", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c629a7a4-a2e0-4e21-b062-c7d8fd43012a.png", "timestamp": "2024-02-15T20:54:52.302457+00:00"}}, {"id": "ba278bed-930f-4a89-9c26-7a5e8227d5af", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:03.830753+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "c629a7a4-a2e0-4e21-b062-c7d8fd43012a", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c629a7a4-a2e0-4e21-b062-c7d8fd43012a.png", "timestamp": "2024-02-15T20:54:52.302457+00:00"}}, {"id": "dccfe691-9b46-4a0c-b4c2-d0bf53ed02eb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:02.907179+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c629a7a4-a2e0-4e21-b062-c7d8fd43012a", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c629a7a4-a2e0-4e21-b062-c7d8fd43012a.png", "timestamp": "2024-02-15T20:54:52.302457+00:00"}}, {"id": "db5c28d4-c89c-4c2b-b1a4-8881a18d69a9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.490851+00:00", "label": "free", "label_explanation": "The road is free of any obstructions or blockades, allowing for smooth traffic flow.", "snapshot": {"id": "c629a7a4-a2e0-4e21-b062-c7d8fd43012a", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c629a7a4-a2e0-4e21-b062-c7d8fd43012a.png", "timestamp": "2024-02-15T20:54:52.302457+00:00"}}, {"id": "2a706418-dddd-4cde-bea5-0568aaa3d779", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:03.489221+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "c629a7a4-a2e0-4e21-b062-c7d8fd43012a", "camera_id": "000002", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000002/c629a7a4-a2e0-4e21-b062-c7d8fd43012a.png", "timestamp": "2024-02-15T20:54:52.302457+00:00"}}]}, {"id": "001512", "name": "ESTR. DO CAMPINHO, 2226 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893799, "longitude": -43.585431, "objects": ["water_level", "road_blockade", "traffic", "image_corrupted", "rain", "image_description"], "identifications": [{"id": "0ced7fe0-ed89-4362-9305-b3fa60b17d3e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.048842+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some puddles visible, indicating the presence of rain.", "snapshot": {"id": "3196cc33-9da5-420b-abfb-b46c8c6edfcd", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/3196cc33-9da5-420b-abfb-b46c8c6edfcd.png", "timestamp": "2024-02-15T20:30:19.847178+00:00"}}, {"id": "b64aa7d0-9717-4a9e-bb3d-7ca926780415", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.736113+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with some vehicles visible on the road. The wet road conditions may slow down traffic.", "snapshot": {"id": "3196cc33-9da5-420b-abfb-b46c8c6edfcd", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/3196cc33-9da5-420b-abfb-b46c8c6edfcd.png", "timestamp": "2024-02-15T20:30:19.847178+00:00"}}, {"id": "8ac462a1-cce1-45ad-9a1c-fe6a7830931b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.427913+00:00", "label": "low", "label_explanation": "The water level on the road is low, as there are only some puddles and no significant accumulation of water.", "snapshot": {"id": "3196cc33-9da5-420b-abfb-b46c8c6edfcd", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/3196cc33-9da5-420b-abfb-b46c8c6edfcd.png", "timestamp": "2024-02-15T20:30:19.847178+00:00"}}, {"id": "ea79498a-2fc4-406a-989d-8d6bdf66c58c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.734638+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during rainfall. It is daytime, and the road is wet with some puddles.", "snapshot": {"id": "3196cc33-9da5-420b-abfb-b46c8c6edfcd", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/3196cc33-9da5-420b-abfb-b46c8c6edfcd.png", "timestamp": "2024-02-15T20:30:19.847178+00:00"}}, {"id": "f95fbcae-c7e3-446c-9023-652aab374eb1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.526064+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3196cc33-9da5-420b-abfb-b46c8c6edfcd", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/3196cc33-9da5-420b-abfb-b46c8c6edfcd.png", "timestamp": "2024-02-15T20:30:19.847178+00:00"}}, {"id": "3e1090d3-6c49-45b3-b07f-e5b31b582de5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.998601+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear for traffic.", "snapshot": {"id": "3196cc33-9da5-420b-abfb-b46c8c6edfcd", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/3196cc33-9da5-420b-abfb-b46c8c6edfcd.png", "timestamp": "2024-02-15T20:30:19.847178+00:00"}}, {"id": "5439f737-883b-4802-9985-4f232c0fafaf", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.637735+00:00", "label": "moderate", "label_explanation": "The traffic is moving slowly due to the wet conditions, but it is still able to flow.", "snapshot": {"id": "89263a0e-8e7d-4b90-a34e-3e221493d177", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/89263a0e-8e7d-4b90-a34e-3e221493d177.png", "timestamp": "2024-02-15T20:42:51.532013+00:00"}}, {"id": "9e2428b8-065b-48ed-9e86-c7358f0f5a33", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.900872+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "89263a0e-8e7d-4b90-a34e-3e221493d177", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/89263a0e-8e7d-4b90-a34e-3e221493d177.png", "timestamp": "2024-02-15T20:42:51.532013+00:00"}}, {"id": "77cb1c1e-2613-4a27-80fc-72d75a2a41ac", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.365430+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road, but it is not causing any significant problems for traffic.", "snapshot": {"id": "89263a0e-8e7d-4b90-a34e-3e221493d177", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/89263a0e-8e7d-4b90-a34e-3e221493d177.png", "timestamp": "2024-02-15T20:42:51.532013+00:00"}}, {"id": "8d15a608-eeed-436d-942d-1deb1e2110aa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.712555+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is raining, and the road is wet. There are several vehicles on the road, including cars, a bus, and a motorcycle. The vehicles are driving slowly and cautiously due to the wet conditions. There are also a few pedestrians on the sidewalk, one of whom is holding an umbrella.", "snapshot": {"id": "89263a0e-8e7d-4b90-a34e-3e221493d177", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/89263a0e-8e7d-4b90-a34e-3e221493d177.png", "timestamp": "2024-02-15T20:42:51.532013+00:00"}}, {"id": "432b3f45-429b-4307-9f74-dc703921c678", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.562501+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "89263a0e-8e7d-4b90-a34e-3e221493d177", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/89263a0e-8e7d-4b90-a34e-3e221493d177.png", "timestamp": "2024-02-15T20:42:51.532013+00:00"}}, {"id": "fe64395b-9dcb-4764-b5cc-e6c5673c5179", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.955764+00:00", "label": "true", "label_explanation": "The road is wet and there are visible raindrops on the windshield of the vehicle capturing the scene.", "snapshot": {"id": "89263a0e-8e7d-4b90-a34e-3e221493d177", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/89263a0e-8e7d-4b90-a34e-3e221493d177.png", "timestamp": "2024-02-15T20:42:51.532013+00:00"}}, {"id": "21c24d84-0874-432d-9c6f-69485a54bd45", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:13.147347+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable.", "snapshot": {"id": "0db666f7-5eef-4bf9-8701-3e0c748e2263", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/0db666f7-5eef-4bf9-8701-3e0c748e2263.png", "timestamp": "2024-02-15T20:32:54.493399+00:00"}}, {"id": "cd994dee-7c1d-4e42-9989-84024029aed1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:12.562058+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "0db666f7-5eef-4bf9-8701-3e0c748e2263", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/0db666f7-5eef-4bf9-8701-3e0c748e2263.png", "timestamp": "2024-02-15T20:32:54.493399+00:00"}}, {"id": "12f88b78-a7a3-4091-bb30-0dc0395186cf", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:11.426552+00:00", "label": "true", "label_explanation": "The road is wet, and there are water droplets on the windshield of the vehicle taking the image. There are also puddles on the road.", "snapshot": {"id": "0db666f7-5eef-4bf9-8701-3e0c748e2263", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/0db666f7-5eef-4bf9-8701-3e0c748e2263.png", "timestamp": "2024-02-15T20:32:54.493399+00:00"}}, {"id": "1a841162-0b0c-4b2d-9c2c-d99b8e41d58f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:11.134516+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a tree in the median. There are residential buildings on both sides of the road. The weather is cloudy and wet, and the road is wet but not flooded.", "snapshot": {"id": "0db666f7-5eef-4bf9-8701-3e0c748e2263", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/0db666f7-5eef-4bf9-8701-3e0c748e2263.png", "timestamp": "2024-02-15T20:32:54.493399+00:00"}}, {"id": "5e209d67-8fdb-4748-b9ba-b6617971438c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:12.162787+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no significant puddles or standing water.", "snapshot": {"id": "0db666f7-5eef-4bf9-8701-3e0c748e2263", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/0db666f7-5eef-4bf9-8701-3e0c748e2263.png", "timestamp": "2024-02-15T20:32:54.493399+00:00"}}, {"id": "3e467b22-858d-4f51-8073-c4d2dde28107", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:10.702762+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0db666f7-5eef-4bf9-8701-3e0c748e2263", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/0db666f7-5eef-4bf9-8701-3e0c748e2263.png", "timestamp": "2024-02-15T20:32:54.493399+00:00"}}, {"id": "82efd3b3-57a3-4d70-a1e2-5bd7f76f6b72", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:39.636412+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions. There are no major obstructions or hazards visible in the image.", "snapshot": {"id": "ac2ece82-7e86-478a-89c8-e7e2109aa6d5", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ac2ece82-7e86-478a-89c8-e7e2109aa6d5.png", "timestamp": "2024-02-15T20:35:23.472914+00:00"}}, {"id": "fdd32b5f-4163-4c8b-bb36-4ccd69f612ed", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.020257+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during rainfall. It shows a wide, straight road with two lanes separated by a central median. The road is lined with trees and buildings, with commercial establishments on one side and residential buildings on the other. The weather is overcast, and the road is wet from the rain.", "snapshot": {"id": "ac2ece82-7e86-478a-89c8-e7e2109aa6d5", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ac2ece82-7e86-478a-89c8-e7e2109aa6d5.png", "timestamp": "2024-02-15T20:35:23.472914+00:00"}}, {"id": "b8ddc00a-e7b0-4e7b-843d-383e9682e162", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.120301+00:00", "label": "free", "label_explanation": "The road is free of any blockades or obstructions. All lanes are open to traffic, and there are no detours or road closures.", "snapshot": {"id": "ac2ece82-7e86-478a-89c8-e7e2109aa6d5", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ac2ece82-7e86-478a-89c8-e7e2109aa6d5.png", "timestamp": "2024-02-15T20:35:23.472914+00:00"}}, {"id": "6a011e9c-2c07-459b-86da-e22275ab6a84", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:37.594505+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ac2ece82-7e86-478a-89c8-e7e2109aa6d5", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ac2ece82-7e86-478a-89c8-e7e2109aa6d5.png", "timestamp": "2024-02-15T20:35:23.472914+00:00"}}, {"id": "113544a9-310e-4a90-a31a-11a8bc812543", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.975673+00:00", "label": "low", "label_explanation": "The water level on the road is low. While there are some puddles, they are shallow and do not impede traffic flow.", "snapshot": {"id": "ac2ece82-7e86-478a-89c8-e7e2109aa6d5", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ac2ece82-7e86-478a-89c8-e7e2109aa6d5.png", "timestamp": "2024-02-15T20:35:23.472914+00:00"}}, {"id": "3a2bb16f-7978-43d4-a082-b22a851c4b5b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.317105+00:00", "label": "true", "label_explanation": "The image clearly shows rain falling on the road. The rain is moderate, as it is not obscuring visibility or causing significant reflections on the road surface.", "snapshot": {"id": "ac2ece82-7e86-478a-89c8-e7e2109aa6d5", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ac2ece82-7e86-478a-89c8-e7e2109aa6d5.png", "timestamp": "2024-02-15T20:35:23.472914+00:00"}}, {"id": "4547b67a-98df-4b63-9535-309347e86c05", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.546419+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "793a2905-0991-4acb-9070-08adaff5f95e", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/793a2905-0991-4acb-9070-08adaff5f95e.png", "timestamp": "2024-02-15T20:37:53.573878+00:00"}}, {"id": "00a38ed2-419f-4f8e-916a-b1262e7e594b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.034687+00:00", "label": "true", "label_explanation": "The road is wet, and there are visible raindrops on the windshield of the vehicle capturing the image.", "snapshot": {"id": "793a2905-0991-4acb-9070-08adaff5f95e", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/793a2905-0991-4acb-9070-08adaff5f95e.png", "timestamp": "2024-02-15T20:37:53.573878+00:00"}}, {"id": "a31039f4-2117-44ca-b856-0691947ef0e3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.978146+00:00", "label": "moderate", "label_explanation": "The traffic is moving slowly due to the wet road conditions.", "snapshot": {"id": "793a2905-0991-4acb-9070-08adaff5f95e", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/793a2905-0991-4acb-9070-08adaff5f95e.png", "timestamp": "2024-02-15T20:37:53.573878+00:00"}}, {"id": "59cb4a4a-ea2a-4ed7-a5ac-e9a11b708b1a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.100987+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "793a2905-0991-4acb-9070-08adaff5f95e", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/793a2905-0991-4acb-9070-08adaff5f95e.png", "timestamp": "2024-02-15T20:37:53.573878+00:00"}}, {"id": "be92eb1b-66c3-480c-842f-0ed33e9cad4a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.496437+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road, but it is not causing any significant traffic disruptions.", "snapshot": {"id": "793a2905-0991-4acb-9070-08adaff5f95e", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/793a2905-0991-4acb-9070-08adaff5f95e.png", "timestamp": "2024-02-15T20:37:53.573878+00:00"}}, {"id": "a6ff7f11-d1af-4de1-b1dc-3286d1845c54", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.437716+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is raining, and the road is wet. There are cars on the road, and the surrounding area is a mix of residential and commercial buildings.", "snapshot": {"id": "793a2905-0991-4acb-9070-08adaff5f95e", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/793a2905-0991-4acb-9070-08adaff5f95e.png", "timestamp": "2024-02-15T20:37:53.573878+00:00"}}, {"id": "a5033669-35bf-4cb5-ae3a-cab1650023be", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.086726+00:00", "label": "moderate", "label_explanation": "The presence of rain and wet road conditions can make driving more challenging. However, the image does not show any major traffic disruptions or hazards. Traffic flow appears to be moderate, with cars moving at a reduced speed due to the rain.", "snapshot": {"id": "53a9673e-c201-4060-ab86-33b2e99ea6cb", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/53a9673e-c201-4060-ab86-33b2e99ea6cb.png", "timestamp": "2024-02-15T20:40:26.247068+00:00"}}, {"id": "17c2dbae-28ae-4090-9cda-8c121008f2e0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.152014+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "53a9673e-c201-4060-ab86-33b2e99ea6cb", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/53a9673e-c201-4060-ab86-33b2e99ea6cb.png", "timestamp": "2024-02-15T20:40:26.247068+00:00"}}, {"id": "90dd51d4-bc5e-4ef7-bfcb-5028ebea8c43", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.433269+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during rainfall. It shows a wide, straight road with two lanes, one for each direction. The road is lined with trees and residential buildings. There are cars on the road, but the exact number cannot be determined due to the rain and reflections on the wet road surface.", "snapshot": {"id": "53a9673e-c201-4060-ab86-33b2e99ea6cb", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/53a9673e-c201-4060-ab86-33b2e99ea6cb.png", "timestamp": "2024-02-15T20:40:26.247068+00:00"}}, {"id": "ca50c6a4-58d0-47ec-9182-e51f6b58b881", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.344681+00:00", "label": "free", "label_explanation": "The road is not blocked or obstructed in any way. All lanes are open to traffic, and there are no visible barriers or obstacles on the road.", "snapshot": {"id": "53a9673e-c201-4060-ab86-33b2e99ea6cb", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/53a9673e-c201-4060-ab86-33b2e99ea6cb.png", "timestamp": "2024-02-15T20:40:26.247068+00:00"}}, {"id": "3073cc05-6cec-4469-a0cb-9418ee16f2ed", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.646295+00:00", "label": "true", "label_explanation": "The image clearly shows rain falling on the road. The rain is heavy enough to cause reflections on the road surface, making it difficult to see the exact condition of the road.", "snapshot": {"id": "53a9673e-c201-4060-ab86-33b2e99ea6cb", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/53a9673e-c201-4060-ab86-33b2e99ea6cb.png", "timestamp": "2024-02-15T20:40:26.247068+00:00"}}, {"id": "e95b4275-2d89-4f33-9eb7-81099ce6ee92", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.874200+00:00", "label": "low", "label_explanation": "While it is raining and the road is wet, there are no significant puddles or water accumulation visible on the road surface. The water level can be classified as 'low' as per the guidelines.", "snapshot": {"id": "53a9673e-c201-4060-ab86-33b2e99ea6cb", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/53a9673e-c201-4060-ab86-33b2e99ea6cb.png", "timestamp": "2024-02-15T20:40:26.247068+00:00"}}, {"id": "9067928f-50ba-469f-80ae-c2511f414374", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.082002+00:00", "label": "low", "label_explanation": "The water level on the road is low. While there are puddles, they are relatively small and shallow, and do not pose a significant risk to drivers.", "snapshot": {"id": "ce2a0042-b379-4154-a711-73e74a8431bc", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ce2a0042-b379-4154-a711-73e74a8431bc.png", "timestamp": "2024-02-15T20:47:37.013774+00:00"}}, {"id": "5953d9e1-2092-4cbd-bdd7-6f5f642b2e05", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:47.694056+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also puddles of water on the road, which are reflecting the light from the streetlights.", "snapshot": {"id": "ce2a0042-b379-4154-a711-73e74a8431bc", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ce2a0042-b379-4154-a711-73e74a8431bc.png", "timestamp": "2024-02-15T20:47:37.013774+00:00"}}, {"id": "8b168361-bb89-4d15-910d-eb1e196dfa94", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:47.440052+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears overcast with dark clouds covering the sky. There are several cars on the road, a bus, and a few trees on either side of the road.", "snapshot": {"id": "ce2a0042-b379-4154-a711-73e74a8431bc", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ce2a0042-b379-4154-a711-73e74a8431bc.png", "timestamp": "2024-02-15T20:47:37.013774+00:00"}}, {"id": "ba486422-8454-4f95-a745-9e6c595d5d78", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:46.994202+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ce2a0042-b379-4154-a711-73e74a8431bc", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ce2a0042-b379-4154-a711-73e74a8431bc.png", "timestamp": "2024-02-15T20:47:37.013774+00:00"}}, {"id": "981b12d0-3fdc-4825-b658-f1fa406a3d36", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.961523+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles.", "snapshot": {"id": "ce2a0042-b379-4154-a711-73e74a8431bc", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ce2a0042-b379-4154-a711-73e74a8431bc.png", "timestamp": "2024-02-15T20:47:37.013774+00:00"}}, {"id": "5ea306cd-09f3-450e-a797-aaefc67c3d4c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.371718+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "ce2a0042-b379-4154-a711-73e74a8431bc", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ce2a0042-b379-4154-a711-73e74a8431bc.png", "timestamp": "2024-02-15T20:47:37.013774+00:00"}}, {"id": "577d83fa-06cb-4a7f-a297-d96b59b398c8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.881601+00:00", "label": "low", "label_explanation": "While the road is wet due to rain, there are no significant puddles or water accumulation observed. The water level is low, with no major impact on traffic flow.", "snapshot": {"id": "1a1f8acb-40e6-48ed-aba2-2ec128564c21", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/1a1f8acb-40e6-48ed-aba2-2ec128564c21.png", "timestamp": "2024-02-15T20:45:12.776796+00:00"}}, {"id": "0a8d739b-d9af-4e96-a58a-c73616c5a7b9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.592050+00:00", "label": "true", "label_explanation": "The image clearly shows rain falling on the road and surrounding areas. The road is wet and there are visible raindrops on the windshield of the vehicle capturing the scene.", "snapshot": {"id": "1a1f8acb-40e6-48ed-aba2-2ec128564c21", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/1a1f8acb-40e6-48ed-aba2-2ec128564c21.png", "timestamp": "2024-02-15T20:45:12.776796+00:00"}}, {"id": "4edde437-47f3-4490-8307-461b653ebca2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.066580+00:00", "label": "moderate", "label_explanation": "The traffic flow is moderate, with vehicles moving slowly due to the wet road conditions. There are no major obstructions or accidents visible in the image.", "snapshot": {"id": "1a1f8acb-40e6-48ed-aba2-2ec128564c21", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/1a1f8acb-40e6-48ed-aba2-2ec128564c21.png", "timestamp": "2024-02-15T20:45:12.776796+00:00"}}, {"id": "7385906c-0d82-47a9-80e2-5352b04cc55d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.980130+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1a1f8acb-40e6-48ed-aba2-2ec128564c21", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/1a1f8acb-40e6-48ed-aba2-2ec128564c21.png", "timestamp": "2024-02-15T20:45:12.776796+00:00"}}, {"id": "c852c028-4c01-4c6f-8d20-e3d7a4e73f8c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.282552+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during rainfall. It shows a wide, straight road with commercial buildings and residential houses on either side. The road is wet and there are several cars on it, some parked and others moving slowly due to the rain. There are also a few people walking on the sidewalks.", "snapshot": {"id": "1a1f8acb-40e6-48ed-aba2-2ec128564c21", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/1a1f8acb-40e6-48ed-aba2-2ec128564c21.png", "timestamp": "2024-02-15T20:45:12.776796+00:00"}}, {"id": "e6124574-4163-49e2-b0bb-91b58a15ec22", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.294241+00:00", "label": "free", "label_explanation": "The road is clear, with no visible blockades or obstructions. Traffic is able to flow freely in both directions.", "snapshot": {"id": "1a1f8acb-40e6-48ed-aba2-2ec128564c21", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/1a1f8acb-40e6-48ed-aba2-2ec128564c21.png", "timestamp": "2024-02-15T20:45:12.776796+00:00"}}, {"id": "33e71399-e1d4-4ca7-92be-44f013826834", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.722113+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "9e0fc572-8294-42ec-bc2f-08929cf89fe1", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/9e0fc572-8294-42ec-bc2f-08929cf89fe1.png", "timestamp": "2024-02-15T20:54:53.406208+00:00"}}, {"id": "516b9a1c-10ec-4ab9-92c2-82043140097e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.157583+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rainfall. There are several vehicles on the road, including cars, buses, and motorcycles. The road is lined with trees and buildings.", "snapshot": {"id": "9e0fc572-8294-42ec-bc2f-08929cf89fe1", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/9e0fc572-8294-42ec-bc2f-08929cf89fe1.png", "timestamp": "2024-02-15T20:54:53.406208+00:00"}}, {"id": "ae3862ad-f3ae-4561-986d-b8e78d325d68", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.925043+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9e0fc572-8294-42ec-bc2f-08929cf89fe1", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/9e0fc572-8294-42ec-bc2f-08929cf89fe1.png", "timestamp": "2024-02-15T20:54:53.406208+00:00"}}, {"id": "84437948-35fa-426f-b868-b8be2dcfc79f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.237078+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "9e0fc572-8294-42ec-bc2f-08929cf89fe1", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/9e0fc572-8294-42ec-bc2f-08929cf89fe1.png", "timestamp": "2024-02-15T20:54:53.406208+00:00"}}, {"id": "5a98e5fc-bb60-48bb-8160-6360c64c2741", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.008316+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "9e0fc572-8294-42ec-bc2f-08929cf89fe1", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/9e0fc572-8294-42ec-bc2f-08929cf89fe1.png", "timestamp": "2024-02-15T20:54:53.406208+00:00"}}, {"id": "d54e3713-f45c-4455-b4b9-fbfa4b4622f4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.445381+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "9e0fc572-8294-42ec-bc2f-08929cf89fe1", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/9e0fc572-8294-42ec-bc2f-08929cf89fe1.png", "timestamp": "2024-02-15T20:54:53.406208+00:00"}}, {"id": "f0699d59-2c75-40fb-bdf5-c65ae2f47255", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.148018+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions. There are no major obstructions visible, and the traffic is able to flow freely.", "snapshot": {"id": "07b96a6b-1bda-4a92-b814-6efe715a17c9", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/07b96a6b-1bda-4a92-b814-6efe715a17c9.png", "timestamp": "2024-02-15T20:50:01.915102+00:00"}}, {"id": "d3e7a464-629c-452c-bd32-bb975c56641d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.949585+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions. The water is mostly confined to the right-hand side of the road, and it does not appear to be very deep.", "snapshot": {"id": "07b96a6b-1bda-4a92-b814-6efe715a17c9", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/07b96a6b-1bda-4a92-b814-6efe715a17c9.png", "timestamp": "2024-02-15T20:50:01.915102+00:00"}}, {"id": "4f196ac2-9864-4d62-a029-9781969b161e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.596537+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are water droplets visible on the windshield of the vehicle taking the image. There are also reflections on the road surface from the streetlights, which indicate that the road is wet.", "snapshot": {"id": "07b96a6b-1bda-4a92-b814-6efe715a17c9", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/07b96a6b-1bda-4a92-b814-6efe715a17c9.png", "timestamp": "2024-02-15T20:50:01.915102+00:00"}}, {"id": "fb505a24-1e45-4ad1-bd15-7e035d05fdb7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.643172+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "07b96a6b-1bda-4a92-b814-6efe715a17c9", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/07b96a6b-1bda-4a92-b814-6efe715a17c9.png", "timestamp": "2024-02-15T20:50:01.915102+00:00"}}, {"id": "0b37b9ec-dc9a-4d40-99f2-bb2c3f2ca059", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.419713+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear, and there are no obstructions that would prevent vehicles from passing.", "snapshot": {"id": "07b96a6b-1bda-4a92-b814-6efe715a17c9", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/07b96a6b-1bda-4a92-b814-6efe715a17c9.png", "timestamp": "2024-02-15T20:50:01.915102+00:00"}}, {"id": "75df2138-6340-457a-942e-6ab0b7becc39", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.200195+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a tree in the median. There are residential buildings on either side of the road, and the weather appears to be overcast.", "snapshot": {"id": "07b96a6b-1bda-4a92-b814-6efe715a17c9", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/07b96a6b-1bda-4a92-b814-6efe715a17c9.png", "timestamp": "2024-02-15T20:50:01.915102+00:00"}}, {"id": "81717c52-b92a-4d1f-b0ba-1d6169f78e20", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.811364+00:00", "label": "moderate", "label_explanation": "The traffic is moving slowly due to the rain. There are no major obstructions, but the wet road conditions are causing some congestion.", "snapshot": {"id": "ebd338ff-ba4b-4134-a512-e135c980d5f3", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ebd338ff-ba4b-4134-a512-e135c980d5f3.png", "timestamp": "2024-02-15T20:52:25.514408+00:00"}}, {"id": "96d78aca-55f9-4813-b1f4-9f38c928871c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.594371+00:00", "label": "low", "label_explanation": "There is some water on the road, but it is not covering any significant portion of the road surface. The water level is low.", "snapshot": {"id": "ebd338ff-ba4b-4134-a512-e135c980d5f3", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ebd338ff-ba4b-4134-a512-e135c980d5f3.png", "timestamp": "2024-02-15T20:52:25.514408+00:00"}}, {"id": "ef75f9a8-e4fc-437e-9bed-a40092ba94fb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.814627+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ebd338ff-ba4b-4134-a512-e135c980d5f3", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ebd338ff-ba4b-4134-a512-e135c980d5f3.png", "timestamp": "2024-02-15T20:52:25.514408+00:00"}}, {"id": "e37d15be-82a1-43ad-abb1-f7c2ca62d7f4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.007916+00:00", "label": "free", "label_explanation": "There are no road blockades in the image. The road is clear for traffic.", "snapshot": {"id": "ebd338ff-ba4b-4134-a512-e135c980d5f3", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ebd338ff-ba4b-4134-a512-e135c980d5f3.png", "timestamp": "2024-02-15T20:52:25.514408+00:00"}}, {"id": "fdfbef23-1ca2-4d3a-a502-0d6a97c29e47", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.384364+00:00", "label": "true", "label_explanation": "The road surface is wet, and there is water on the curbs. It is raining in the image.", "snapshot": {"id": "ebd338ff-ba4b-4134-a512-e135c980d5f3", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ebd338ff-ba4b-4134-a512-e135c980d5f3.png", "timestamp": "2024-02-15T20:52:25.514408+00:00"}}, {"id": "2f9e05da-7507-490a-ac94-f55061ce1e80", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.028622+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a tree in the median. There are cars on the road, and the weather appears to be cloudy and wet.", "snapshot": {"id": "ebd338ff-ba4b-4134-a512-e135c980d5f3", "camera_id": "001512", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001512/ebd338ff-ba4b-4134-a512-e135c980d5f3.png", "timestamp": "2024-02-15T20:52:25.514408+00:00"}}]}, {"id": "001486", "name": "AV. MARACAN\u00c3 X R. JOS\u00c9 HIGINO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92798885, "longitude": -43.23983491, "objects": ["image_corrupted", "road_blockade", "image_description", "traffic", "rain", "water_level"], "identifications": [{"id": "73e42369-720d-45b9-bff4-e723a2beb8b2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.600217+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "47e312eb-7b88-486e-9749-c626324b6f35", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/47e312eb-7b88-486e-9749-c626324b6f35.png", "timestamp": "2024-02-15T20:30:24.882778+00:00"}}, {"id": "2252afa3-5175-4715-ba32-e57fdd9066bb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:40.270752+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are puddles of water on the ground. The rain is not heavy, but it is enough to make the roads slippery and hazardous.", "snapshot": {"id": "47e312eb-7b88-486e-9749-c626324b6f35", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/47e312eb-7b88-486e-9749-c626324b6f35.png", "timestamp": "2024-02-15T20:30:24.882778+00:00"}}, {"id": "e5173a8b-f133-4692-b055-e92b260ecef6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.871763+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road intersection during daytime. It is rush hour, and there is moderate traffic on the road. The weather is cloudy, and the road surface is wet from recent rain. There are several people crossing the intersection, and a bus is stopped at the red light.", "snapshot": {"id": "47e312eb-7b88-486e-9749-c626324b6f35", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/47e312eb-7b88-486e-9749-c626324b6f35.png", "timestamp": "2024-02-15T20:30:24.882778+00:00"}}, {"id": "d3763981-2f03-4461-82c6-227a81a464aa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:40.874220+00:00", "label": "free", "label_explanation": "There are no road blockades in the image. The road is clear, and traffic is able to move freely.", "snapshot": {"id": "47e312eb-7b88-486e-9749-c626324b6f35", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/47e312eb-7b88-486e-9749-c626324b6f35.png", "timestamp": "2024-02-15T20:30:24.882778+00:00"}}, {"id": "a43743a0-9d53-4a2c-af23-43a9e43c4449", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:40.665779+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars, buses, and pedestrians all moving through the intersection. The traffic is not stopped, but it is moving slowly.", "snapshot": {"id": "47e312eb-7b88-486e-9749-c626324b6f35", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/47e312eb-7b88-486e-9749-c626324b6f35.png", "timestamp": "2024-02-15T20:30:24.882778+00:00"}}, {"id": "afe1d954-323a-41fa-ab90-1f51ecb946f3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:40.478088+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some puddles of water, but they are not deep enough to cause any significant problems for traffic.", "snapshot": {"id": "47e312eb-7b88-486e-9749-c626324b6f35", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/47e312eb-7b88-486e-9749-c626324b6f35.png", "timestamp": "2024-02-15T20:30:24.882778+00:00"}}, {"id": "4c524569-8ea3-4c96-8a05-c97eadccc954", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.564499+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving slowly due to the wet road conditions.", "snapshot": {"id": "7acd93e0-4579-41ba-be32-8dac4bd7c480", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7acd93e0-4579-41ba-be32-8dac4bd7c480.png", "timestamp": "2024-02-15T20:45:17.567471+00:00"}}, {"id": "1a4ff3f3-1668-4676-a0b1-6de80b1f2b67", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.024743+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also crossing the intersection. The road is wet from recent rain, and there are some puddles on the ground.", "snapshot": {"id": "7acd93e0-4579-41ba-be32-8dac4bd7c480", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7acd93e0-4579-41ba-be32-8dac4bd7c480.png", "timestamp": "2024-02-15T20:45:17.567471+00:00"}}, {"id": "6547e3b1-4b2d-4b48-aaca-24dffa8abbbe", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.735512+00:00", "label": "free", "label_explanation": "There are no road blockades present, and all lanes are open to traffic.", "snapshot": {"id": "7acd93e0-4579-41ba-be32-8dac4bd7c480", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7acd93e0-4579-41ba-be32-8dac4bd7c480.png", "timestamp": "2024-02-15T20:45:17.567471+00:00"}}, {"id": "139109e7-26da-49ae-89de-2be9be135d64", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.360702+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few puddles present.", "snapshot": {"id": "7acd93e0-4579-41ba-be32-8dac4bd7c480", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7acd93e0-4579-41ba-be32-8dac4bd7c480.png", "timestamp": "2024-02-15T20:45:17.567471+00:00"}}, {"id": "da65008c-4c9e-4dbd-9ea1-ab68270568c1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.177941+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are some puddles on the ground.", "snapshot": {"id": "7acd93e0-4579-41ba-be32-8dac4bd7c480", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7acd93e0-4579-41ba-be32-8dac4bd7c480.png", "timestamp": "2024-02-15T20:45:17.567471+00:00"}}, {"id": "3f1548b5-81b6-4a5c-9df8-0b7543309fb8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.772762+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7acd93e0-4579-41ba-be32-8dac4bd7c480", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7acd93e0-4579-41ba-be32-8dac4bd7c480.png", "timestamp": "2024-02-15T20:45:17.567471+00:00"}}, {"id": "55a33fb3-6427-4291-ad4c-fdc8a3fb60e0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.227634+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move without any major delays. The traffic lights are functioning properly, and there are no accidents or other obstructions blocking the road.", "snapshot": {"id": "8031b97f-06a6-4a3a-82ea-c14e0016cf5d", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/8031b97f-06a6-4a3a-82ea-c14e0016cf5d.png", "timestamp": "2024-02-15T20:35:26.607218+00:00"}}, {"id": "efd1162c-2c03-44e2-b263-1768c52c3193", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.319455+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles of water visible. The rain is not heavy enough to cause any significant traffic disruptions.", "snapshot": {"id": "8031b97f-06a6-4a3a-82ea-c14e0016cf5d", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/8031b97f-06a6-4a3a-82ea-c14e0016cf5d.png", "timestamp": "2024-02-15T20:35:26.607218+00:00"}}, {"id": "66eaf00c-ac1a-4bef-9f4d-19e3b7750ee7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.989148+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy with some light rain. There are several vehicles on the road, including cars and buses. Pedestrians are also visible, crossing the intersection. The road is marked with traffic signs and lane markings.", "snapshot": {"id": "8031b97f-06a6-4a3a-82ea-c14e0016cf5d", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/8031b97f-06a6-4a3a-82ea-c14e0016cf5d.png", "timestamp": "2024-02-15T20:35:26.607218+00:00"}}, {"id": "6ec89708-9ed8-4425-8137-f22b9160ba75", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.557399+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8031b97f-06a6-4a3a-82ea-c14e0016cf5d", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/8031b97f-06a6-4a3a-82ea-c14e0016cf5d.png", "timestamp": "2024-02-15T20:35:26.607218+00:00"}}, {"id": "a9e9defd-7551-4137-8297-706c83b1fdee", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.796335+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no significant puddles or areas where the water is deep enough to cause problems for vehicles or pedestrians.", "snapshot": {"id": "8031b97f-06a6-4a3a-82ea-c14e0016cf5d", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/8031b97f-06a6-4a3a-82ea-c14e0016cf5d.png", "timestamp": "2024-02-15T20:35:26.607218+00:00"}}, {"id": "c913f72b-7bca-4585-bfbf-8d5e54125f9a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.864510+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and passable in all directions.", "snapshot": {"id": "8031b97f-06a6-4a3a-82ea-c14e0016cf5d", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/8031b97f-06a6-4a3a-82ea-c14e0016cf5d.png", "timestamp": "2024-02-15T20:35:26.607218+00:00"}}, {"id": "10b0f0c1-4c2f-4360-8e99-a3f1abedf522", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.390840+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "83e13b00-549e-4584-ad04-ed2baa9fa503", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/83e13b00-549e-4584-ad04-ed2baa9fa503.png", "timestamp": "2024-02-15T20:37:58.228600+00:00"}}, {"id": "672e72d9-3fce-4c2e-a49a-36113acc3542", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.120156+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the ground. It appears to have been raining recently, but the rain has stopped.", "snapshot": {"id": "83e13b00-549e-4584-ad04-ed2baa9fa503", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/83e13b00-549e-4584-ad04-ed2baa9fa503.png", "timestamp": "2024-02-15T20:37:58.228600+00:00"}}, {"id": "46305a1c-0ba8-4d71-b03a-5c19b467c428", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:14.378546+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "83e13b00-549e-4584-ad04-ed2baa9fa503", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/83e13b00-549e-4584-ad04-ed2baa9fa503.png", "timestamp": "2024-02-15T20:37:58.228600+00:00"}}, {"id": "6bd38dbd-017b-47cc-a602-461faba07652", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:16.163763+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear, and all lanes are open to traffic.", "snapshot": {"id": "83e13b00-549e-4584-ad04-ed2baa9fa503", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/83e13b00-549e-4584-ad04-ed2baa9fa503.png", "timestamp": "2024-02-15T20:37:58.228600+00:00"}}, {"id": "3c132162-c138-4fc0-800a-f97ef38e9594", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.858125+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move without any significant delays.", "snapshot": {"id": "83e13b00-549e-4584-ad04-ed2baa9fa503", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/83e13b00-549e-4584-ad04-ed2baa9fa503.png", "timestamp": "2024-02-15T20:37:58.228600+00:00"}}, {"id": "dc86f608-48f2-4df5-a426-deb7a2d4d384", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:14.738412+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including a police car, a black Chevrolet, and a yellow taxi. Pedestrians are crossing the street, and there are trees and buildings in the background.", "snapshot": {"id": "83e13b00-549e-4584-ad04-ed2baa9fa503", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/83e13b00-549e-4584-ad04-ed2baa9fa503.png", "timestamp": "2024-02-15T20:37:58.228600+00:00"}}, {"id": "1e1ad268-9cad-4b21-a56a-b0e82fc04cd6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.974488+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving slowly due to the wet road conditions.", "snapshot": {"id": "0b524677-1755-4e75-9dc7-3031304fabec", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/0b524677-1755-4e75-9dc7-3031304fabec.png", "timestamp": "2024-02-15T20:40:29.176033+00:00"}}, {"id": "7698d0fd-77e2-4cdd-b866-a43fbbe513c0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.342417+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road.", "snapshot": {"id": "0b524677-1755-4e75-9dc7-3031304fabec", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/0b524677-1755-4e75-9dc7-3031304fabec.png", "timestamp": "2024-02-15T20:40:29.176033+00:00"}}, {"id": "c1db55a4-62c5-4a37-91a9-4f72b92be6fc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.920622+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0b524677-1755-4e75-9dc7-3031304fabec", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/0b524677-1755-4e75-9dc7-3031304fabec.png", "timestamp": "2024-02-15T20:40:29.176033+00:00"}}, {"id": "adf5f78c-a430-4675-ab14-df012d3baf27", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.685134+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "0b524677-1755-4e75-9dc7-3031304fabec", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/0b524677-1755-4e75-9dc7-3031304fabec.png", "timestamp": "2024-02-15T20:40:29.176033+00:00"}}, {"id": "13fcd7a9-ae45-488a-8fc5-d3db789dd337", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.115945+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars, a van, and a bus. Pedestrians are also visible, crossing the intersection. There are trees and buildings in the background.", "snapshot": {"id": "0b524677-1755-4e75-9dc7-3031304fabec", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/0b524677-1755-4e75-9dc7-3031304fabec.png", "timestamp": "2024-02-15T20:40:29.176033+00:00"}}, {"id": "c8aa85bf-21e5-4a0e-b6de-c9ce62ee02c2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.192764+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "0b524677-1755-4e75-9dc7-3031304fabec", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/0b524677-1755-4e75-9dc7-3031304fabec.png", "timestamp": "2024-02-15T20:40:29.176033+00:00"}}, {"id": "1ef94465-c2c5-4f48-ad33-c3a798bd7bdb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.593613+00:00", "label": "moderate", "label_explanation": "There is moderate traffic on the road, but it is still flowing smoothly.", "snapshot": {"id": "5a8d4152-a100-4546-9363-40a01cb27d60", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/5a8d4152-a100-4546-9363-40a01cb27d60.png", "timestamp": "2024-02-15T20:47:39.263746+00:00"}}, {"id": "212c83ec-af3a-480d-bb15-a143fc853a19", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.481312+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road intersection during daytime. It is rush hour, and there is moderate traffic on the road. The road is wet from recent rain, but there are no significant puddles or flooding. There are a few trees on either side of the road, and buildings and power lines in the background.", "snapshot": {"id": "5a8d4152-a100-4546-9363-40a01cb27d60", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/5a8d4152-a100-4546-9363-40a01cb27d60.png", "timestamp": "2024-02-15T20:47:39.263746+00:00"}}, {"id": "a0304315-9951-49e8-959f-6733ce649053", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.776750+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "5a8d4152-a100-4546-9363-40a01cb27d60", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/5a8d4152-a100-4546-9363-40a01cb27d60.png", "timestamp": "2024-02-15T20:47:39.263746+00:00"}}, {"id": "0ed9e61a-b4d0-4b0b-9ca9-d883d1de8229", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.149966+00:00", "label": "low", "label_explanation": "There is no significant water on the road surface.", "snapshot": {"id": "5a8d4152-a100-4546-9363-40a01cb27d60", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/5a8d4152-a100-4546-9363-40a01cb27d60.png", "timestamp": "2024-02-15T20:47:39.263746+00:00"}}, {"id": "463929df-baae-4ada-b8f8-f11e98333616", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.803441+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "5a8d4152-a100-4546-9363-40a01cb27d60", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/5a8d4152-a100-4546-9363-40a01cb27d60.png", "timestamp": "2024-02-15T20:47:39.263746+00:00"}}, {"id": "5b0c6c57-195c-4fba-a062-c07f8c2afdfb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.971445+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5a8d4152-a100-4546-9363-40a01cb27d60", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/5a8d4152-a100-4546-9363-40a01cb27d60.png", "timestamp": "2024-02-15T20:47:39.263746+00:00"}}, {"id": "d283a040-a414-4203-a1d7-4f7a52216390", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.044040+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving slowly due to the wet conditions.", "snapshot": {"id": "48be53f2-7cb3-4648-9f98-5abc6be6fa22", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/48be53f2-7cb3-4648-9f98-5abc6be6fa22.png", "timestamp": "2024-02-15T20:42:52.511901+00:00"}}, {"id": "e2bf9279-b461-4ef5-b794-3e457deddb47", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.803604+00:00", "label": "low", "label_explanation": "There are some puddles on the road, but the water level is not high enough to cause any significant traffic disruptions.", "snapshot": {"id": "48be53f2-7cb3-4648-9f98-5abc6be6fa22", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/48be53f2-7cb3-4648-9f98-5abc6be6fa22.png", "timestamp": "2024-02-15T20:42:52.511901+00:00"}}, {"id": "f45b08aa-eaac-4176-8f5b-e18254dfb870", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.347198+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "48be53f2-7cb3-4648-9f98-5abc6be6fa22", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/48be53f2-7cb3-4648-9f98-5abc6be6fa22.png", "timestamp": "2024-02-15T20:42:52.511901+00:00"}}, {"id": "07c219b9-33aa-4bab-a3e6-b4c6a630a4d7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.607231+00:00", "label": "true", "label_explanation": "The road is wet, and there are some puddles. It appears to have been raining recently.", "snapshot": {"id": "48be53f2-7cb3-4648-9f98-5abc6be6fa22", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/48be53f2-7cb3-4648-9f98-5abc6be6fa22.png", "timestamp": "2024-02-15T20:42:52.511901+00:00"}}, {"id": "dcaa201a-399c-4047-9094-7507cabce11d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.326742+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be rainy. There are several vehicles on the road, including cars, motorcycles, and bicycles. Pedestrians are also crossing the intersection. The road is wet, and there are some puddles.", "snapshot": {"id": "48be53f2-7cb3-4648-9f98-5abc6be6fa22", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/48be53f2-7cb3-4648-9f98-5abc6be6fa22.png", "timestamp": "2024-02-15T20:42:52.511901+00:00"}}, {"id": "bbb6a407-a4d1-40ed-a29b-d1f27ca0b1a9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.070372+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "48be53f2-7cb3-4648-9f98-5abc6be6fa22", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/48be53f2-7cb3-4648-9f98-5abc6be6fa22.png", "timestamp": "2024-02-15T20:42:52.511901+00:00"}}, {"id": "e96211b0-e729-4942-92d7-f1a9975b2e66", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:14.398101+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "291843e2-571d-427a-9277-2a3b65f400ab", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/291843e2-571d-427a-9277-2a3b65f400ab.png", "timestamp": "2024-02-15T20:32:58.115792+00:00"}}, {"id": "7ca29a5b-d1cd-414c-813c-62ad08e59d63", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:14.058616+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "291843e2-571d-427a-9277-2a3b65f400ab", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/291843e2-571d-427a-9277-2a3b65f400ab.png", "timestamp": "2024-02-15T20:32:58.115792+00:00"}}, {"id": "a3af1b8f-5ac7-4575-983a-454d5f84e2d5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.312054+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "291843e2-571d-427a-9277-2a3b65f400ab", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/291843e2-571d-427a-9277-2a3b65f400ab.png", "timestamp": "2024-02-15T20:32:58.115792+00:00"}}, {"id": "f40d108f-e5a1-4952-9197-90f3509b4259", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:13.543301+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "291843e2-571d-427a-9277-2a3b65f400ab", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/291843e2-571d-427a-9277-2a3b65f400ab.png", "timestamp": "2024-02-15T20:32:58.115792+00:00"}}, {"id": "dc61129d-375d-4192-a40d-01251e265d7f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.746086+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "291843e2-571d-427a-9277-2a3b65f400ab", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/291843e2-571d-427a-9277-2a3b65f400ab.png", "timestamp": "2024-02-15T20:32:58.115792+00:00"}}, {"id": "e6da5b19-9256-47cf-8073-05b55774656f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.114430+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "291843e2-571d-427a-9277-2a3b65f400ab", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/291843e2-571d-427a-9277-2a3b65f400ab.png", "timestamp": "2024-02-15T20:32:58.115792+00:00"}}, {"id": "d8c1691c-abd7-4da5-a003-bc016b3781e5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.061693+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "bdc5b011-4d86-449f-ba35-536c3ebda1c9", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/bdc5b011-4d86-449f-ba35-536c3ebda1c9.png", "timestamp": "2024-02-15T20:50:04.121883+00:00"}}, {"id": "ac917561-1cc7-4cdb-9d38-ce94ef4b1e61", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.328574+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is rush hour and the road is moderately busy with both cars and people.", "snapshot": {"id": "bdc5b011-4d86-449f-ba35-536c3ebda1c9", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/bdc5b011-4d86-449f-ba35-536c3ebda1c9.png", "timestamp": "2024-02-15T20:50:04.121883+00:00"}}, {"id": "905bce90-e32a-4b77-ac59-08303ed76471", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.426419+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "bdc5b011-4d86-449f-ba35-536c3ebda1c9", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/bdc5b011-4d86-449f-ba35-536c3ebda1c9.png", "timestamp": "2024-02-15T20:50:04.121883+00:00"}}, {"id": "cc13a5e8-e51d-456d-bd22-0fa4402401a3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.541892+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "bdc5b011-4d86-449f-ba35-536c3ebda1c9", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/bdc5b011-4d86-449f-ba35-536c3ebda1c9.png", "timestamp": "2024-02-15T20:50:04.121883+00:00"}}, {"id": "e2882b7d-382b-4240-b409-174a8020b8f1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.124837+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bdc5b011-4d86-449f-ba35-536c3ebda1c9", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/bdc5b011-4d86-449f-ba35-536c3ebda1c9.png", "timestamp": "2024-02-15T20:50:04.121883+00:00"}}, {"id": "67d21b32-44c1-4f29-b149-7445172389a7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.816401+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "bdc5b011-4d86-449f-ba35-536c3ebda1c9", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/bdc5b011-4d86-449f-ba35-536c3ebda1c9.png", "timestamp": "2024-02-15T20:50:04.121883+00:00"}}, {"id": "055fd0a5-f937-4388-a77d-f76d348aa57c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.358719+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "7aae5eb6-caf6-4827-87b9-2f24774c14d1", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7aae5eb6-caf6-4827-87b9-2f24774c14d1.png", "timestamp": "2024-02-15T20:52:27.698703+00:00"}}, {"id": "cb7c025b-c9ff-4809-89ec-bfb1f4b87091", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:39.869613+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some puddles, but they are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "7aae5eb6-caf6-4827-87b9-2f24774c14d1", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7aae5eb6-caf6-4827-87b9-2f24774c14d1.png", "timestamp": "2024-02-15T20:52:27.698703+00:00"}}, {"id": "445109ce-bf6b-434a-a2af-190428bc2266", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.076183+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or congestion.", "snapshot": {"id": "7aae5eb6-caf6-4827-87b9-2f24774c14d1", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7aae5eb6-caf6-4827-87b9-2f24774c14d1.png", "timestamp": "2024-02-15T20:52:27.698703+00:00"}}, {"id": "c8bd06ba-4859-408e-bb6d-0a817608b371", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:39.454057+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, trucks, and buses. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "7aae5eb6-caf6-4827-87b9-2f24774c14d1", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7aae5eb6-caf6-4827-87b9-2f24774c14d1.png", "timestamp": "2024-02-15T20:52:27.698703+00:00"}}, {"id": "a75e749f-c039-4b8c-b5f4-83e1b85856cb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:39.250771+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7aae5eb6-caf6-4827-87b9-2f24774c14d1", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7aae5eb6-caf6-4827-87b9-2f24774c14d1.png", "timestamp": "2024-02-15T20:52:27.698703+00:00"}}, {"id": "0430b71d-b141-4cc5-a0aa-52fcdcc4bd2f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:39.675360+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "7aae5eb6-caf6-4827-87b9-2f24774c14d1", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/7aae5eb6-caf6-4827-87b9-2f24774c14d1.png", "timestamp": "2024-02-15T20:52:27.698703+00:00"}}, {"id": "4c18b3fb-3fae-42ff-966f-c83b15214f29", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.085311+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "725a5c73-44b9-4b3f-bd2e-2f6a2368879b", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/725a5c73-44b9-4b3f-bd2e-2f6a2368879b.png", "timestamp": "2024-02-15T20:54:55.822551+00:00"}}, {"id": "a62b4574-cf98-499a-9d73-f0b683059baa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.645440+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with traffic lights, street signs, and various vehicles.", "snapshot": {"id": "725a5c73-44b9-4b3f-bd2e-2f6a2368879b", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/725a5c73-44b9-4b3f-bd2e-2f6a2368879b.png", "timestamp": "2024-02-15T20:54:55.822551+00:00"}}, {"id": "631f9d6c-0b65-45ec-a538-2d952a5f25e3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.854051+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "725a5c73-44b9-4b3f-bd2e-2f6a2368879b", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/725a5c73-44b9-4b3f-bd2e-2f6a2368879b.png", "timestamp": "2024-02-15T20:54:55.822551+00:00"}}, {"id": "37d0c329-bd34-42a4-a40e-88c4d4728b33", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.736066+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road, allowing traffic to flow freely.", "snapshot": {"id": "725a5c73-44b9-4b3f-bd2e-2f6a2368879b", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/725a5c73-44b9-4b3f-bd2e-2f6a2368879b.png", "timestamp": "2024-02-15T20:54:55.822551+00:00"}}, {"id": "be82a8d8-5b37-4d9e-8b37-b3eeeddf8429", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.432720+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "725a5c73-44b9-4b3f-bd2e-2f6a2368879b", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/725a5c73-44b9-4b3f-bd2e-2f6a2368879b.png", "timestamp": "2024-02-15T20:54:55.822551+00:00"}}, {"id": "ef0b26c8-1d6c-443b-ab09-4977ede8241a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.534813+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet conditions.", "snapshot": {"id": "725a5c73-44b9-4b3f-bd2e-2f6a2368879b", "camera_id": "001486", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001486/725a5c73-44b9-4b3f-bd2e-2f6a2368879b.png", "timestamp": "2024-02-15T20:54:55.822551+00:00"}}]}, {"id": "000456", "name": "R. CANDIDO BENICIO X ESTRADA INTENDENTE MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88302488, "longitude": -43.34265525, "objects": ["water_level", "image_corrupted", "traffic", "road_blockade", "rain", "image_description"], "identifications": [{"id": "67539f98-89ad-4104-9690-63fe35896f60", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.809586+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a22d572d-8903-4e8d-b2c5-80805d99c31b", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/a22d572d-8903-4e8d-b2c5-80805d99c31b.png", "timestamp": "2024-02-15T20:30:20.593357+00:00"}}, {"id": "64471d5d-689d-4bb2-80c2-4ba48d2b8e60", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.857790+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "a22d572d-8903-4e8d-b2c5-80805d99c31b", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/a22d572d-8903-4e8d-b2c5-80805d99c31b.png", "timestamp": "2024-02-15T20:30:20.593357+00:00"}}, {"id": "27388c7f-6156-4eb6-acc5-497a9ee0703c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.981920+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with traffic moving in both directions. It is daytime and the weather is cloudy. There are several cars, buses, and motorcycles on the road, as well as a few pedestrians on the sidewalks. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "a22d572d-8903-4e8d-b2c5-80805d99c31b", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/a22d572d-8903-4e8d-b2c5-80805d99c31b.png", "timestamp": "2024-02-15T20:30:20.593357+00:00"}}, {"id": "7fa5fd29-416b-47d1-bcc7-40dded3f4b73", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.320540+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "a22d572d-8903-4e8d-b2c5-80805d99c31b", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/a22d572d-8903-4e8d-b2c5-80805d99c31b.png", "timestamp": "2024-02-15T20:30:20.593357+00:00"}}, {"id": "930de8dd-2310-4f4f-9838-b84a78609335", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.096187+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "a22d572d-8903-4e8d-b2c5-80805d99c31b", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/a22d572d-8903-4e8d-b2c5-80805d99c31b.png", "timestamp": "2024-02-15T20:30:20.593357+00:00"}}, {"id": "0e6654a4-8b7d-46db-9697-9b44cce94f74", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.598297+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars and buses on the road, but they are able to move freely. There are no major delays or congestion.", "snapshot": {"id": "a22d572d-8903-4e8d-b2c5-80805d99c31b", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/a22d572d-8903-4e8d-b2c5-80805d99c31b.png", "timestamp": "2024-02-15T20:30:20.593357+00:00"}}, {"id": "07fdf01e-c51d-46f0-a225-8cd7511d2f35", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.080871+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and all lanes are open to traffic.", "snapshot": {"id": "0c88aa01-098d-42bf-8dd9-b62bdd72f088", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0c88aa01-098d-42bf-8dd9-b62bdd72f088.png", "timestamp": "2024-02-15T20:42:51.531501+00:00"}}, {"id": "ed9538e3-4cba-4ee7-833f-9f18da7a2752", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.594854+00:00", "label": "low", "label_explanation": "There is no standing water on the road. The road surface is simply wet from recent rain.", "snapshot": {"id": "0c88aa01-098d-42bf-8dd9-b62bdd72f088", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0c88aa01-098d-42bf-8dd9-b62bdd72f088.png", "timestamp": "2024-02-15T20:42:51.531501+00:00"}}, {"id": "5ade5da8-aaa0-44d6-8ec4-e5fb53983846", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.017459+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears cloudy. There are several vehicles on the road, including cars, motorcycles, and a bus. Pedestrians are also crossing the intersection. The road surface is wet from recent rain, but there is no standing water.", "snapshot": {"id": "0c88aa01-098d-42bf-8dd9-b62bdd72f088", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0c88aa01-098d-42bf-8dd9-b62bdd72f088.png", "timestamp": "2024-02-15T20:42:51.531501+00:00"}}, {"id": "28f54cad-275c-4b38-97f0-ec5c5f360477", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.741416+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0c88aa01-098d-42bf-8dd9-b62bdd72f088", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0c88aa01-098d-42bf-8dd9-b62bdd72f088.png", "timestamp": "2024-02-15T20:42:51.531501+00:00"}}, {"id": "12f419f9-a312-4361-a383-a5d53e7b757d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.296511+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, there is no standing water on the road.", "snapshot": {"id": "0c88aa01-098d-42bf-8dd9-b62bdd72f088", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0c88aa01-098d-42bf-8dd9-b62bdd72f088.png", "timestamp": "2024-02-15T20:42:51.531501+00:00"}}, {"id": "b6f6491a-5306-47b6-b2dc-6f1d9fbb98e1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.837865+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with several vehicles and pedestrians using the intersection. However, the traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "0c88aa01-098d-42bf-8dd9-b62bdd72f088", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0c88aa01-098d-42bf-8dd9-b62bdd72f088.png", "timestamp": "2024-02-15T20:42:51.531501+00:00"}}, {"id": "d3644680-6977-4317-ad93-9d1ed2950c23", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.294818+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "89e588c1-0c12-492d-837d-9c1f906f44b3", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/89e588c1-0c12-492d-837d-9c1f906f44b3.png", "timestamp": "2024-02-15T20:35:24.171175+00:00"}}, {"id": "4c0da7e6-b25f-4b8d-a62f-c86dbebc63ff", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:39.239932+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears cloudy. There are several buildings and trees on either side of the road.", "snapshot": {"id": "89e588c1-0c12-492d-837d-9c1f906f44b3", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/89e588c1-0c12-492d-837d-9c1f906f44b3.png", "timestamp": "2024-02-15T20:35:24.171175+00:00"}}, {"id": "91ce0f50-8f9c-47fb-87fb-b059c220eac0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.986670+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "89e588c1-0c12-492d-837d-9c1f906f44b3", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/89e588c1-0c12-492d-837d-9c1f906f44b3.png", "timestamp": "2024-02-15T20:35:24.171175+00:00"}}, {"id": "39a1d8c9-4550-408e-a2cb-8fb0ad55e06b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.561857+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "89e588c1-0c12-492d-837d-9c1f906f44b3", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/89e588c1-0c12-492d-837d-9c1f906f44b3.png", "timestamp": "2024-02-15T20:35:24.171175+00:00"}}, {"id": "70170026-7a4f-44bb-a45c-f411d39cf031", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:39.992288+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "89e588c1-0c12-492d-837d-9c1f906f44b3", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/89e588c1-0c12-492d-837d-9c1f906f44b3.png", "timestamp": "2024-02-15T20:35:24.171175+00:00"}}, {"id": "cd886b60-d3e9-4571-ac93-842def3b114a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.351391+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "89e588c1-0c12-492d-837d-9c1f906f44b3", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/89e588c1-0c12-492d-837d-9c1f906f44b3.png", "timestamp": "2024-02-15T20:35:24.171175+00:00"}}, {"id": "613a5112-9542-4430-a569-c2d199376a11", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.626100+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "0426f4f3-0723-4bab-8776-63e2775f8102", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0426f4f3-0723-4bab-8776-63e2775f8102.png", "timestamp": "2024-02-15T20:37:56.649574+00:00"}}, {"id": "95f981f8-97c5-4600-9858-15d3b8e5564b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.060251+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "0426f4f3-0723-4bab-8776-63e2775f8102", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0426f4f3-0723-4bab-8776-63e2775f8102.png", "timestamp": "2024-02-15T20:37:56.649574+00:00"}}, {"id": "987bd8ff-ad2f-45f5-af3c-acc7e1bb7099", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.626609+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "0426f4f3-0723-4bab-8776-63e2775f8102", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0426f4f3-0723-4bab-8776-63e2775f8102.png", "timestamp": "2024-02-15T20:37:56.649574+00:00"}}, {"id": "a55cbb04-51c0-4be8-8d54-849568e6e8f3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.865775+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0426f4f3-0723-4bab-8776-63e2775f8102", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0426f4f3-0723-4bab-8776-63e2775f8102.png", "timestamp": "2024-02-15T20:37:56.649574+00:00"}}, {"id": "766aa80a-dd29-433d-9f75-211b4f11c2a4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.255063+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "0426f4f3-0723-4bab-8776-63e2775f8102", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0426f4f3-0723-4bab-8776-63e2775f8102.png", "timestamp": "2024-02-15T20:37:56.649574+00:00"}}, {"id": "82793e5b-e66c-441f-be17-c2d300812319", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.282721+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear.", "snapshot": {"id": "0426f4f3-0723-4bab-8776-63e2775f8102", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/0426f4f3-0723-4bab-8776-63e2775f8102.png", "timestamp": "2024-02-15T20:37:56.649574+00:00"}}, {"id": "3f7f32e2-ec84-40e8-9cdd-3726524904ef", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.862679+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "e3aecbaf-0b2c-413c-885d-a47bce56c754", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/e3aecbaf-0b2c-413c-885d-a47bce56c754.png", "timestamp": "2024-02-15T20:40:26.669508+00:00"}}, {"id": "e55200d0-5c99-46ed-9fbc-3d95840538d4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.525128+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "e3aecbaf-0b2c-413c-885d-a47bce56c754", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/e3aecbaf-0b2c-413c-885d-a47bce56c754.png", "timestamp": "2024-02-15T20:40:26.669508+00:00"}}, {"id": "1c601222-d9b7-4b1d-afa4-a364439e4cdf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.066022+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few parked cars on the side and a cyclist on the street.", "snapshot": {"id": "e3aecbaf-0b2c-413c-885d-a47bce56c754", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/e3aecbaf-0b2c-413c-885d-a47bce56c754.png", "timestamp": "2024-02-15T20:40:26.669508+00:00"}}, {"id": "fa28120b-d240-4856-a135-9bd35c4f7cd3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.946540+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e3aecbaf-0b2c-413c-885d-a47bce56c754", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/e3aecbaf-0b2c-413c-885d-a47bce56c754.png", "timestamp": "2024-02-15T20:40:26.669508+00:00"}}, {"id": "fd0c1143-e197-4615-b6fe-f3f20767e738", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.669066+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions.", "snapshot": {"id": "e3aecbaf-0b2c-413c-885d-a47bce56c754", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/e3aecbaf-0b2c-413c-885d-a47bce56c754.png", "timestamp": "2024-02-15T20:40:26.669508+00:00"}}, {"id": "a9bf81ac-593b-4e39-bebe-136fca2344f6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.256828+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "e3aecbaf-0b2c-413c-885d-a47bce56c754", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/e3aecbaf-0b2c-413c-885d-a47bce56c754.png", "timestamp": "2024-02-15T20:40:26.669508+00:00"}}, {"id": "924a056e-9f8c-470b-b1c5-06603184a856", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.257926+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "f6de1f3e-365c-4186-ba5d-307bc6f1cae4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f6de1f3e-365c-4186-ba5d-307bc6f1cae4.png", "timestamp": "2024-02-15T20:47:37.387667+00:00"}}, {"id": "92538f80-1838-4622-ab6f-bcd454d7620a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.009383+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears cloudy. There are several vehicles on the road, including cars and buses. The road surface is wet from recent rain.", "snapshot": {"id": "f6de1f3e-365c-4186-ba5d-307bc6f1cae4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f6de1f3e-365c-4186-ba5d-307bc6f1cae4.png", "timestamp": "2024-02-15T20:47:37.387667+00:00"}}, {"id": "860ae119-e0a7-491c-bce5-51149e21b36d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.686792+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f6de1f3e-365c-4186-ba5d-307bc6f1cae4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f6de1f3e-365c-4186-ba5d-307bc6f1cae4.png", "timestamp": "2024-02-15T20:47:37.387667+00:00"}}, {"id": "b8cae6d6-8a96-4875-911c-86dda74992b5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.151687+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "f6de1f3e-365c-4186-ba5d-307bc6f1cae4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f6de1f3e-365c-4186-ba5d-307bc6f1cae4.png", "timestamp": "2024-02-15T20:47:37.387667+00:00"}}, {"id": "6296c7db-326e-4403-aa19-99b4f60d4645", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.527603+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet but not flooded.", "snapshot": {"id": "f6de1f3e-365c-4186-ba5d-307bc6f1cae4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f6de1f3e-365c-4186-ba5d-307bc6f1cae4.png", "timestamp": "2024-02-15T20:47:37.387667+00:00"}}, {"id": "b9c731bd-0c02-447e-a98a-d64716799e5c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.818775+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving slowly due to the wet road conditions.", "snapshot": {"id": "f6de1f3e-365c-4186-ba5d-307bc6f1cae4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f6de1f3e-365c-4186-ba5d-307bc6f1cae4.png", "timestamp": "2024-02-15T20:47:37.387667+00:00"}}, {"id": "90bb3566-745c-4390-b996-6fc58ad99eba", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.154524+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, and there are some small puddles.", "snapshot": {"id": "f5e66847-e2fe-43df-b338-a8f93673ffc4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f5e66847-e2fe-43df-b338-a8f93673ffc4.png", "timestamp": "2024-02-15T20:45:14.134759+00:00"}}, {"id": "01549bb1-c75c-4069-af6e-d6483d6dc238", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.755261+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving slowly due to the wet road conditions.", "snapshot": {"id": "f5e66847-e2fe-43df-b338-a8f93673ffc4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f5e66847-e2fe-43df-b338-a8f93673ffc4.png", "timestamp": "2024-02-15T20:45:14.134759+00:00"}}, {"id": "da26706d-cf8e-44ae-9e93-01f6c19f6915", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.045731+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "f5e66847-e2fe-43df-b338-a8f93673ffc4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f5e66847-e2fe-43df-b338-a8f93673ffc4.png", "timestamp": "2024-02-15T20:45:14.134759+00:00"}}, {"id": "294f1955-04fc-4f20-8c16-ebc00a041fc6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.886478+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears cloudy. There are several vehicles on the road, including buses and cars. The road surface is wet from recent rain, and there are some small puddles.", "snapshot": {"id": "f5e66847-e2fe-43df-b338-a8f93673ffc4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f5e66847-e2fe-43df-b338-a8f93673ffc4.png", "timestamp": "2024-02-15T20:45:14.134759+00:00"}}, {"id": "7ad67e78-705b-48f7-8f58-49f8bf8cc377", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.478036+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present.", "snapshot": {"id": "f5e66847-e2fe-43df-b338-a8f93673ffc4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f5e66847-e2fe-43df-b338-a8f93673ffc4.png", "timestamp": "2024-02-15T20:45:14.134759+00:00"}}, {"id": "ac52103a-6303-4f3e-aea8-05d03f14d557", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.469522+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f5e66847-e2fe-43df-b338-a8f93673ffc4", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/f5e66847-e2fe-43df-b338-a8f93673ffc4.png", "timestamp": "2024-02-15T20:45:14.134759+00:00"}}, {"id": "2d21c492-6f8d-418c-b5a8-8c9e7f6324ed", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.725128+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable for vehicles and pedestrians.", "snapshot": {"id": "1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc.png", "timestamp": "2024-02-15T20:54:54.275889+00:00"}}, {"id": "8d7a6fe3-a8a2-4e62-885e-5d8563b5eeab", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.645520+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc.png", "timestamp": "2024-02-15T20:54:54.275889+00:00"}}, {"id": "eea545a3-c33b-4290-82a6-dbb991c1a301", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.329949+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc.png", "timestamp": "2024-02-15T20:54:54.275889+00:00"}}, {"id": "44a1aab6-8842-47e7-a4ed-0768063e64b6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.042252+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc.png", "timestamp": "2024-02-15T20:54:54.275889+00:00"}}, {"id": "beca7f8e-16bb-4740-8320-e0abc59737c4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.106916+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of data loss or corruption.", "snapshot": {"id": "1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc.png", "timestamp": "2024-02-15T20:54:54.275889+00:00"}}, {"id": "bc7d49f7-bba2-4d59-9d74-7ac2f3f07212", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.516269+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. Vehicles are moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/1e124ba6-74a7-4ccc-8b7f-9d87d4ecc6dc.png", "timestamp": "2024-02-15T20:54:54.275889+00:00"}}, {"id": "12085ad9-546f-468f-9b6e-5c9f766a8f7a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.796280+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "93105756-4fca-475a-94f9-6f0046bd6b8a", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/93105756-4fca-475a-94f9-6f0046bd6b8a.png", "timestamp": "2024-02-15T20:50:02.971912+00:00"}}, {"id": "7f3fb059-9f90-40aa-934d-a8df687b43fe", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.018141+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "93105756-4fca-475a-94f9-6f0046bd6b8a", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/93105756-4fca-475a-94f9-6f0046bd6b8a.png", "timestamp": "2024-02-15T20:50:02.971912+00:00"}}, {"id": "903d555b-9d45-4309-bbbb-f93c224174b5", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.740976+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars and buses on the road, but they are able to move without any major delays.", "snapshot": {"id": "93105756-4fca-475a-94f9-6f0046bd6b8a", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/93105756-4fca-475a-94f9-6f0046bd6b8a.png", "timestamp": "2024-02-15T20:50:02.971912+00:00"}}, {"id": "9c85bbcf-2342-4755-b5e3-1fc3619f0ea1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.259696+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "93105756-4fca-475a-94f9-6f0046bd6b8a", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/93105756-4fca-475a-94f9-6f0046bd6b8a.png", "timestamp": "2024-02-15T20:50:02.971912+00:00"}}, {"id": "6c6911d1-5742-4642-81d2-b449c7370a7d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.978986+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears cloudy. There are a few trees on either side of the road, and buildings and houses can be seen in the background.", "snapshot": {"id": "93105756-4fca-475a-94f9-6f0046bd6b8a", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/93105756-4fca-475a-94f9-6f0046bd6b8a.png", "timestamp": "2024-02-15T20:50:02.971912+00:00"}}, {"id": "cd3627b3-ceb6-46dd-a051-4454d1d830f1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.472095+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "93105756-4fca-475a-94f9-6f0046bd6b8a", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/93105756-4fca-475a-94f9-6f0046bd6b8a.png", "timestamp": "2024-02-15T20:50:02.971912+00:00"}}, {"id": "d0bcaad3-a106-4410-bb57-aa0187e28028", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.784280+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a pedestrian crossing. There are cars on the road, a few trees on the left side, and buildings in the background.", "snapshot": {"id": "b5ca5ef1-2cba-4631-a1f6-8bc190a584ce", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/b5ca5ef1-2cba-4631-a1f6-8bc190a584ce.png", "timestamp": "2024-02-15T20:52:25.711078+00:00"}}, {"id": "2831e360-620b-4523-bd1b-d866c41c4493", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.478655+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "b5ca5ef1-2cba-4631-a1f6-8bc190a584ce", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/b5ca5ef1-2cba-4631-a1f6-8bc190a584ce.png", "timestamp": "2024-02-15T20:52:25.711078+00:00"}}, {"id": "cbc0cb1e-1ecd-4e0d-a782-0b4fd64216f6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.982480+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "b5ca5ef1-2cba-4631-a1f6-8bc190a584ce", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/b5ca5ef1-2cba-4631-a1f6-8bc190a584ce.png", "timestamp": "2024-02-15T20:52:25.711078+00:00"}}, {"id": "b9bf4dfb-06c5-4141-880b-b19b7a305a7b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:38.023391+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "b5ca5ef1-2cba-4631-a1f6-8bc190a584ce", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/b5ca5ef1-2cba-4631-a1f6-8bc190a584ce.png", "timestamp": "2024-02-15T20:52:25.711078+00:00"}}, {"id": "dbeb52aa-5aed-4e8b-b26c-776cabc152eb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.250269+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "b5ca5ef1-2cba-4631-a1f6-8bc190a584ce", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/b5ca5ef1-2cba-4631-a1f6-8bc190a584ce.png", "timestamp": "2024-02-15T20:52:25.711078+00:00"}}, {"id": "ef00a4fe-10fd-4f89-82c1-068ad1474340", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.575422+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b5ca5ef1-2cba-4631-a1f6-8bc190a584ce", "camera_id": "000456", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000456/b5ca5ef1-2cba-4631-a1f6-8bc190a584ce.png", "timestamp": "2024-02-15T20:52:25.711078+00:00"}}]}, {"id": "001161", "name": "RUA TEIXEIRA DE FREITAS 59 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914249, "longitude": -43.17755, "objects": ["image_corrupted", "rain", "water_level", "traffic", "image_description", "road_blockade"], "identifications": [{"id": "577c01f6-596a-4238-94f4-7399e6bc417f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.762239+00:00", "label": "moderate", "label_explanation": "Traffic is moving slowly due to the wet conditions.", "snapshot": {"id": "c0d32a75-9f39-444d-9c47-2e5eeb77a662", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c0d32a75-9f39-444d-9c47-2e5eeb77a662.png", "timestamp": "2024-02-15T20:30:21.914200+00:00"}}, {"id": "bd1de3b0-51c8-4329-9fd0-5cc7425389c5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:40.080006+00:00", "label": "free", "label_explanation": "There are no visible obstructions or hazards on the road.", "snapshot": {"id": "c0d32a75-9f39-444d-9c47-2e5eeb77a662", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c0d32a75-9f39-444d-9c47-2e5eeb77a662.png", "timestamp": "2024-02-15T20:30:21.914200+00:00"}}, {"id": "8dc6acde-c391-44a4-921d-8cd89e5f9da0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.373056+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, but there are no large puddles or standing water.", "snapshot": {"id": "c0d32a75-9f39-444d-9c47-2e5eeb77a662", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c0d32a75-9f39-444d-9c47-2e5eeb77a662.png", "timestamp": "2024-02-15T20:30:21.914200+00:00"}}, {"id": "37dc6772-c1fe-464a-b800-589dd7d10f74", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.892811+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c0d32a75-9f39-444d-9c47-2e5eeb77a662", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c0d32a75-9f39-444d-9c47-2e5eeb77a662.png", "timestamp": "2024-02-15T20:30:21.914200+00:00"}}, {"id": "585b968b-1314-46ae-918c-a9c5020837ea", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.112074+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road intersection. It is daytime and the weather appears to be overcast, with dark clouds covering the sky. The road surface is wet from recent rain, but there are no large puddles or standing water. There are several cars on the road, all of which are moving slowly due to the wet conditions. The traffic lights at the intersection are functioning properly and there are no visible obstructions or hazards.", "snapshot": {"id": "c0d32a75-9f39-444d-9c47-2e5eeb77a662", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c0d32a75-9f39-444d-9c47-2e5eeb77a662.png", "timestamp": "2024-02-15T20:30:21.914200+00:00"}}, {"id": "1ba5964e-6315-41e2-a62a-65c90b790107", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.581123+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "c0d32a75-9f39-444d-9c47-2e5eeb77a662", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c0d32a75-9f39-444d-9c47-2e5eeb77a662.png", "timestamp": "2024-02-15T20:30:21.914200+00:00"}}, {"id": "b3a606f1-3c03-4d4f-9c26-40714cb15d4c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:12.102305+00:00", "label": "true", "label_explanation": "The image is corrupted and has a uniform green color, making it impossible to analyze.", "snapshot": {"id": "a2b1ce07-2375-457e-8791-fe0c5854945e", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/a2b1ce07-2375-457e-8791-fe0c5854945e.png", "timestamp": "2024-02-15T20:32:56.840622+00:00"}}, {"id": "0d4f3aa8-263c-495d-9709-afc5d555bbc4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:12.568001+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "a2b1ce07-2375-457e-8791-fe0c5854945e", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/a2b1ce07-2375-457e-8791-fe0c5854945e.png", "timestamp": "2024-02-15T20:32:56.840622+00:00"}}, {"id": "c8ecd0f4-f177-4011-a309-a213e9e39f86", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:39.991554+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "c1dd2773-b0a3-4364-8ee1-125bdaddc160", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c1dd2773-b0a3-4364-8ee1-125bdaddc160.png", "timestamp": "2024-02-15T20:35:26.044319+00:00"}}, {"id": "7fee917c-98c1-467c-a655-877d5a01e845", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.290938+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "c1dd2773-b0a3-4364-8ee1-125bdaddc160", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c1dd2773-b0a3-4364-8ee1-125bdaddc160.png", "timestamp": "2024-02-15T20:35:26.044319+00:00"}}, {"id": "9cde6a4c-6d52-4aec-b551-b76934166ea4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.960494+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "c1dd2773-b0a3-4364-8ee1-125bdaddc160", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c1dd2773-b0a3-4364-8ee1-125bdaddc160.png", "timestamp": "2024-02-15T20:35:26.044319+00:00"}}, {"id": "af1262a2-52be-4f45-b539-9564ea2df80b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.561309+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "c1dd2773-b0a3-4364-8ee1-125bdaddc160", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c1dd2773-b0a3-4364-8ee1-125bdaddc160.png", "timestamp": "2024-02-15T20:35:26.044319+00:00"}}, {"id": "5d19e7be-91ee-420d-8935-b9d2520de33f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.983518+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road with various vehicles, buildings, and people.", "snapshot": {"id": "c1dd2773-b0a3-4364-8ee1-125bdaddc160", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c1dd2773-b0a3-4364-8ee1-125bdaddc160.png", "timestamp": "2024-02-15T20:35:26.044319+00:00"}}, {"id": "b50d8d13-3cee-49be-81f5-5d4a2457eaa0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.306117+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c1dd2773-b0a3-4364-8ee1-125bdaddc160", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/c1dd2773-b0a3-4364-8ee1-125bdaddc160.png", "timestamp": "2024-02-15T20:35:26.044319+00:00"}}, {"id": "aa971c6f-1181-4f99-9eae-c67c072bc171", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.772523+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades.", "snapshot": {"id": "e4485d9f-4940-404d-b13a-525609adc6d3", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/e4485d9f-4940-404d-b13a-525609adc6d3.png", "timestamp": "2024-02-15T20:37:56.155527+00:00"}}, {"id": "6edae176-723b-40d1-b939-5b7c0c80199d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.652862+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "e4485d9f-4940-404d-b13a-525609adc6d3", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/e4485d9f-4940-404d-b13a-525609adc6d3.png", "timestamp": "2024-02-15T20:37:56.155527+00:00"}}, {"id": "2777fe47-788d-4711-b8cc-86b844dd8628", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.253538+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear, with no visible rain or water on the road surface. There are several vehicles on the road, including cars and a bus. The road is lined with buildings and trees, and there are traffic lights and signs visible.", "snapshot": {"id": "e4485d9f-4940-404d-b13a-525609adc6d3", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/e4485d9f-4940-404d-b13a-525609adc6d3.png", "timestamp": "2024-02-15T20:37:56.155527+00:00"}}, {"id": "b78c81fe-a7ef-4c53-b2ec-5febadfea99c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.051134+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water or puddles.", "snapshot": {"id": "e4485d9f-4940-404d-b13a-525609adc6d3", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/e4485d9f-4940-404d-b13a-525609adc6d3.png", "timestamp": "2024-02-15T20:37:56.155527+00:00"}}, {"id": "33ad2e43-e519-4ae1-926f-fc74213f6cf0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.387639+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving smoothly and no major congestion.", "snapshot": {"id": "e4485d9f-4940-404d-b13a-525609adc6d3", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/e4485d9f-4940-404d-b13a-525609adc6d3.png", "timestamp": "2024-02-15T20:37:56.155527+00:00"}}, {"id": "5c97a7ba-358f-4482-8c96-26f069f8bc38", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.639050+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e4485d9f-4940-404d-b13a-525609adc6d3", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/e4485d9f-4940-404d-b13a-525609adc6d3.png", "timestamp": "2024-02-15T20:37:56.155527+00:00"}}, {"id": "faf4006d-2121-445d-a5a3-3b34d66bab11", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.196673+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "d722d7f0-942b-4575-a0d2-492afff2ceaa", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/d722d7f0-942b-4575-a0d2-492afff2ceaa.png", "timestamp": "2024-02-15T20:40:27.588221+00:00"}}, {"id": "3446fdd9-b041-4d11-bae2-f6498564d1f2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.397010+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy, as the road is still passable.", "snapshot": {"id": "d722d7f0-942b-4575-a0d2-492afff2ceaa", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/d722d7f0-942b-4575-a0d2-492afff2ceaa.png", "timestamp": "2024-02-15T20:40:27.588221+00:00"}}, {"id": "ae1d4ea5-05c9-4d9f-bf8c-cd23695a08f0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.678183+00:00", "label": "low", "label_explanation": "There is some water on the road, but it is not enough to cause any significant traffic disruptions. The water is mostly confined to the gutters and does not appear to be rising.", "snapshot": {"id": "d722d7f0-942b-4575-a0d2-492afff2ceaa", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/d722d7f0-942b-4575-a0d2-492afff2ceaa.png", "timestamp": "2024-02-15T20:40:27.588221+00:00"}}, {"id": "09592559-7226-4156-a8ba-df34cc84ab39", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.184766+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including buses, cars, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "d722d7f0-942b-4575-a0d2-492afff2ceaa", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/d722d7f0-942b-4575-a0d2-492afff2ceaa.png", "timestamp": "2024-02-15T20:40:27.588221+00:00"}}, {"id": "45d8b195-12de-44c2-a979-fe7b0a2367f1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.956574+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or obstructions visible in the image.", "snapshot": {"id": "d722d7f0-942b-4575-a0d2-492afff2ceaa", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/d722d7f0-942b-4575-a0d2-492afff2ceaa.png", "timestamp": "2024-02-15T20:40:27.588221+00:00"}}, {"id": "b4481f58-2a33-46cc-aa49-a42b889639ba", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.906394+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d722d7f0-942b-4575-a0d2-492afff2ceaa", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/d722d7f0-942b-4575-a0d2-492afff2ceaa.png", "timestamp": "2024-02-15T20:40:27.588221+00:00"}}, {"id": "6ce50af5-d2dd-4193-b19a-5ed885fa5182", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.233655+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "32cc3aeb-4f48-46b0-9ec1-b37fee806f81", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/32cc3aeb-4f48-46b0-9ec1-b37fee806f81.png", "timestamp": "2024-02-15T20:47:38.108714+00:00"}}, {"id": "45465fe2-0d7c-4d05-b8ed-9d2ee7158b37", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.038055+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "32cc3aeb-4f48-46b0-9ec1-b37fee806f81", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/32cc3aeb-4f48-46b0-9ec1-b37fee806f81.png", "timestamp": "2024-02-15T20:47:38.108714+00:00"}}, {"id": "7853ac04-ce23-41d1-963d-2ecb76791324", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.029203+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road with various elements such as vehicles, pedestrians, and buildings.", "snapshot": {"id": "315f5f41-b3f7-4932-a12f-259cdeaf0d11", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/315f5f41-b3f7-4932-a12f-259cdeaf0d11.png", "timestamp": "2024-02-15T20:45:14.562703+00:00"}}, {"id": "1b2f6a27-7f0d-4319-aeec-da6e7015b477", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.691306+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "315f5f41-b3f7-4932-a12f-259cdeaf0d11", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/315f5f41-b3f7-4932-a12f-259cdeaf0d11.png", "timestamp": "2024-02-15T20:45:14.562703+00:00"}}, {"id": "9d5aa96d-c4c7-4e50-9fc7-7cc6ca2c1e8d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.999394+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "315f5f41-b3f7-4932-a12f-259cdeaf0d11", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/315f5f41-b3f7-4932-a12f-259cdeaf0d11.png", "timestamp": "2024-02-15T20:45:14.562703+00:00"}}, {"id": "c2e900f1-96d3-455c-a563-c0618e70b9ff", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.815283+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with both vehicles and pedestrians navigating the road without any major disruptions.", "snapshot": {"id": "315f5f41-b3f7-4932-a12f-259cdeaf0d11", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/315f5f41-b3f7-4932-a12f-259cdeaf0d11.png", "timestamp": "2024-02-15T20:45:14.562703+00:00"}}, {"id": "49af064e-e55c-4380-9d52-d768fbe2d588", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.602914+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "315f5f41-b3f7-4932-a12f-259cdeaf0d11", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/315f5f41-b3f7-4932-a12f-259cdeaf0d11.png", "timestamp": "2024-02-15T20:45:14.562703+00:00"}}, {"id": "dc7282d8-272b-4351-b886-bd2533baad57", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.356099+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "315f5f41-b3f7-4932-a12f-259cdeaf0d11", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/315f5f41-b3f7-4932-a12f-259cdeaf0d11.png", "timestamp": "2024-02-15T20:45:14.562703+00:00"}}, {"id": "44bff300-3501-4178-853b-c7f804bb58d8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.655758+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no visible signs of water accumulation, and the road surface is dry.", "snapshot": {"id": "9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66.png", "timestamp": "2024-02-15T20:42:52.010484+00:00"}}, {"id": "e183173b-75ac-41c5-80db-53f37ead636e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.482543+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66.png", "timestamp": "2024-02-15T20:42:52.010484+00:00"}}, {"id": "ec91e692-8b02-4027-98a2-782dfb35805b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.308785+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with multiple lanes, surrounded by buildings and trees. There are vehicles on the road, including buses and cars. Pedestrians are also visible, crossing the road at a zebra crossing. The weather appears to be clear, with no visible rain or other adverse conditions.", "snapshot": {"id": "9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66.png", "timestamp": "2024-02-15T20:42:52.010484+00:00"}}, {"id": "78c43091-b608-453d-81f5-3c575c690396", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.842665+00:00", "label": "moderate", "label_explanation": "The traffic on the road is moderate. There are a number of vehicles on the road, but they are able to move freely without any significant congestion.", "snapshot": {"id": "9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66.png", "timestamp": "2024-02-15T20:42:52.010484+00:00"}}, {"id": "1ca34f44-9c9d-45be-bcd0-670b64da66c1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.090868+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66.png", "timestamp": "2024-02-15T20:42:52.010484+00:00"}}, {"id": "32da7a89-78e8-4fef-91cb-d4f29006b592", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.082504+00:00", "label": "free", "label_explanation": "There are no visible road blockades in the image. The road is clear and free of any obstructions.", "snapshot": {"id": "9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/9cf79bd7-9ee5-47bb-a3a5-5db2ad4eaa66.png", "timestamp": "2024-02-15T20:42:52.010484+00:00"}}, {"id": "8c95f12a-b641-441a-a12f-f37af1221009", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.617694+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. Pedestrians are also crossing the road cautiously.", "snapshot": {"id": "61e92836-bb5a-44ac-bbc7-6e0db4cf7d08", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/61e92836-bb5a-44ac-bbc7-6e0db4cf7d08.png", "timestamp": "2024-02-15T20:50:03.334463+00:00"}}, {"id": "6bc204ef-cd72-47b7-9ffe-01d1b7cb2ac3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.024069+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops in the image.", "snapshot": {"id": "61e92836-bb5a-44ac-bbc7-6e0db4cf7d08", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/61e92836-bb5a-44ac-bbc7-6e0db4cf7d08.png", "timestamp": "2024-02-15T20:50:03.334463+00:00"}}, {"id": "39f4b393-a296-47ac-9d27-a56ed5e732ce", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.488836+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "61e92836-bb5a-44ac-bbc7-6e0db4cf7d08", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/61e92836-bb5a-44ac-bbc7-6e0db4cf7d08.png", "timestamp": "2024-02-15T20:50:03.334463+00:00"}}, {"id": "749e8bba-a146-470f-9fed-81847e851809", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.759517+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road intersection during daytime. It is raining, and the road surface is wet. There are several vehicles on the road, including buses and cars. Pedestrians are crossing the street using the zebra crossing. The buildings in the background are tall and brightly colored.", "snapshot": {"id": "61e92836-bb5a-44ac-bbc7-6e0db4cf7d08", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/61e92836-bb5a-44ac-bbc7-6e0db4cf7d08.png", "timestamp": "2024-02-15T20:50:03.334463+00:00"}}, {"id": "d2ed59cb-f38c-4413-b456-1c1b46ad5e6a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.872992+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "61e92836-bb5a-44ac-bbc7-6e0db4cf7d08", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/61e92836-bb5a-44ac-bbc7-6e0db4cf7d08.png", "timestamp": "2024-02-15T20:50:03.334463+00:00"}}, {"id": "562f44a5-5ca0-4b74-abf2-9b9bb1506210", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.320250+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are not causing any significant hindrance to traffic.", "snapshot": {"id": "61e92836-bb5a-44ac-bbc7-6e0db4cf7d08", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/61e92836-bb5a-44ac-bbc7-6e0db4cf7d08.png", "timestamp": "2024-02-15T20:50:03.334463+00:00"}}, {"id": "5a68a367-c310-4812-9259-ef8c4108b94c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.561582+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "ccdef3bf-b6cb-4955-8138-b7f27cf70b3f", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/ccdef3bf-b6cb-4955-8138-b7f27cf70b3f.png", "timestamp": "2024-02-15T20:52:25.739022+00:00"}}, {"id": "7876a574-9bb3-4e91-8264-12aa27d59900", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.306258+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and distorted shapes, making it impossible to analyze.", "snapshot": {"id": "ccdef3bf-b6cb-4955-8138-b7f27cf70b3f", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/ccdef3bf-b6cb-4955-8138-b7f27cf70b3f.png", "timestamp": "2024-02-15T20:52:25.739022+00:00"}}, {"id": "9a4c5691-2c24-4c91-8bce-0da865fa8f70", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.404088+00:00", "label": "low", "label_explanation": "The water level on the road is low. While there are some puddles, they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "8bdec3d2-4b87-48e5-9ced-dc0b0b045501", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/8bdec3d2-4b87-48e5-9ced-dc0b0b045501.png", "timestamp": "2024-02-15T20:54:55.242608+00:00"}}, {"id": "df4a5e1e-d0fc-4780-b6f5-318f10810fc1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.201424+00:00", "label": "true", "label_explanation": "The presence of water on the road surface and the dark, cloudy sky indicate that it has been raining recently. The rain is not heavy, as the road is still visible and traffic is moving smoothly.", "snapshot": {"id": "8bdec3d2-4b87-48e5-9ced-dc0b0b045501", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/8bdec3d2-4b87-48e5-9ced-dc0b0b045501.png", "timestamp": "2024-02-15T20:54:55.242608+00:00"}}, {"id": "211a4ffd-65ea-464a-80f4-94e282a4a0f4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.695126+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8bdec3d2-4b87-48e5-9ced-dc0b0b045501", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/8bdec3d2-4b87-48e5-9ced-dc0b0b045501.png", "timestamp": "2024-02-15T20:54:55.242608+00:00"}}, {"id": "6e399218-12ae-4370-b859-eec01c6b20ae", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.907550+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. The road surface is wet from recent rain, with small puddles scattered throughout. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also present, walking on the sidewalks and crossing the street. The buildings along the road are tall and brightly colored. Trees are present, adding greenery to the scene.", "snapshot": {"id": "8bdec3d2-4b87-48e5-9ced-dc0b0b045501", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/8bdec3d2-4b87-48e5-9ced-dc0b0b045501.png", "timestamp": "2024-02-15T20:54:55.242608+00:00"}}, {"id": "9c680a8b-4814-422f-be46-2b23dd5a8cf5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.898310+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. Traffic is flowing freely in both directions.", "snapshot": {"id": "8bdec3d2-4b87-48e5-9ced-dc0b0b045501", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/8bdec3d2-4b87-48e5-9ced-dc0b0b045501.png", "timestamp": "2024-02-15T20:54:55.242608+00:00"}}, {"id": "b299490b-5095-43d5-8024-f6c4b3acd0cc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.674648+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "8bdec3d2-4b87-48e5-9ced-dc0b0b045501", "camera_id": "001161", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001161/8bdec3d2-4b87-48e5-9ced-dc0b0b045501.png", "timestamp": "2024-02-15T20:54:55.242608+00:00"}}]}, {"id": "001168", "name": "R. DO LAVRADIO, 151 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91196071, "longitude": -43.18202836, "objects": ["rain", "road_blockade", "image_corrupted", "image_description", "traffic", "water_level"], "identifications": [{"id": "f0d06f05-bffd-4f0b-b236-711000ef9ea5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.868054+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "de5e4599-e7b3-4fe5-b28d-578755771ba3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/de5e4599-e7b3-4fe5-b28d-578755771ba3.png", "timestamp": "2024-02-15T20:30:25.984189+00:00"}}, {"id": "a620c02d-d2fa-4d32-a2a9-2fbdfc946fad", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.404680+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with multiple lanes in both directions. The road is in good condition, with no visible cracks or potholes. There are a few trees on either side of the road, and the weather appears to be clear.", "snapshot": {"id": "de5e4599-e7b3-4fe5-b28d-578755771ba3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/de5e4599-e7b3-4fe5-b28d-578755771ba3.png", "timestamp": "2024-02-15T20:30:25.984189+00:00"}}, {"id": "7b281895-0e9f-4546-9294-6dafb25ad9f4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.183315+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "de5e4599-e7b3-4fe5-b28d-578755771ba3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/de5e4599-e7b3-4fe5-b28d-578755771ba3.png", "timestamp": "2024-02-15T20:30:25.984189+00:00"}}, {"id": "8b21af22-ec37-4727-9eb5-3f569b092a40", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:40.289032+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "de5e4599-e7b3-4fe5-b28d-578755771ba3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/de5e4599-e7b3-4fe5-b28d-578755771ba3.png", "timestamp": "2024-02-15T20:30:25.984189+00:00"}}, {"id": "40b0f61b-eb85-4193-8e2a-d5737b523690", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:40.081856+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving in both directions.", "snapshot": {"id": "de5e4599-e7b3-4fe5-b28d-578755771ba3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/de5e4599-e7b3-4fe5-b28d-578755771ba3.png", "timestamp": "2024-02-15T20:30:25.984189+00:00"}}, {"id": "2df3745a-919c-43d3-9af4-9015d8dd3ab5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.621529+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "de5e4599-e7b3-4fe5-b28d-578755771ba3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/de5e4599-e7b3-4fe5-b28d-578755771ba3.png", "timestamp": "2024-02-15T20:30:25.984189+00:00"}}, {"id": "b36ee17f-de75-4dcd-873f-2c9da14b99e5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.819210+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "d1af650b-e0ec-4679-ba64-b087909a2975", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/d1af650b-e0ec-4679-ba64-b087909a2975.png", "timestamp": "2024-02-15T20:35:29.099549+00:00"}}, {"id": "173beb2b-1e8d-4307-9e9b-a554d8ed01ad", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.251416+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "d1af650b-e0ec-4679-ba64-b087909a2975", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/d1af650b-e0ec-4679-ba64-b087909a2975.png", "timestamp": "2024-02-15T20:35:29.099549+00:00"}}, {"id": "431e91a3-764c-43c9-8110-09e94e150c61", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.866838+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "43b0dea4-a309-4ef9-b51d-0c8a058a24e6", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/43b0dea4-a309-4ef9-b51d-0c8a058a24e6.png", "timestamp": "2024-02-15T20:38:02.234628+00:00"}}, {"id": "ddebc89c-a912-41ba-8085-d1ddb684e4fb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.392912+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color indicating data loss or corruption.", "snapshot": {"id": "43b0dea4-a309-4ef9-b51d-0c8a058a24e6", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/43b0dea4-a309-4ef9-b51d-0c8a058a24e6.png", "timestamp": "2024-02-15T20:38:02.234628+00:00"}}, {"id": "33fce887-a9f3-44e0-b49c-2cb2e2011ca1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.671289+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "17ccde18-2249-4704-8cec-b4f5bfd1ba24", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/17ccde18-2249-4704-8cec-b4f5bfd1ba24.png", "timestamp": "2024-02-15T20:40:30.832689+00:00"}}, {"id": "2eeb584b-159d-43d7-b294-163f2647b8be", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.526540+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "17ccde18-2249-4704-8cec-b4f5bfd1ba24", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/17ccde18-2249-4704-8cec-b4f5bfd1ba24.png", "timestamp": "2024-02-15T20:40:30.832689+00:00"}}, {"id": "5a4a6cc6-1b59-4167-b9f3-3442f8dbc145", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:54.063484+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "0bea7a9b-9a10-4161-bba0-9437bfbc8648", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/0bea7a9b-9a10-4161-bba0-9437bfbc8648.png", "timestamp": "2024-02-15T20:47:43.070450+00:00"}}, {"id": "ed987e0a-9fcb-4909-8ee3-b02985aff3f0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.872608+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "0bea7a9b-9a10-4161-bba0-9437bfbc8648", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/0bea7a9b-9a10-4161-bba0-9437bfbc8648.png", "timestamp": "2024-02-15T20:47:43.070450+00:00"}}, {"id": "763828a5-c08b-4314-9a98-e8c8d85f078f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.640269+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "0bea7a9b-9a10-4161-bba0-9437bfbc8648", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/0bea7a9b-9a10-4161-bba0-9437bfbc8648.png", "timestamp": "2024-02-15T20:47:43.070450+00:00"}}, {"id": "d165112a-8f6c-4890-b52a-e85c255b5068", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.871878+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0bea7a9b-9a10-4161-bba0-9437bfbc8648", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/0bea7a9b-9a10-4161-bba0-9437bfbc8648.png", "timestamp": "2024-02-15T20:47:43.070450+00:00"}}, {"id": "22b0ef5a-2666-4bcd-beab-f35b0ead7b9a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.293165+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "0bea7a9b-9a10-4161-bba0-9437bfbc8648", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/0bea7a9b-9a10-4161-bba0-9437bfbc8648.png", "timestamp": "2024-02-15T20:47:43.070450+00:00"}}, {"id": "60c1ac46-c9df-401a-94df-32e7720fb926", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.082281+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears clear.", "snapshot": {"id": "0bea7a9b-9a10-4161-bba0-9437bfbc8648", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/0bea7a9b-9a10-4161-bba0-9437bfbc8648.png", "timestamp": "2024-02-15T20:47:43.070450+00:00"}}, {"id": "65f64c83-0651-4cd4-8da0-c6496acd8383", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.614066+00:00", "label": "low", "label_explanation": "There is no water on the road surface, and it appears completely dry.", "snapshot": {"id": "9031344b-3559-48ae-a8fa-56b0104052c3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/9031344b-3559-48ae-a8fa-56b0104052c3.png", "timestamp": "2024-02-15T20:42:53.867800+00:00"}}, {"id": "609e1948-5397-4103-ab65-991414908b44", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.853809+00:00", "label": "easy", "label_explanation": "There is no visible traffic on the road, and the parked cars are stationary.", "snapshot": {"id": "9031344b-3559-48ae-a8fa-56b0104052c3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/9031344b-3559-48ae-a8fa-56b0104052c3.png", "timestamp": "2024-02-15T20:42:53.867800+00:00"}}, {"id": "6dace2a6-8686-463f-b176-1e9c45536216", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.320255+00:00", "label": "false", "label_explanation": "There is no rain present in the image, and the road surface appears dry.", "snapshot": {"id": "9031344b-3559-48ae-a8fa-56b0104052c3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/9031344b-3559-48ae-a8fa-56b0104052c3.png", "timestamp": "2024-02-15T20:42:53.867800+00:00"}}, {"id": "18f11471-ee4f-4cd9-997c-651cd75112dc", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.082228+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades.", "snapshot": {"id": "9031344b-3559-48ae-a8fa-56b0104052c3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/9031344b-3559-48ae-a8fa-56b0104052c3.png", "timestamp": "2024-02-15T20:42:53.867800+00:00"}}, {"id": "42c177a5-1e38-49aa-9034-bcec6bff5e3e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.023931+00:00", "label": "null", "label_explanation": "The image depicts an urban road with a few parked cars on the side and no visible traffic.", "snapshot": {"id": "9031344b-3559-48ae-a8fa-56b0104052c3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/9031344b-3559-48ae-a8fa-56b0104052c3.png", "timestamp": "2024-02-15T20:42:53.867800+00:00"}}, {"id": "6f4e9c94-92f1-4ee6-b096-03a1ba1dba3c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.763820+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9031344b-3559-48ae-a8fa-56b0104052c3", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/9031344b-3559-48ae-a8fa-56b0104052c3.png", "timestamp": "2024-02-15T20:42:53.867800+00:00"}}, {"id": "c41f2ac7-862d-4c77-bdc0-6e3dc4ade599", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:28.316113+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with large green and purple patches distorting the visual data. It is impossible to discern any meaningful information from this image.", "snapshot": {"id": "f03c5eed-eae3-4be8-8b07-a5b6f89183d1", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/f03c5eed-eae3-4be8-8b07-a5b6f89183d1.png", "timestamp": "2024-02-15T20:45:18.161781+00:00"}}, {"id": "26d51027-6634-4ca5-9fb6-69fa3a4bec68", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:28.670674+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "f03c5eed-eae3-4be8-8b07-a5b6f89183d1", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/f03c5eed-eae3-4be8-8b07-a5b6f89183d1.png", "timestamp": "2024-02-15T20:45:18.161781+00:00"}}, {"id": "275b3f88-d968-456b-b4f6-8b8ff588afe4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:52.465258+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road, and traffic can flow freely.", "snapshot": {"id": "bf3d346e-5dd3-4f19-8248-19affa9b9436", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/bf3d346e-5dd3-4f19-8248-19affa9b9436.png", "timestamp": "2024-02-15T20:33:40.690483+00:00"}}, {"id": "08627357-f8ad-484f-9d3a-c260433584c9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:52.280847+00:00", "label": "easy", "label_explanation": "The road is open to traffic, and vehicles can pass through without difficulty.", "snapshot": {"id": "bf3d346e-5dd3-4f19-8248-19affa9b9436", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/bf3d346e-5dd3-4f19-8248-19affa9b9436.png", "timestamp": "2024-02-15T20:33:40.690483+00:00"}}, {"id": "04ec6644-48fe-4d92-9cc9-6f0bd9570d95", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:52.069787+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "bf3d346e-5dd3-4f19-8248-19affa9b9436", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/bf3d346e-5dd3-4f19-8248-19affa9b9436.png", "timestamp": "2024-02-15T20:33:40.690483+00:00"}}, {"id": "10b3f8b0-82b0-4ce2-95b3-df2473adee15", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:51.793985+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "bf3d346e-5dd3-4f19-8248-19affa9b9436", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/bf3d346e-5dd3-4f19-8248-19affa9b9436.png", "timestamp": "2024-02-15T20:33:40.690483+00:00"}}, {"id": "00d6b7aa-f040-4cee-b4c0-5f674cd092c8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:51.580640+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a two-lane road with a grassy area and trees to the left, and parked cars on the right. There is a person walking on the left side of the road.", "snapshot": {"id": "bf3d346e-5dd3-4f19-8248-19affa9b9436", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/bf3d346e-5dd3-4f19-8248-19affa9b9436.png", "timestamp": "2024-02-15T20:33:40.690483+00:00"}}, {"id": "12ec2410-3c07-4f9f-b325-d0fd23600243", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:51.392586+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bf3d346e-5dd3-4f19-8248-19affa9b9436", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/bf3d346e-5dd3-4f19-8248-19affa9b9436.png", "timestamp": "2024-02-15T20:33:40.690483+00:00"}}, {"id": "b6a5d47d-23dc-4cb6-848c-ec5ed29749a0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:28.283437+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "dab5ba5a-a557-41b8-97a5-1419bf6932cf", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/dab5ba5a-a557-41b8-97a5-1419bf6932cf.png", "timestamp": "2024-02-15T20:50:06.222343+00:00"}}, {"id": "4be3b0fe-7ceb-4112-b3e4-7124a39e28d8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:28.016038+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no congestion.", "snapshot": {"id": "dab5ba5a-a557-41b8-97a5-1419bf6932cf", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/dab5ba5a-a557-41b8-97a5-1419bf6932cf.png", "timestamp": "2024-02-15T20:50:06.222343+00:00"}}, {"id": "8bd33699-dca5-4e47-8e7e-d9812e86fac5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.583116+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "dab5ba5a-a557-41b8-97a5-1419bf6932cf", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/dab5ba5a-a557-41b8-97a5-1419bf6932cf.png", "timestamp": "2024-02-15T20:50:06.222343+00:00"}}, {"id": "4c39c3e8-cd6c-42c7-8d09-c740aa39a187", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.336167+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a traffic light at the intersection. There are several cars on the road, and the weather appears to be clear.", "snapshot": {"id": "dab5ba5a-a557-41b8-97a5-1419bf6932cf", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/dab5ba5a-a557-41b8-97a5-1419bf6932cf.png", "timestamp": "2024-02-15T20:50:06.222343+00:00"}}, {"id": "9ec33375-7e45-4860-9a2c-9b856f46272e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.794572+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "dab5ba5a-a557-41b8-97a5-1419bf6932cf", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/dab5ba5a-a557-41b8-97a5-1419bf6932cf.png", "timestamp": "2024-02-15T20:50:06.222343+00:00"}}, {"id": "35a1af98-bcd0-40a3-a55e-25ac6b15893f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.104013+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "dab5ba5a-a557-41b8-97a5-1419bf6932cf", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/dab5ba5a-a557-41b8-97a5-1419bf6932cf.png", "timestamp": "2024-02-15T20:50:06.222343+00:00"}}, {"id": "55841f47-5dc4-48b5-9eb0-f8e97d9ddee1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.722583+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water droplets or puddles.", "snapshot": {"id": "112866b7-9b4f-433c-af3e-6c3fab39986e", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/112866b7-9b4f-433c-af3e-6c3fab39986e.png", "timestamp": "2024-02-15T20:52:31.172693+00:00"}}, {"id": "78c68013-252a-4898-ba51-0de896c73414", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.439438+00:00", "label": "free", "label_explanation": "There are no road blockades present in the image. The road is clear and free of any obstructions, allowing vehicles to pass through without hindrance.", "snapshot": {"id": "112866b7-9b4f-433c-af3e-6c3fab39986e", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/112866b7-9b4f-433c-af3e-6c3fab39986e.png", "timestamp": "2024-02-15T20:52:31.172693+00:00"}}, {"id": "bc537e11-6ed7-4252-9085-24f4dfce0522", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.488608+00:00", "label": "null", "label_explanation": "The image depicts an urban road with clear weather and moderate traffic. There are no visible signs of water on the road surface, and the road is free of any obstructions.", "snapshot": {"id": "112866b7-9b4f-433c-af3e-6c3fab39986e", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/112866b7-9b4f-433c-af3e-6c3fab39986e.png", "timestamp": "2024-02-15T20:52:31.172693+00:00"}}, {"id": "47532735-a1ba-4674-aeab-b27667e6bac8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.233363+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. There are no uniform grey or green color distortions or other indications of image tampering.", "snapshot": {"id": "112866b7-9b4f-433c-af3e-6c3fab39986e", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/112866b7-9b4f-433c-af3e-6c3fab39986e.png", "timestamp": "2024-02-15T20:52:31.172693+00:00"}}, {"id": "d2dd5392-3b28-4441-9b13-538e11636902", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.223905+00:00", "label": "easy", "label_explanation": "The traffic flow is easy. There are no visible signs of congestion or delays, and vehicles are able to move freely.", "snapshot": {"id": "112866b7-9b4f-433c-af3e-6c3fab39986e", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/112866b7-9b4f-433c-af3e-6c3fab39986e.png", "timestamp": "2024-02-15T20:52:31.172693+00:00"}}, {"id": "e57ccd9a-3c75-412a-a90c-92d0cfc81c1e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.036622+00:00", "label": "low", "label_explanation": "The water level on the road is low. There is no visible water on the road surface, and the road is completely dry.", "snapshot": {"id": "112866b7-9b4f-433c-af3e-6c3fab39986e", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/112866b7-9b4f-433c-af3e-6c3fab39986e.png", "timestamp": "2024-02-15T20:52:31.172693+00:00"}}, {"id": "d1a19d9e-3f5d-4792-b70c-04b20dfdd17a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:11.769432+00:00", "label": "easy", "label_explanation": "There is no visible traffic on the road, and all the vehicles are parked.", "snapshot": {"id": "ecaa4703-a9cb-4d4e-9632-ee8afe945f0f", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/ecaa4703-a9cb-4d4e-9632-ee8afe945f0f.png", "timestamp": "2024-02-15T20:55:00.926118+00:00"}}, {"id": "abdfc628-b27e-476f-a621-112d7d57276d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:11.536401+00:00", "label": "low", "label_explanation": "There is no water on the road surface, and it appears completely dry.", "snapshot": {"id": "ecaa4703-a9cb-4d4e-9632-ee8afe945f0f", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/ecaa4703-a9cb-4d4e-9632-ee8afe945f0f.png", "timestamp": "2024-02-15T20:55:00.926118+00:00"}}, {"id": "db15ad6b-e6c8-47d3-89a3-ef8b82527279", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:11.317490+00:00", "label": "false", "label_explanation": "There is no rain present in the image, and the road surface appears dry.", "snapshot": {"id": "ecaa4703-a9cb-4d4e-9632-ee8afe945f0f", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/ecaa4703-a9cb-4d4e-9632-ee8afe945f0f.png", "timestamp": "2024-02-15T20:55:00.926118+00:00"}}, {"id": "898c8d84-dfd1-4a30-bd4a-2c3cd6be5bda", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.822901+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ecaa4703-a9cb-4d4e-9632-ee8afe945f0f", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/ecaa4703-a9cb-4d4e-9632-ee8afe945f0f.png", "timestamp": "2024-02-15T20:55:00.926118+00:00"}}, {"id": "f569f343-899d-47e8-8b56-bd3edd7c7de8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:12.010769+00:00", "label": "free", "label_explanation": "The road is completely clear, with no obstructions or blockades.", "snapshot": {"id": "ecaa4703-a9cb-4d4e-9632-ee8afe945f0f", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/ecaa4703-a9cb-4d4e-9632-ee8afe945f0f.png", "timestamp": "2024-02-15T20:55:00.926118+00:00"}}, {"id": "0fc528cf-b49a-483d-b656-15a0eb5d452d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:11.057375+00:00", "label": "null", "label_explanation": "The image depicts an urban road with a few parked cars and no visible traffic.", "snapshot": {"id": "ecaa4703-a9cb-4d4e-9632-ee8afe945f0f", "camera_id": "001168", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001168/ecaa4703-a9cb-4d4e-9632-ee8afe945f0f.png", "timestamp": "2024-02-15T20:55:00.926118+00:00"}}]}, {"id": "000100", "name": "AV. 31 DE MAR\u00c7O X AV. SALVADOR DE S\u00c1", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91152917, "longitude": -43.19602158, "objects": ["image_corrupted", "rain", "traffic", "water_level", "road_blockade", "image_description"], "identifications": [{"id": "590e1a01-354a-4731-823b-786ada9e4a97", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.564165+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2.png", "timestamp": "2024-02-15T20:30:20.619049+00:00"}}, {"id": "5f5c83a7-2bd7-4089-9e44-2327385d3bfe", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.139093+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2.png", "timestamp": "2024-02-15T20:30:20.619049+00:00"}}, {"id": "98b2953d-b33e-49eb-9943-b6f87f3aa7cc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.892682+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2.png", "timestamp": "2024-02-15T20:30:20.619049+00:00"}}, {"id": "98b54301-8c52-4d67-9c1b-9b9d4989a3cf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.159330+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2.png", "timestamp": "2024-02-15T20:30:20.619049+00:00"}}, {"id": "7aef53ff-85f6-4f22-be01-431a7096612e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.976082+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2.png", "timestamp": "2024-02-15T20:30:20.619049+00:00"}}, {"id": "c0d7bb55-bc63-43a9-9d7d-d1d0a820eb0d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.428586+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/82cc6b1e-0fd3-4b6e-923a-b65cb7eb07d2.png", "timestamp": "2024-02-15T20:30:20.619049+00:00"}}, {"id": "d451157a-d366-4999-8a77-316698f47b40", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:09.859581+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "01e3c5a0-c78c-46af-af4f-52c3d3ebbbde", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/01e3c5a0-c78c-46af-af4f-52c3d3ebbbde.png", "timestamp": "2024-02-15T20:32:54.490986+00:00"}}, {"id": "4157e06a-9e45-421d-a1fb-b9fe7f94e1ba", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:11.001763+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "01e3c5a0-c78c-46af-af4f-52c3d3ebbbde", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/01e3c5a0-c78c-46af-af4f-52c3d3ebbbde.png", "timestamp": "2024-02-15T20:32:54.490986+00:00"}}, {"id": "f12204fc-2ad2-4073-aae4-ec2f55d74874", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:11.414522+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "01e3c5a0-c78c-46af-af4f-52c3d3ebbbde", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/01e3c5a0-c78c-46af-af4f-52c3d3ebbbde.png", "timestamp": "2024-02-15T20:32:54.490986+00:00"}}, {"id": "5fbd7aa2-7f85-421a-bcb6-254425cf95d7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:10.294570+00:00", "label": "null", "label_explanation": "The image shows a six-lane urban road with a concrete barrier separating the directions. It is daytime and the weather is cloudy. There are trees and buildings in the background.", "snapshot": {"id": "01e3c5a0-c78c-46af-af4f-52c3d3ebbbde", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/01e3c5a0-c78c-46af-af4f-52c3d3ebbbde.png", "timestamp": "2024-02-15T20:32:54.490986+00:00"}}, {"id": "db201681-1259-4eb5-8b8b-e6ae219e2c40", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:12.453433+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "01e3c5a0-c78c-46af-af4f-52c3d3ebbbde", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/01e3c5a0-c78c-46af-af4f-52c3d3ebbbde.png", "timestamp": "2024-02-15T20:32:54.490986+00:00"}}, {"id": "1b52a5d5-413b-4abe-907d-d2b3a327a556", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:11.887271+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "01e3c5a0-c78c-46af-af4f-52c3d3ebbbde", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/01e3c5a0-c78c-46af-af4f-52c3d3ebbbde.png", "timestamp": "2024-02-15T20:32:54.490986+00:00"}}, {"id": "e41f011c-89c5-483c-ae7b-10dd8b15bf6f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:21.146162+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "c6cde5ab-4306-493b-a996-880a24bbcb28", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/c6cde5ab-4306-493b-a996-880a24bbcb28.png", "timestamp": "2024-02-15T20:45:11.642646+00:00"}}, {"id": "753534cf-94dd-4291-b397-6f92fb7a64ed", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:20.914505+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no visible details.", "snapshot": {"id": "c6cde5ab-4306-493b-a996-880a24bbcb28", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/c6cde5ab-4306-493b-a996-880a24bbcb28.png", "timestamp": "2024-02-15T20:45:11.642646+00:00"}}, {"id": "64f029e2-4ee5-4a9b-b4fa-07188381af84", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.890559+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "7abd1702-65e0-4a69-b20b-15d74215a974", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/7abd1702-65e0-4a69-b20b-15d74215a974.png", "timestamp": "2024-02-15T20:47:37.638642+00:00"}}, {"id": "aa2892c2-ea5f-4493-9d43-48f32c70fe20", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.701441+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "7abd1702-65e0-4a69-b20b-15d74215a974", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/7abd1702-65e0-4a69-b20b-15d74215a974.png", "timestamp": "2024-02-15T20:47:37.638642+00:00"}}, {"id": "4b2ec595-e400-47c4-aadd-e3ffbbcab1e2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.370104+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars and a bus moving in the same direction.", "snapshot": {"id": "7abd1702-65e0-4a69-b20b-15d74215a974", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/7abd1702-65e0-4a69-b20b-15d74215a974.png", "timestamp": "2024-02-15T20:47:37.638642+00:00"}}, {"id": "8559763e-9b31-46b6-979c-2eb063ac758d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.666587+00:00", "label": "null", "label_explanation": "The image shows a six-lane urban road with a slight bend to the right. It is daytime and the weather is clear. There are a few trees on either side of the road and buildings and mountains in the background. There are several cars and a bus on the road, all moving in the same direction. The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "7abd1702-65e0-4a69-b20b-15d74215a974", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/7abd1702-65e0-4a69-b20b-15d74215a974.png", "timestamp": "2024-02-15T20:47:37.638642+00:00"}}, {"id": "bd9b33ce-66eb-4836-a8a0-7994eef07e52", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.193945+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "7abd1702-65e0-4a69-b20b-15d74215a974", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/7abd1702-65e0-4a69-b20b-15d74215a974.png", "timestamp": "2024-02-15T20:47:37.638642+00:00"}}, {"id": "cc9a45dd-1161-434b-bd09-43d133ea0380", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.415101+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7abd1702-65e0-4a69-b20b-15d74215a974", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/7abd1702-65e0-4a69-b20b-15d74215a974.png", "timestamp": "2024-02-15T20:47:37.638642+00:00"}}, {"id": "8d7b9acc-9599-4d4a-b010-140047e537e1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:39.993410+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a concrete barrier separating the directions. It is daytime and the weather is cloudy. There are trees and buildings in the background. There are several cars on the road, but traffic appears to be flowing smoothly.", "snapshot": {"id": "b69dfb6f-8441-4ef2-bee7-f162cde846b6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b69dfb6f-8441-4ef2-bee7-f162cde846b6.png", "timestamp": "2024-02-15T20:35:24.007174+00:00"}}, {"id": "24955aaa-3ab7-466d-b26a-5468ea384dba", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.632134+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly in both directions. There are no accidents or other obstructions blocking the road.", "snapshot": {"id": "b69dfb6f-8441-4ef2-bee7-f162cde846b6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b69dfb6f-8441-4ef2-bee7-f162cde846b6.png", "timestamp": "2024-02-15T20:35:24.007174+00:00"}}, {"id": "8cf7d58a-6f90-4b9b-b579-0c189e976d0d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.517590+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy enough to cause any significant traffic disruptions.", "snapshot": {"id": "b69dfb6f-8441-4ef2-bee7-f162cde846b6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b69dfb6f-8441-4ef2-bee7-f162cde846b6.png", "timestamp": "2024-02-15T20:35:24.007174+00:00"}}, {"id": "c89204a3-d97d-4ecd-80db-6a725158bec2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.972905+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The water from the rain has either drained away or evaporated.", "snapshot": {"id": "b69dfb6f-8441-4ef2-bee7-f162cde846b6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b69dfb6f-8441-4ef2-bee7-f162cde846b6.png", "timestamp": "2024-02-15T20:35:24.007174+00:00"}}, {"id": "fb9e8c74-3779-4c1a-b154-6dcb869e5769", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.953350+00:00", "label": "free", "label_explanation": "There are no road blockades or other obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "b69dfb6f-8441-4ef2-bee7-f162cde846b6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b69dfb6f-8441-4ef2-bee7-f162cde846b6.png", "timestamp": "2024-02-15T20:35:24.007174+00:00"}}, {"id": "7e24893e-e463-4746-bf8b-5ef954580df4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:39.323224+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b69dfb6f-8441-4ef2-bee7-f162cde846b6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b69dfb6f-8441-4ef2-bee7-f162cde846b6.png", "timestamp": "2024-02-15T20:35:24.007174+00:00"}}, {"id": "3f745f8a-1ef0-4f82-bf43-1fab638f6bfa", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.288964+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "ab25694c-e4db-467c-a2cb-9a07d2f180d4", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/ab25694c-e4db-467c-a2cb-9a07d2f180d4.png", "timestamp": "2024-02-15T20:37:53.325317+00:00"}}, {"id": "cff13465-7532-4db4-8f85-3a7cb8654185", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.254159+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "ab25694c-e4db-467c-a2cb-9a07d2f180d4", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/ab25694c-e4db-467c-a2cb-9a07d2f180d4.png", "timestamp": "2024-02-15T20:37:53.325317+00:00"}}, {"id": "80d29ee7-2df8-478d-b308-1527cc514b5d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.647116+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "ab25694c-e4db-467c-a2cb-9a07d2f180d4", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/ab25694c-e4db-467c-a2cb-9a07d2f180d4.png", "timestamp": "2024-02-15T20:37:53.325317+00:00"}}, {"id": "d624e4ab-aa14-4230-a107-8746447b886e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.555151+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "ab25694c-e4db-467c-a2cb-9a07d2f180d4", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/ab25694c-e4db-467c-a2cb-9a07d2f180d4.png", "timestamp": "2024-02-15T20:37:53.325317+00:00"}}, {"id": "0d61dbc5-0c37-4c57-a84e-1712157462ab", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.641735+00:00", "label": "null", "label_explanation": "The image captures a six-lane urban road with a concrete barrier separating the directions. On the left side of the road, there is a blue wall. The right side of the road has trees and shrubs, with buildings and a mountain in the background.", "snapshot": {"id": "ab25694c-e4db-467c-a2cb-9a07d2f180d4", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/ab25694c-e4db-467c-a2cb-9a07d2f180d4.png", "timestamp": "2024-02-15T20:37:53.325317+00:00"}}, {"id": "b663d805-9913-4a19-8fb3-541d0d3c6d5b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.284636+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ab25694c-e4db-467c-a2cb-9a07d2f180d4", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/ab25694c-e4db-467c-a2cb-9a07d2f180d4.png", "timestamp": "2024-02-15T20:37:53.325317+00:00"}}, {"id": "305a5a84-adf3-4c1d-a040-7adbc9012539", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.524745+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "eee8d27d-cfe8-4484-9cc1-b88919504df9", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/eee8d27d-cfe8-4484-9cc1-b88919504df9.png", "timestamp": "2024-02-15T20:40:26.421358+00:00"}}, {"id": "74ce86db-c7d7-4c44-ae28-333bc801c430", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.223128+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "eee8d27d-cfe8-4484-9cc1-b88919504df9", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/eee8d27d-cfe8-4484-9cc1-b88919504df9.png", "timestamp": "2024-02-15T20:40:26.421358+00:00"}}, {"id": "fe4c2996-619b-4111-b417-76bd0a6a9525", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.190378+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "eee8d27d-cfe8-4484-9cc1-b88919504df9", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/eee8d27d-cfe8-4484-9cc1-b88919504df9.png", "timestamp": "2024-02-15T20:40:26.421358+00:00"}}, {"id": "24cd1c78-0d15-4302-be87-e9bbe20eadb4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.989594+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "eee8d27d-cfe8-4484-9cc1-b88919504df9", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/eee8d27d-cfe8-4484-9cc1-b88919504df9.png", "timestamp": "2024-02-15T20:40:26.421358+00:00"}}, {"id": "42137768-d41c-4faa-b215-de6cb5d6d5d7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.780999+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "eee8d27d-cfe8-4484-9cc1-b88919504df9", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/eee8d27d-cfe8-4484-9cc1-b88919504df9.png", "timestamp": "2024-02-15T20:40:26.421358+00:00"}}, {"id": "919b63fe-5ddc-4da9-9196-981d60ae17ef", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.940800+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "eee8d27d-cfe8-4484-9cc1-b88919504df9", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/eee8d27d-cfe8-4484-9cc1-b88919504df9.png", "timestamp": "2024-02-15T20:40:26.421358+00:00"}}, {"id": "c1d700bb-40d4-406b-a588-876ebd62e044", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.329759+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "fe63a233-aa4d-4c63-8fd2-1f24055c858b", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/fe63a233-aa4d-4c63-8fd2-1f24055c858b.png", "timestamp": "2024-02-15T20:42:51.767116+00:00"}}, {"id": "46ca8ded-bc5e-4b50-a317-fe9177005b85", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.604256+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "fe63a233-aa4d-4c63-8fd2-1f24055c858b", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/fe63a233-aa4d-4c63-8fd2-1f24055c858b.png", "timestamp": "2024-02-15T20:42:51.767116+00:00"}}, {"id": "224bbac7-5ea8-4727-965b-87aa28c3f491", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.534055+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a concrete barrier separating the directions. It is daytime and the weather is cloudy. There are trees and buildings in the background.", "snapshot": {"id": "fe63a233-aa4d-4c63-8fd2-1f24055c858b", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/fe63a233-aa4d-4c63-8fd2-1f24055c858b.png", "timestamp": "2024-02-15T20:42:51.767116+00:00"}}, {"id": "48078a38-3337-4267-8948-eb39d5f6143f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.761657+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "fe63a233-aa4d-4c63-8fd2-1f24055c858b", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/fe63a233-aa4d-4c63-8fd2-1f24055c858b.png", "timestamp": "2024-02-15T20:42:51.767116+00:00"}}, {"id": "4266889a-92e1-4094-96fa-fb82db22438f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.319402+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fe63a233-aa4d-4c63-8fd2-1f24055c858b", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/fe63a233-aa4d-4c63-8fd2-1f24055c858b.png", "timestamp": "2024-02-15T20:42:51.767116+00:00"}}, {"id": "df69a63c-040c-47bd-a4ff-a846992ffa21", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.062620+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "fe63a233-aa4d-4c63-8fd2-1f24055c858b", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/fe63a233-aa4d-4c63-8fd2-1f24055c858b.png", "timestamp": "2024-02-15T20:42:51.767116+00:00"}}, {"id": "cc1be68b-76ba-436e-b584-4945f3c6eedb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.835346+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "b1655ab8-700e-4561-9493-b48a42e88ab2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b1655ab8-700e-4561-9493-b48a42e88ab2.png", "timestamp": "2024-02-15T20:50:02.679715+00:00"}}, {"id": "46718bc8-1eb4-41fc-9748-c1eac375ca5f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.291714+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars driving at a steady pace.", "snapshot": {"id": "b1655ab8-700e-4561-9493-b48a42e88ab2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b1655ab8-700e-4561-9493-b48a42e88ab2.png", "timestamp": "2024-02-15T20:50:02.679715+00:00"}}, {"id": "dfdc6859-2b7c-47d5-adaf-7efeca3703d4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.013899+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "b1655ab8-700e-4561-9493-b48a42e88ab2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b1655ab8-700e-4561-9493-b48a42e88ab2.png", "timestamp": "2024-02-15T20:50:02.679715+00:00"}}, {"id": "f9b18730-6df5-43aa-aa23-d12fd737fc29", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.527594+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "b1655ab8-700e-4561-9493-b48a42e88ab2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b1655ab8-700e-4561-9493-b48a42e88ab2.png", "timestamp": "2024-02-15T20:50:02.679715+00:00"}}, {"id": "c56c9b32-92a1-4d57-89d3-83b20d1b1b2d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.327959+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b1655ab8-700e-4561-9493-b48a42e88ab2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b1655ab8-700e-4561-9493-b48a42e88ab2.png", "timestamp": "2024-02-15T20:50:02.679715+00:00"}}, {"id": "2541f3ec-7631-4c92-acfa-37ac595bd24b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.585493+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a slight bend to the right. It is daytime and the weather appears to be cloudy. There are several cars on the road, all of which are driving in the same direction. The road is lined with trees and buildings.", "snapshot": {"id": "b1655ab8-700e-4561-9493-b48a42e88ab2", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/b1655ab8-700e-4561-9493-b48a42e88ab2.png", "timestamp": "2024-02-15T20:50:02.679715+00:00"}}, {"id": "e9acda30-0517-437e-a4f3-954219ce017d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.797854+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy and overcast. The road is relatively wide, with multiple lanes in each direction. It is bordered by trees and buildings, and there are several cars and buses visible on the road. The image is taken from an elevated angle, providing a good view of the overall scene.", "snapshot": {"id": "66f6b9f4-33d9-445c-996d-9ac18b029fc6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/66f6b9f4-33d9-445c-996d-9ac18b029fc6.png", "timestamp": "2024-02-15T20:52:25.463588+00:00"}}, {"id": "77d4165c-1989-4f98-b2c5-a6cc65ee453d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.385453+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "66f6b9f4-33d9-445c-996d-9ac18b029fc6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/66f6b9f4-33d9-445c-996d-9ac18b029fc6.png", "timestamp": "2024-02-15T20:52:25.463588+00:00"}}, {"id": "c0f376a1-cf52-4518-bff4-fb459c8e2d55", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.622315+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several cars and buses visible on the road, but they are all moving at a steady pace. There are no major delays or obstructions visible.", "snapshot": {"id": "66f6b9f4-33d9-445c-996d-9ac18b029fc6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/66f6b9f4-33d9-445c-996d-9ac18b029fc6.png", "timestamp": "2024-02-15T20:52:25.463588+00:00"}}, {"id": "2a407357-d573-4c93-8c8c-9313b649fe79", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.112545+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry and there are no visible signs of water.", "snapshot": {"id": "66f6b9f4-33d9-445c-996d-9ac18b029fc6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/66f6b9f4-33d9-445c-996d-9ac18b029fc6.png", "timestamp": "2024-02-15T20:52:25.463588+00:00"}}, {"id": "0b12f674-88cd-4626-93eb-45a7bc319078", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.349605+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "66f6b9f4-33d9-445c-996d-9ac18b029fc6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/66f6b9f4-33d9-445c-996d-9ac18b029fc6.png", "timestamp": "2024-02-15T20:52:25.463588+00:00"}}, {"id": "251480f8-ea22-4e59-93ef-afe2c13e87be", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:38.112928+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and free of any obstructions.", "snapshot": {"id": "66f6b9f4-33d9-445c-996d-9ac18b029fc6", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/66f6b9f4-33d9-445c-996d-9ac18b029fc6.png", "timestamp": "2024-02-15T20:52:25.463588+00:00"}}, {"id": "dca5a310-0ad1-4caf-a521-4762b3d0919a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.751583+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no significant congestion or disruptions observed.", "snapshot": {"id": "da0b38a7-ca3b-488f-ab31-5a2729554fe8", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/da0b38a7-ca3b-488f-ab31-5a2729554fe8.png", "timestamp": "2024-02-15T20:54:54.046575+00:00"}}, {"id": "49d058ac-feef-401e-a066-3ee7294ffe57", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.073873+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "da0b38a7-ca3b-488f-ab31-5a2729554fe8", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/da0b38a7-ca3b-488f-ab31-5a2729554fe8.png", "timestamp": "2024-02-15T20:54:54.046575+00:00"}}, {"id": "44fd6075-1b58-4dda-950b-c54d1ad35cb8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.571005+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "da0b38a7-ca3b-488f-ab31-5a2729554fe8", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/da0b38a7-ca3b-488f-ab31-5a2729554fe8.png", "timestamp": "2024-02-15T20:54:54.046575+00:00"}}, {"id": "72345bdd-2cc7-4996-8c15-04670d43fe46", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.873186+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "da0b38a7-ca3b-488f-ab31-5a2729554fe8", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/da0b38a7-ca3b-488f-ab31-5a2729554fe8.png", "timestamp": "2024-02-15T20:54:54.046575+00:00"}}, {"id": "6a4f83eb-ff0e-4975-ac03-d9bcc085b1b2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.344268+00:00", "label": "false", "label_explanation": "There are no visible signs of rain or wetness on the road surface.", "snapshot": {"id": "da0b38a7-ca3b-488f-ab31-5a2729554fe8", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/da0b38a7-ca3b-488f-ab31-5a2729554fe8.png", "timestamp": "2024-02-15T20:54:54.046575+00:00"}}, {"id": "f40a2870-8df2-4efa-9d4a-859abaf33a7f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.082343+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "da0b38a7-ca3b-488f-ab31-5a2729554fe8", "camera_id": "000100", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000100/da0b38a7-ca3b-488f-ab31-5a2729554fe8.png", "timestamp": "2024-02-15T20:54:54.046575+00:00"}}]}, {"id": "001493", "name": "GRAJA\u00da-JACAREPAGU\u00c1 (SUBIDA GRAJA\u00da) - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.26.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91698688, "longitude": -43.2628887, "objects": ["road_blockade", "rain", "water_level", "image_description", "traffic", "image_corrupted"], "identifications": [{"id": "6ee48e72-5b03-4903-8d52-4b1937c24131", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.381792+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable for vehicles.", "snapshot": {"id": "4b2b7631-f2a7-417e-a8a7-19b0640f9291", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4b2b7631-f2a7-417e-a8a7-19b0640f9291.png", "timestamp": "2024-02-15T20:30:25.865059+00:00"}}, {"id": "1c547d19-12b1-4835-8573-14686613e03f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.005334+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with a few cars visible on the road. The cars are moving slowly due to the wet road conditions.", "snapshot": {"id": "4b2b7631-f2a7-417e-a8a7-19b0640f9291", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4b2b7631-f2a7-417e-a8a7-19b0640f9291.png", "timestamp": "2024-02-15T20:30:25.865059+00:00"}}, {"id": "72e6f7ea-c7c6-4f65-ad08-0e3ddc2efb5d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:41.531589+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water visible. The sky is cloudy, suggesting that it has been raining or is about to rain.", "snapshot": {"id": "4b2b7631-f2a7-417e-a8a7-19b0640f9291", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4b2b7631-f2a7-417e-a8a7-19b0640f9291.png", "timestamp": "2024-02-15T20:30:25.865059+00:00"}}, {"id": "5bb26c1d-41fb-4c7e-920c-545bd1a27463", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:41.288446+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. The road surface is wet, with small puddles of water visible. There are cars parked on either side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "4b2b7631-f2a7-417e-a8a7-19b0640f9291", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4b2b7631-f2a7-417e-a8a7-19b0640f9291.png", "timestamp": "2024-02-15T20:30:25.865059+00:00"}}, {"id": "4bf564e4-3383-4974-ad4e-500960f940a7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:40.974639+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4b2b7631-f2a7-417e-a8a7-19b0640f9291", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4b2b7631-f2a7-417e-a8a7-19b0640f9291.png", "timestamp": "2024-02-15T20:30:25.865059+00:00"}}, {"id": "a2f68377-b5b2-4b42-901f-099e842b13db", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:41.737371+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles visible. The road is still passable for vehicles, although caution is advised.", "snapshot": {"id": "4b2b7631-f2a7-417e-a8a7-19b0640f9291", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4b2b7631-f2a7-417e-a8a7-19b0640f9291.png", "timestamp": "2024-02-15T20:30:25.865059+00:00"}}, {"id": "6279b36d-9828-430f-a84f-ebf0fce9254f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.249936+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars parked on either side of the road. There are no major obstructions or hazards visible.", "snapshot": {"id": "6cb10330-c081-4aa7-9c5c-8f063ba3a964", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/6cb10330-c081-4aa7-9c5c-8f063ba3a964.png", "timestamp": "2024-02-15T20:32:57.716135+00:00"}}, {"id": "5f178cb8-529d-4f11-ab7a-f6b0bc324f66", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.732241+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "6cb10330-c081-4aa7-9c5c-8f063ba3a964", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/6cb10330-c081-4aa7-9c5c-8f063ba3a964.png", "timestamp": "2024-02-15T20:32:57.716135+00:00"}}, {"id": "a6f3e49a-c078-4418-b245-f5fd34cdd686", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.137822+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain appears to have stopped and there is no standing water.", "snapshot": {"id": "6cb10330-c081-4aa7-9c5c-8f063ba3a964", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/6cb10330-c081-4aa7-9c5c-8f063ba3a964.png", "timestamp": "2024-02-15T20:32:57.716135+00:00"}}, {"id": "3b170edf-d6e6-42e9-9912-32e19587d97d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:14.649759+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are parked cars on either side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "6cb10330-c081-4aa7-9c5c-8f063ba3a964", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/6cb10330-c081-4aa7-9c5c-8f063ba3a964.png", "timestamp": "2024-02-15T20:32:57.716135+00:00"}}, {"id": "6d937059-0d8e-495a-9285-52972b8e664b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:14.047980+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6cb10330-c081-4aa7-9c5c-8f063ba3a964", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/6cb10330-c081-4aa7-9c5c-8f063ba3a964.png", "timestamp": "2024-02-15T20:32:57.716135+00:00"}}, {"id": "6d4d2e5a-8d5b-4cf9-96dc-a4c20a3cbe8f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.699924+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but this is likely due to recent rain and not flooding.", "snapshot": {"id": "6cb10330-c081-4aa7-9c5c-8f063ba3a964", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/6cb10330-c081-4aa7-9c5c-8f063ba3a964.png", "timestamp": "2024-02-15T20:32:57.716135+00:00"}}, {"id": "8396169e-2360-4713-81d6-65aa2f3af139", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.355787+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "32eed661-a512-4d07-92cf-b88da6715376", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/32eed661-a512-4d07-92cf-b88da6715376.png", "timestamp": "2024-02-15T20:45:15.934869+00:00"}}, {"id": "df36ca61-3bb3-4ebc-93f6-683aef8f148d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.090883+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with no discernible visual data. It is impossible to assess road conditions or traffic flow.", "snapshot": {"id": "32eed661-a512-4d07-92cf-b88da6715376", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/32eed661-a512-4d07-92cf-b88da6715376.png", "timestamp": "2024-02-15T20:45:15.934869+00:00"}}, {"id": "717e1f2f-4b35-405c-b5e8-7cc912215397", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.282216+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "c97e8eee-19d2-41b5-8d95-49425c2093f9", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/c97e8eee-19d2-41b5-8d95-49425c2093f9.png", "timestamp": "2024-02-15T20:35:26.538772+00:00"}}, {"id": "454c5bc0-b0a4-49cc-bbc5-5b6bcbf9bf83", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:39.482926+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c97e8eee-19d2-41b5-8d95-49425c2093f9", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/c97e8eee-19d2-41b5-8d95-49425c2093f9.png", "timestamp": "2024-02-15T20:35:26.538772+00:00"}}, {"id": "de6fc40a-1d31-4f9d-86bd-63386967511e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.979267+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "c97e8eee-19d2-41b5-8d95-49425c2093f9", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/c97e8eee-19d2-41b5-8d95-49425c2093f9.png", "timestamp": "2024-02-15T20:35:26.538772+00:00"}}, {"id": "a628fbe2-dc5f-43ab-8e4c-74904df38ab9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.765540+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "c97e8eee-19d2-41b5-8d95-49425c2093f9", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/c97e8eee-19d2-41b5-8d95-49425c2093f9.png", "timestamp": "2024-02-15T20:35:26.538772+00:00"}}, {"id": "eac2638c-d695-43e6-841c-09cc14e7d236", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.590585+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "c97e8eee-19d2-41b5-8d95-49425c2093f9", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/c97e8eee-19d2-41b5-8d95-49425c2093f9.png", "timestamp": "2024-02-15T20:35:26.538772+00:00"}}, {"id": "d5114a68-f388-430d-a9bf-6699cbe23826", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.150350+00:00", "label": "null", "label_explanation": "The image captures an urban road scene. It is daytime, and the weather appears to be clear. There are several vehicles on the road, including a bus, a motorcycle, and a few cars. The road is lined with buildings and trees.", "snapshot": {"id": "c97e8eee-19d2-41b5-8d95-49425c2093f9", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/c97e8eee-19d2-41b5-8d95-49425c2093f9.png", "timestamp": "2024-02-15T20:35:26.538772+00:00"}}, {"id": "e60ce95f-4e06-4a31-a0de-4902895cde1d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.919827+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "a62cfd8e-727c-4106-ae36-9bafd2e0470f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/a62cfd8e-727c-4106-ae36-9bafd2e0470f.png", "timestamp": "2024-02-15T20:40:29.276736+00:00"}}, {"id": "971aa210-c4a4-4a68-a22c-1a0db8a49523", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.478744+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "a62cfd8e-727c-4106-ae36-9bafd2e0470f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/a62cfd8e-727c-4106-ae36-9bafd2e0470f.png", "timestamp": "2024-02-15T20:40:29.276736+00:00"}}, {"id": "f5f7e89f-5450-45d9-9066-5cfc8b96aa56", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.919518+00:00", "label": "null", "label_explanation": "The image captures an urban road scene. It is daytime, and the weather appears to be cloudy. There are several parked cars on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "a62cfd8e-727c-4106-ae36-9bafd2e0470f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/a62cfd8e-727c-4106-ae36-9bafd2e0470f.png", "timestamp": "2024-02-15T20:40:29.276736+00:00"}}, {"id": "b14d8956-adaa-44cf-aa74-2d1b822dfe72", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.715389+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a62cfd8e-727c-4106-ae36-9bafd2e0470f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/a62cfd8e-727c-4106-ae36-9bafd2e0470f.png", "timestamp": "2024-02-15T20:40:29.276736+00:00"}}, {"id": "969a92b2-8a59-41a9-9dc0-2f3242f3ab6a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.702798+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion.", "snapshot": {"id": "a62cfd8e-727c-4106-ae36-9bafd2e0470f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/a62cfd8e-727c-4106-ae36-9bafd2e0470f.png", "timestamp": "2024-02-15T20:40:29.276736+00:00"}}, {"id": "9079fbfb-6c08-431b-84d8-27f90eb8429b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.204222+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "a62cfd8e-727c-4106-ae36-9bafd2e0470f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/a62cfd8e-727c-4106-ae36-9bafd2e0470f.png", "timestamp": "2024-02-15T20:40:29.276736+00:00"}}, {"id": "01ba83f8-6979-4181-aba6-6f1c5a3770f0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:13.435717+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "fff2353c-39f7-4a53-a9fc-5b42882492a4", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/fff2353c-39f7-4a53-a9fc-5b42882492a4.png", "timestamp": "2024-02-15T20:37:56.469923+00:00"}}, {"id": "4b1e1ca9-7af7-49e1-b581-08524c9dd05c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.042999+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fff2353c-39f7-4a53-a9fc-5b42882492a4", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/fff2353c-39f7-4a53-a9fc-5b42882492a4.png", "timestamp": "2024-02-15T20:37:56.469923+00:00"}}, {"id": "c4fef258-9f8a-4f30-9740-f1250aa00ed6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:13.685126+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions.", "snapshot": {"id": "fff2353c-39f7-4a53-a9fc-5b42882492a4", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/fff2353c-39f7-4a53-a9fc-5b42882492a4.png", "timestamp": "2024-02-15T20:37:56.469923+00:00"}}, {"id": "70106ab0-93d8-4322-80ba-87911eecbe42", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.378577+00:00", "label": "null", "label_explanation": "The image captures an urban road scene. It is daytime, and the weather appears to be cloudy. There are several parked cars on the side of the road, and a few people are walking.", "snapshot": {"id": "fff2353c-39f7-4a53-a9fc-5b42882492a4", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/fff2353c-39f7-4a53-a9fc-5b42882492a4.png", "timestamp": "2024-02-15T20:37:56.469923+00:00"}}, {"id": "9f8b44c7-2479-4310-b025-99583ff1dbd1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:14.250901+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "fff2353c-39f7-4a53-a9fc-5b42882492a4", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/fff2353c-39f7-4a53-a9fc-5b42882492a4.png", "timestamp": "2024-02-15T20:37:56.469923+00:00"}}, {"id": "de04d965-7315-4b7c-9b02-842fa00fc2e9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.775725+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "fff2353c-39f7-4a53-a9fc-5b42882492a4", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/fff2353c-39f7-4a53-a9fc-5b42882492a4.png", "timestamp": "2024-02-15T20:37:56.469923+00:00"}}, {"id": "95d38277-3d33-4075-8f92-5bea182068b0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.248555+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f.png", "timestamp": "2024-02-15T20:42:52.142651+00:00"}}, {"id": "78d7e358-f768-4e65-b90e-71a2de460d94", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.463777+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f.png", "timestamp": "2024-02-15T20:42:52.142651+00:00"}}, {"id": "0c485125-d921-4b9d-adca-cb85a66ce5b0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.468985+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f.png", "timestamp": "2024-02-15T20:42:52.142651+00:00"}}, {"id": "a10e22a6-b62a-4d9c-865f-bc14b034ebbf", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.874371+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f.png", "timestamp": "2024-02-15T20:42:52.142651+00:00"}}, {"id": "8bfe4bd8-405a-42bc-b3e1-fe4dd38015d3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.657509+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f.png", "timestamp": "2024-02-15T20:42:52.142651+00:00"}}, {"id": "6b80faeb-dd42-4480-8556-f9ec68982fb2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.660272+00:00", "label": "null", "label_explanation": "The image shows a moderately busy urban road with cars, buildings, and vegetation.", "snapshot": {"id": "4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/4ec1ebed-8a65-4a09-8a67-ea7a4f8c246f.png", "timestamp": "2024-02-15T20:42:52.142651+00:00"}}, {"id": "c1c39050-463f-4690-9d67-cb22eef3c370", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.128014+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "cb8b69ca-a897-4b88-b056-c6831b16749d", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/cb8b69ca-a897-4b88-b056-c6831b16749d.png", "timestamp": "2024-02-15T20:47:39.122712+00:00"}}, {"id": "481f7f70-3aa2-4b05-93d6-c3b8e8057827", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.807258+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars on the road.", "snapshot": {"id": "cb8b69ca-a897-4b88-b056-c6831b16749d", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/cb8b69ca-a897-4b88-b056-c6831b16749d.png", "timestamp": "2024-02-15T20:47:39.122712+00:00"}}, {"id": "f298bc32-9b7e-459c-b326-e87f6fd418ac", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.484881+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "cb8b69ca-a897-4b88-b056-c6831b16749d", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/cb8b69ca-a897-4b88-b056-c6831b16749d.png", "timestamp": "2024-02-15T20:47:39.122712+00:00"}}, {"id": "b90eb97c-af8e-4301-a6e6-1d2ac3bff296", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.009645+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "cb8b69ca-a897-4b88-b056-c6831b16749d", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/cb8b69ca-a897-4b88-b056-c6831b16749d.png", "timestamp": "2024-02-15T20:47:39.122712+00:00"}}, {"id": "4876c0e9-e66d-4d28-952c-ab2dbc18ed27", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.760098+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a bus lane on the leftmost side. There are several parked cars on the side of the road and a few trees.", "snapshot": {"id": "cb8b69ca-a897-4b88-b056-c6831b16749d", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/cb8b69ca-a897-4b88-b056-c6831b16749d.png", "timestamp": "2024-02-15T20:47:39.122712+00:00"}}, {"id": "d47faa77-a9d6-475f-b1aa-d4c4834d1ce0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.569556+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cb8b69ca-a897-4b88-b056-c6831b16749d", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/cb8b69ca-a897-4b88-b056-c6831b16749d.png", "timestamp": "2024-02-15T20:47:39.122712+00:00"}}, {"id": "55dc8dc1-064a-4641-97e0-dee8ec04957d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.142142+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "8593f44e-3a7d-4cc0-ac79-f56227b58b0a", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8593f44e-3a7d-4cc0-ac79-f56227b58b0a.png", "timestamp": "2024-02-15T20:50:03.745359+00:00"}}, {"id": "969368da-3254-4a1b-8a69-dcfc7e0f8b68", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.941098+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "8593f44e-3a7d-4cc0-ac79-f56227b58b0a", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8593f44e-3a7d-4cc0-ac79-f56227b58b0a.png", "timestamp": "2024-02-15T20:50:03.745359+00:00"}}, {"id": "be4c87fa-9d6f-4904-aa85-0d9ec29a8555", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.602279+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions.", "snapshot": {"id": "8593f44e-3a7d-4cc0-ac79-f56227b58b0a", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8593f44e-3a7d-4cc0-ac79-f56227b58b0a.png", "timestamp": "2024-02-15T20:50:03.745359+00:00"}}, {"id": "99a4697f-58d5-4660-92db-98bcd78a535a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.356572+00:00", "label": "low", "label_explanation": "There is no standing water observed on the road surface.", "snapshot": {"id": "8593f44e-3a7d-4cc0-ac79-f56227b58b0a", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8593f44e-3a7d-4cc0-ac79-f56227b58b0a.png", "timestamp": "2024-02-15T20:50:03.745359+00:00"}}, {"id": "e37eb06c-94cd-4d66-b6e4-b86e71641b6e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.906992+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with a slight bend to the right. On either side of the road, there are buildings and various urban structures. Trees can be seen lining the street, and the sky appears overcast. There is a single pedestrian walking on the right side of the road.", "snapshot": {"id": "8593f44e-3a7d-4cc0-ac79-f56227b58b0a", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8593f44e-3a7d-4cc0-ac79-f56227b58b0a.png", "timestamp": "2024-02-15T20:50:03.745359+00:00"}}, {"id": "fa66e91a-899a-4996-a2f0-600146dfbdf3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.644686+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8593f44e-3a7d-4cc0-ac79-f56227b58b0a", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8593f44e-3a7d-4cc0-ac79-f56227b58b0a.png", "timestamp": "2024-02-15T20:50:03.745359+00:00"}}, {"id": "4c689fcc-1508-483e-8ef9-15a24ccef51f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.733864+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic can flow freely in both directions.", "snapshot": {"id": "8e6d5714-7510-4079-89ee-1c772c787b34", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8e6d5714-7510-4079-89ee-1c772c787b34.png", "timestamp": "2024-02-15T20:52:27.127228+00:00"}}, {"id": "4a627d32-7005-481f-aa7c-a605bb8a0ed8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.254984+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. While the road is wet, the water has drained effectively, leaving the road mostly dry.", "snapshot": {"id": "8e6d5714-7510-4079-89ee-1c772c787b34", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8e6d5714-7510-4079-89ee-1c772c787b34.png", "timestamp": "2024-02-15T20:52:27.127228+00:00"}}, {"id": "62413e4c-7c2d-4cff-9093-c2eaf5ce7b67", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.766508+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a street with buildings on both sides and a bus driving on the right side of the road. The road is wet from recent rain, but there are no significant puddles or waterlogging. There are a few parked cars on the side of the road, and the streetlights are on.", "snapshot": {"id": "8e6d5714-7510-4079-89ee-1c772c787b34", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8e6d5714-7510-4079-89ee-1c772c787b34.png", "timestamp": "2024-02-15T20:52:27.127228+00:00"}}, {"id": "46b55bcb-d1ee-4381-8673-bb8f13db9491", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.488641+00:00", "label": "easy", "label_explanation": "The bus is the only vehicle visible in the image, and it is\u884c\u9a76 smoothly without any apparent hindrance. The parked cars are also not blocking traffic flow.", "snapshot": {"id": "8e6d5714-7510-4079-89ee-1c772c787b34", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8e6d5714-7510-4079-89ee-1c772c787b34.png", "timestamp": "2024-02-15T20:52:27.127228+00:00"}}, {"id": "476c1174-665a-4e05-8d27-dcd76fb841e4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.540889+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8e6d5714-7510-4079-89ee-1c772c787b34", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8e6d5714-7510-4079-89ee-1c772c787b34.png", "timestamp": "2024-02-15T20:52:27.127228+00:00"}}, {"id": "ffe6dd67-a6b0-46cf-9047-fe6f9361c690", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.066423+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "8e6d5714-7510-4079-89ee-1c772c787b34", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/8e6d5714-7510-4079-89ee-1c772c787b34.png", "timestamp": "2024-02-15T20:52:27.127228+00:00"}}, {"id": "a414d054-962f-4c57-bcd7-9f12a1d91cb9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.317811+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "84d81583-5469-45ce-a122-7d7ebdb67df8", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/84d81583-5469-45ce-a122-7d7ebdb67df8.png", "timestamp": "2024-02-15T20:54:55.361176+00:00"}}, {"id": "ee38dcb1-d262-4194-99b1-07f61d2e33ba", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.843433+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "84d81583-5469-45ce-a122-7d7ebdb67df8", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/84d81583-5469-45ce-a122-7d7ebdb67df8.png", "timestamp": "2024-02-15T20:54:55.361176+00:00"}}, {"id": "b13e6228-dd75-44b3-8e83-a03bfa9383cf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.052381+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "84d81583-5469-45ce-a122-7d7ebdb67df8", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/84d81583-5469-45ce-a122-7d7ebdb67df8.png", "timestamp": "2024-02-15T20:54:55.361176+00:00"}}, {"id": "b0ecb236-f200-4807-b747-7cb111384c3e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.025675+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "84d81583-5469-45ce-a122-7d7ebdb67df8", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/84d81583-5469-45ce-a122-7d7ebdb67df8.png", "timestamp": "2024-02-15T20:54:55.361176+00:00"}}, {"id": "1fe50437-0159-4354-bc54-67672577d118", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.286405+00:00", "label": "null", "label_explanation": "The image captures an urban road scene. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars and a bus. There are also pedestrians on the sidewalk.", "snapshot": {"id": "84d81583-5469-45ce-a122-7d7ebdb67df8", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/84d81583-5469-45ce-a122-7d7ebdb67df8.png", "timestamp": "2024-02-15T20:54:55.361176+00:00"}}, {"id": "30bbbdc8-f75c-4bb7-9b79-6549d1e57e02", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.531342+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "84d81583-5469-45ce-a122-7d7ebdb67df8", "camera_id": "001493", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001493/84d81583-5469-45ce-a122-7d7ebdb67df8.png", "timestamp": "2024-02-15T20:54:55.361176+00:00"}}]}, {"id": "001623", "name": "RUA DA LAPA, 193B - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916222, "longitude": -43.177466, "objects": ["rain", "road_blockade", "traffic", "water_level", "image_corrupted", "image_description"], "identifications": [{"id": "17c1d0f6-2042-40db-bebc-b87bfe7e3aae", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.467789+00:00", "label": "low", "label_explanation": "While the road is wet, there are no significant puddles or standing water observed.", "snapshot": {"id": "727d4307-bb64-430f-9469-204fbf209e48", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/727d4307-bb64-430f-9469-204fbf209e48.png", "timestamp": "2024-02-15T20:30:23.255995+00:00"}}, {"id": "2ff83c11-d9c5-447d-a2d7-edf3ff42af61", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.989055+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "727d4307-bb64-430f-9469-204fbf209e48", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/727d4307-bb64-430f-9469-204fbf209e48.png", "timestamp": "2024-02-15T20:30:23.255995+00:00"}}, {"id": "cb2d83db-7f47-4111-87fe-8036d57141ce", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.686843+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a steady flow of vehicles, but no major congestion or delays.", "snapshot": {"id": "727d4307-bb64-430f-9469-204fbf209e48", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/727d4307-bb64-430f-9469-204fbf209e48.png", "timestamp": "2024-02-15T20:30:23.255995+00:00"}}, {"id": "ecf8c97e-33cc-4c79-8927-eb5ed030e00d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.154721+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "727d4307-bb64-430f-9469-204fbf209e48", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/727d4307-bb64-430f-9469-204fbf209e48.png", "timestamp": "2024-02-15T20:30:23.255995+00:00"}}, {"id": "15e02126-820a-43cb-a534-5e631da98bf9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.864619+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime, and the weather appears to be cloudy with a wet road surface.", "snapshot": {"id": "727d4307-bb64-430f-9469-204fbf209e48", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/727d4307-bb64-430f-9469-204fbf209e48.png", "timestamp": "2024-02-15T20:30:23.255995+00:00"}}, {"id": "ff98d7c8-4c6c-4671-be6f-3a3e3553ebf3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.407350+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "727d4307-bb64-430f-9469-204fbf209e48", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/727d4307-bb64-430f-9469-204fbf209e48.png", "timestamp": "2024-02-15T20:30:23.255995+00:00"}}, {"id": "d759183e-7c2a-4b5f-9126-a74c2b732d30", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.231731+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "096e1300-fa38-4fdc-b62b-4ff0c6e3076a", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/096e1300-fa38-4fdc-b62b-4ff0c6e3076a.png", "timestamp": "2024-02-15T20:33:02.634869+00:00"}}, {"id": "c24444cc-c989-416d-9e6c-d44e2b275960", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:19.509966+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear.", "snapshot": {"id": "096e1300-fa38-4fdc-b62b-4ff0c6e3076a", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/096e1300-fa38-4fdc-b62b-4ff0c6e3076a.png", "timestamp": "2024-02-15T20:33:02.634869+00:00"}}, {"id": "b49df511-a4d3-4f2b-a8e2-2751d83d1488", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.920594+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "096e1300-fa38-4fdc-b62b-4ff0c6e3076a", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/096e1300-fa38-4fdc-b62b-4ff0c6e3076a.png", "timestamp": "2024-02-15T20:33:02.634869+00:00"}}, {"id": "74e39b19-369b-4f71-a41a-36582e73bd11", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.886245+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "096e1300-fa38-4fdc-b62b-4ff0c6e3076a", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/096e1300-fa38-4fdc-b62b-4ff0c6e3076a.png", "timestamp": "2024-02-15T20:33:02.634869+00:00"}}, {"id": "110c9b04-909b-43b7-b92b-dff82ca12b99", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.116537+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "096e1300-fa38-4fdc-b62b-4ff0c6e3076a", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/096e1300-fa38-4fdc-b62b-4ff0c6e3076a.png", "timestamp": "2024-02-15T20:33:02.634869+00:00"}}, {"id": "7bc956b3-bd88-4b02-8326-da1822806bf5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.842045+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "096e1300-fa38-4fdc-b62b-4ff0c6e3076a", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/096e1300-fa38-4fdc-b62b-4ff0c6e3076a.png", "timestamp": "2024-02-15T20:33:02.634869+00:00"}}, {"id": "0b065d69-923a-4b26-8962-4da751eba31c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.342012+00:00", "label": "low", "label_explanation": "There is no visible water on the road surface.", "snapshot": {"id": "41c5fee3-d115-47ac-a4bb-f29ca6a013d4", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/41c5fee3-d115-47ac-a4bb-f29ca6a013d4.png", "timestamp": "2024-02-15T20:45:16.574055+00:00"}}, {"id": "5be5b0b8-f129-4152-b9a5-25aea3d7f2e9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:28.669579+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "41c5fee3-d115-47ac-a4bb-f29ca6a013d4", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/41c5fee3-d115-47ac-a4bb-f29ca6a013d4.png", "timestamp": "2024-02-15T20:45:16.574055+00:00"}}, {"id": "54e16ba2-e2a2-4603-bf5e-b885985020f2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:28.912798+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear, with no visible signs of rain or flooding. The road surface is dry and in good condition, with no visible potholes or cracks. There are several vehicles on the road, including cars, buses, and motorcycles. The vehicles are moving at a moderate speed and there are no visible signs of congestion or accidents. The sidewalks on either side of the road are in good condition and there are several pedestrians walking.", "snapshot": {"id": "41c5fee3-d115-47ac-a4bb-f29ca6a013d4", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/41c5fee3-d115-47ac-a4bb-f29ca6a013d4.png", "timestamp": "2024-02-15T20:45:16.574055+00:00"}}, {"id": "e63d8ca1-afa6-43fd-b6b0-c27b8be8f347", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.822819+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "41c5fee3-d115-47ac-a4bb-f29ca6a013d4", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/41c5fee3-d115-47ac-a4bb-f29ca6a013d4.png", "timestamp": "2024-02-15T20:45:16.574055+00:00"}}, {"id": "31fcad21-dcb0-40fd-923a-b8e78b35877f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.614049+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "41c5fee3-d115-47ac-a4bb-f29ca6a013d4", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/41c5fee3-d115-47ac-a4bb-f29ca6a013d4.png", "timestamp": "2024-02-15T20:45:16.574055+00:00"}}, {"id": "07e0c6e5-48a2-4284-8756-7fbe8f098567", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.133407+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "41c5fee3-d115-47ac-a4bb-f29ca6a013d4", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/41c5fee3-d115-47ac-a4bb-f29ca6a013d4.png", "timestamp": "2024-02-15T20:45:16.574055+00:00"}}, {"id": "b2b92d0b-0faa-4545-b107-591056f58bd1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.497232+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a detailed description.", "snapshot": {"id": "9ce0fd48-2822-4d3e-aff0-75a0a92b1f80", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/9ce0fd48-2822-4d3e-aff0-75a0a92b1f80.png", "timestamp": "2024-02-15T20:47:42.244809+00:00"}}, {"id": "6fad171b-43cd-460d-bdd4-4722b4931d3a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.278982+00:00", "label": "true", "label_explanation": "The image is corrupted and distorted, with large sections of the image missing or distorted. The image is unusable for analysis.", "snapshot": {"id": "9ce0fd48-2822-4d3e-aff0-75a0a92b1f80", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/9ce0fd48-2822-4d3e-aff0-75a0a92b1f80.png", "timestamp": "2024-02-15T20:47:42.244809+00:00"}}, {"id": "98654536-1d1c-4caa-859e-801e14b71b6c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.107505+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "be736c1b-782e-4653-85f7-8157db516a96", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/be736c1b-782e-4653-85f7-8157db516a96.png", "timestamp": "2024-02-15T20:35:25.787543+00:00"}}, {"id": "b1183dfc-dbb7-4b4f-aab0-c661cdfd4eda", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.319208+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several parked cars on the side of the road and a few people walking on the sidewalk.", "snapshot": {"id": "be736c1b-782e-4653-85f7-8157db516a96", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/be736c1b-782e-4653-85f7-8157db516a96.png", "timestamp": "2024-02-15T20:35:25.787543+00:00"}}, {"id": "ff93a63b-8688-4f7f-b3d9-da7914a6d75a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.858225+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "be736c1b-782e-4653-85f7-8157db516a96", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/be736c1b-782e-4653-85f7-8157db516a96.png", "timestamp": "2024-02-15T20:35:25.787543+00:00"}}, {"id": "1fe0b277-98ed-4fee-82bc-788ef3023482", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.376798+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "be736c1b-782e-4653-85f7-8157db516a96", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/be736c1b-782e-4653-85f7-8157db516a96.png", "timestamp": "2024-02-15T20:35:25.787543+00:00"}}, {"id": "29bf67ac-0f77-4d21-8119-8308bb3bf466", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.764132+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry and there are no puddles or other signs of water on the road.", "snapshot": {"id": "be736c1b-782e-4653-85f7-8157db516a96", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/be736c1b-782e-4653-85f7-8157db516a96.png", "timestamp": "2024-02-15T20:35:25.787543+00:00"}}, {"id": "9b1aeeb8-051d-4633-92b7-5ac642e4aaf4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.853111+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "be736c1b-782e-4653-85f7-8157db516a96", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/be736c1b-782e-4653-85f7-8157db516a96.png", "timestamp": "2024-02-15T20:35:25.787543+00:00"}}, {"id": "bd8ff813-e657-47e8-89d8-100281e6707a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.655852+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few parked cars on the side and a couple of people walking.", "snapshot": {"id": "cc878069-5713-4806-832d-cd80fc9f1a0c", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/cc878069-5713-4806-832d-cd80fc9f1a0c.png", "timestamp": "2024-02-15T20:37:56.347136+00:00"}}, {"id": "66d318c8-f30f-45ca-a01e-ef9e664f93c9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:13.442630+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "cc878069-5713-4806-832d-cd80fc9f1a0c", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/cc878069-5713-4806-832d-cd80fc9f1a0c.png", "timestamp": "2024-02-15T20:37:56.347136+00:00"}}, {"id": "744a26a3-3d3a-428e-9a96-b6c80b676b2d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.356922+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cc878069-5713-4806-832d-cd80fc9f1a0c", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/cc878069-5713-4806-832d-cd80fc9f1a0c.png", "timestamp": "2024-02-15T20:37:56.347136+00:00"}}, {"id": "68a9c358-1bc9-4b6d-9d93-07144929922f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.430619+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "cc878069-5713-4806-832d-cd80fc9f1a0c", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/cc878069-5713-4806-832d-cd80fc9f1a0c.png", "timestamp": "2024-02-15T20:37:56.347136+00:00"}}, {"id": "e6c063c8-e2b7-45eb-9020-36ff6d727e56", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.771581+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion or obstacles.", "snapshot": {"id": "cc878069-5713-4806-832d-cd80fc9f1a0c", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/cc878069-5713-4806-832d-cd80fc9f1a0c.png", "timestamp": "2024-02-15T20:37:56.347136+00:00"}}, {"id": "544fc22f-8c84-4054-8d20-6f2e3d8acd7a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:12.058443+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "cc878069-5713-4806-832d-cd80fc9f1a0c", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/cc878069-5713-4806-832d-cd80fc9f1a0c.png", "timestamp": "2024-02-15T20:37:56.347136+00:00"}}, {"id": "03587913-fcee-4ffb-87d6-a52fdab45d5a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.397239+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "9fb90073-bd61-42b5-82cf-5046437e8c36", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/9fb90073-bd61-42b5-82cf-5046437e8c36.png", "timestamp": "2024-02-15T20:40:27.367081+00:00"}}, {"id": "730f0f83-ac47-4f28-b219-35d811a4e6d0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.132566+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "9fb90073-bd61-42b5-82cf-5046437e8c36", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/9fb90073-bd61-42b5-82cf-5046437e8c36.png", "timestamp": "2024-02-15T20:40:27.367081+00:00"}}, {"id": "37cf6f77-7885-4f1f-b8b0-d7a1f89a1a86", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.199465+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform grey color and no visible details.", "snapshot": {"id": "42fe889f-0755-44d6-a024-b45fc22ab148", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/42fe889f-0755-44d6-a024-b45fc22ab148.png", "timestamp": "2024-02-15T20:42:52.153365+00:00"}}, {"id": "faa31c70-b254-4552-baa2-62002ec2e449", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.411158+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "42fe889f-0755-44d6-a024-b45fc22ab148", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/42fe889f-0755-44d6-a024-b45fc22ab148.png", "timestamp": "2024-02-15T20:42:52.153365+00:00"}}, {"id": "b4614706-8698-4cf3-a805-6dc163fbd2c8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:51:05.843527+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear, and traffic is able to flow freely.", "snapshot": {"id": "5d8b5d96-7e5f-475c-8078-1a5e5d95b000", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/5d8b5d96-7e5f-475c-8078-1a5e5d95b000.png", "timestamp": "2024-02-15T20:50:54.309635+00:00"}}, {"id": "2cd7dfa1-cb04-446b-9f03-a531d3bbe706", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:51:05.633904+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move without any significant delays.", "snapshot": {"id": "5d8b5d96-7e5f-475c-8078-1a5e5d95b000", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/5d8b5d96-7e5f-475c-8078-1a5e5d95b000.png", "timestamp": "2024-02-15T20:50:54.309635+00:00"}}, {"id": "be9eb47f-7239-40f9-8b54-e15859ab0723", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:51:05.426023+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of water accumulation, and the road surface is completely dry.", "snapshot": {"id": "5d8b5d96-7e5f-475c-8078-1a5e5d95b000", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/5d8b5d96-7e5f-475c-8078-1a5e5d95b000.png", "timestamp": "2024-02-15T20:50:54.309635+00:00"}}, {"id": "6eddc8a5-24e2-4d45-9fa0-aa757115c99c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:51:05.224236+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "5d8b5d96-7e5f-475c-8078-1a5e5d95b000", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/5d8b5d96-7e5f-475c-8078-1a5e5d95b000.png", "timestamp": "2024-02-15T20:50:54.309635+00:00"}}, {"id": "76cbdcad-3370-446e-a50b-9ccfcbe70367", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:51:04.942574+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. There are several buildings on the left and right sides of the road, with a bus driving in the middle. Trees can be seen on the right side of the road, and the weather appears to be clear.", "snapshot": {"id": "5d8b5d96-7e5f-475c-8078-1a5e5d95b000", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/5d8b5d96-7e5f-475c-8078-1a5e5d95b000.png", "timestamp": "2024-02-15T20:50:54.309635+00:00"}}, {"id": "507d982c-7eae-4905-acfb-58ce3cae4a07", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:51:04.733832+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5d8b5d96-7e5f-475c-8078-1a5e5d95b000", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/5d8b5d96-7e5f-475c-8078-1a5e5d95b000.png", "timestamp": "2024-02-15T20:50:54.309635+00:00"}}, {"id": "ce77b31c-f7b9-4387-9012-d0eb4f9bcbea", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.636632+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with uniform grey color and no discernible details. This indicates significant data loss or corruption, making it impossible to analyze road conditions.", "snapshot": {"id": "0daf9957-1f69-4bac-96ac-9997cf2fcb38", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/0daf9957-1f69-4bac-96ac-9997cf2fcb38.png", "timestamp": "2024-02-15T20:52:27.567640+00:00"}}, {"id": "a62bf127-0993-4de7-b05d-83a14b46d529", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:38.105620+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "0daf9957-1f69-4bac-96ac-9997cf2fcb38", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/0daf9957-1f69-4bac-96ac-9997cf2fcb38.png", "timestamp": "2024-02-15T20:52:27.567640+00:00"}}, {"id": "58f17085-69e3-4fb2-b2ba-47f1eb92c6c2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.540979+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "95368278-11c5-4228-83e3-d5b45d399638", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/95368278-11c5-4228-83e3-d5b45d399638.png", "timestamp": "2024-02-15T20:54:54.536362+00:00"}}, {"id": "767303da-8b4e-43a2-b4e8-e1c2ef33ed48", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.273918+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "95368278-11c5-4228-83e3-d5b45d399638", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/95368278-11c5-4228-83e3-d5b45d399638.png", "timestamp": "2024-02-15T20:54:54.536362+00:00"}}, {"id": "81fe5198-afee-4661-a6ab-e32d3adc61a5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.787047+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "95368278-11c5-4228-83e3-d5b45d399638", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/95368278-11c5-4228-83e3-d5b45d399638.png", "timestamp": "2024-02-15T20:54:54.536362+00:00"}}, {"id": "86ff58b4-33c7-42a6-8ac3-141e4684885a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.848162+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with residential buildings on either side and a clear sky.", "snapshot": {"id": "95368278-11c5-4228-83e3-d5b45d399638", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/95368278-11c5-4228-83e3-d5b45d399638.png", "timestamp": "2024-02-15T20:54:54.536362+00:00"}}, {"id": "f620da32-7a47-4135-adba-52da63ed85dd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.508384+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "95368278-11c5-4228-83e3-d5b45d399638", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/95368278-11c5-4228-83e3-d5b45d399638.png", "timestamp": "2024-02-15T20:54:54.536362+00:00"}}, {"id": "c00776aa-949e-40be-beac-a4dce5efdc64", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.067378+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "95368278-11c5-4228-83e3-d5b45d399638", "camera_id": "001623", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001623/95368278-11c5-4228-83e3-d5b45d399638.png", "timestamp": "2024-02-15T20:54:54.536362+00:00"}}]}, {"id": "001494", "name": "R. ARQUIAS CORDEIRO X R. DR. PADILHA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89550498, "longitude": -43.29105444, "objects": ["rain", "road_blockade", "image_corrupted", "image_description", "traffic", "water_level"], "identifications": []}, {"id": "001479", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. PRAIA DE BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950705, "longitude": -43.181605, "objects": ["water_level", "rain", "image_corrupted", "image_description", "road_blockade", "traffic"], "identifications": [{"id": "4ba5b3e3-294d-4624-a5a3-01b9bba12d9d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.529853+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "db32e1e2-e0be-4ba0-aef0-357fe32f38bf", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db32e1e2-e0be-4ba0-aef0-357fe32f38bf.png", "timestamp": "2024-02-15T20:30:27.004187+00:00"}}, {"id": "e8d70e32-4eff-4636-afe5-e75f7067e683", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.284781+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "db32e1e2-e0be-4ba0-aef0-357fe32f38bf", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db32e1e2-e0be-4ba0-aef0-357fe32f38bf.png", "timestamp": "2024-02-15T20:30:27.004187+00:00"}}, {"id": "7210b179-0a32-4815-a126-09a27f9b468a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.705737+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "db32e1e2-e0be-4ba0-aef0-357fe32f38bf", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db32e1e2-e0be-4ba0-aef0-357fe32f38bf.png", "timestamp": "2024-02-15T20:30:27.004187+00:00"}}, {"id": "26a5080b-b568-42b7-8b3a-45c03b76cc30", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.591453+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "db32e1e2-e0be-4ba0-aef0-357fe32f38bf", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db32e1e2-e0be-4ba0-aef0-357fe32f38bf.png", "timestamp": "2024-02-15T20:30:27.004187+00:00"}}, {"id": "12db770a-4ac6-4dab-9782-42e4932bb3ff", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.835304+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, including cars and a motorcycle. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "db32e1e2-e0be-4ba0-aef0-357fe32f38bf", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db32e1e2-e0be-4ba0-aef0-357fe32f38bf.png", "timestamp": "2024-02-15T20:30:27.004187+00:00"}}, {"id": "4e064d00-070d-4c97-831f-054edb0f20b2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.081704+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "db32e1e2-e0be-4ba0-aef0-357fe32f38bf", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db32e1e2-e0be-4ba0-aef0-357fe32f38bf.png", "timestamp": "2024-02-15T20:30:27.004187+00:00"}}, {"id": "37c48a2d-a32c-4f59-a5b4-215057361e18", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.308934+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "a391fa66-170f-42a4-ada7-960370a5ad12", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/a391fa66-170f-42a4-ada7-960370a5ad12.png", "timestamp": "2024-02-15T20:45:18.154019+00:00"}}, {"id": "7f941338-d74c-49cc-ad51-bc6e556083c1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.577795+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "a391fa66-170f-42a4-ada7-960370a5ad12", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/a391fa66-170f-42a4-ada7-960370a5ad12.png", "timestamp": "2024-02-15T20:45:18.154019+00:00"}}, {"id": "bc29eecd-a032-4a3d-beab-06f41483329f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.326878+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a391fa66-170f-42a4-ada7-960370a5ad12", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/a391fa66-170f-42a4-ada7-960370a5ad12.png", "timestamp": "2024-02-15T20:45:18.154019+00:00"}}, {"id": "ecd1db80-e36b-4c60-bce1-8c99b4cfc28e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.828838+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "a391fa66-170f-42a4-ada7-960370a5ad12", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/a391fa66-170f-42a4-ada7-960370a5ad12.png", "timestamp": "2024-02-15T20:45:18.154019+00:00"}}, {"id": "d0f4e1ca-fbb6-43bf-8a71-6b35c38b8129", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.522621+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "a391fa66-170f-42a4-ada7-960370a5ad12", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/a391fa66-170f-42a4-ada7-960370a5ad12.png", "timestamp": "2024-02-15T20:45:18.154019+00:00"}}, {"id": "70cf2234-a64f-4332-8073-4425d1c7e26a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.102083+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "a391fa66-170f-42a4-ada7-960370a5ad12", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/a391fa66-170f-42a4-ada7-960370a5ad12.png", "timestamp": "2024-02-15T20:45:18.154019+00:00"}}, {"id": "d7da212b-097f-42d7-b657-7162e67789a9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:55.565109+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, and traffic is flowing smoothly.", "snapshot": {"id": "8926f499-0ac4-4a69-904f-07ab75414f73", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8926f499-0ac4-4a69-904f-07ab75414f73.png", "timestamp": "2024-02-15T20:47:43.198934+00:00"}}, {"id": "282d43e2-5ea5-4e15-ba01-870be55a8336", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:54.611884+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with a few parked cars on the side. Trees and buildings are visible in the background. The weather appears to be cloudy, and the road surface is wet from recent rain.", "snapshot": {"id": "8926f499-0ac4-4a69-904f-07ab75414f73", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8926f499-0ac4-4a69-904f-07ab75414f73.png", "timestamp": "2024-02-15T20:47:43.198934+00:00"}}, {"id": "2ea4318a-1f7e-4b56-8d35-f301982135b2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:54.404649+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8926f499-0ac4-4a69-904f-07ab75414f73", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8926f499-0ac4-4a69-904f-07ab75414f73.png", "timestamp": "2024-02-15T20:47:43.198934+00:00"}}, {"id": "2203a614-4d38-40a8-9b23-17ebbd521cad", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:55.315134+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible obstructions or traffic congestion.", "snapshot": {"id": "8926f499-0ac4-4a69-904f-07ab75414f73", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8926f499-0ac4-4a69-904f-07ab75414f73.png", "timestamp": "2024-02-15T20:47:43.198934+00:00"}}, {"id": "2feafcfe-a9ef-44d2-8656-6018ae8161f8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:55.105280+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "8926f499-0ac4-4a69-904f-07ab75414f73", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8926f499-0ac4-4a69-904f-07ab75414f73.png", "timestamp": "2024-02-15T20:47:43.198934+00:00"}}, {"id": "988b26df-0c13-4db0-8ed6-f70de696b126", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:54.899618+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "8926f499-0ac4-4a69-904f-07ab75414f73", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8926f499-0ac4-4a69-904f-07ab75414f73.png", "timestamp": "2024-02-15T20:47:43.198934+00:00"}}, {"id": "dc6e42dc-7071-4cb6-9d96-384cc41c82d2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.421140+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "2cfef7b9-a8a2-4d44-94fc-bf611eac452d", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/2cfef7b9-a8a2-4d44-94fc-bf611eac452d.png", "timestamp": "2024-02-15T20:33:02.123106+00:00"}}, {"id": "81d2f8cb-eefa-4406-8ea2-9a0ac2fbc61f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:17.762102+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "2cfef7b9-a8a2-4d44-94fc-bf611eac452d", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/2cfef7b9-a8a2-4d44-94fc-bf611eac452d.png", "timestamp": "2024-02-15T20:33:02.123106+00:00"}}, {"id": "54a18f85-8598-438b-ae3f-0f18cd50b4d5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.995596+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2cfef7b9-a8a2-4d44-94fc-bf611eac452d", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/2cfef7b9-a8a2-4d44-94fc-bf611eac452d.png", "timestamp": "2024-02-15T20:33:02.123106+00:00"}}, {"id": "937840d1-707c-4aa7-8246-753fd6bd62ce", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.499868+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a cyclist riding on the street. There are parked cars on the side of the road, and a person is walking on the sidewalk.", "snapshot": {"id": "2cfef7b9-a8a2-4d44-94fc-bf611eac452d", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/2cfef7b9-a8a2-4d44-94fc-bf611eac452d.png", "timestamp": "2024-02-15T20:33:02.123106+00:00"}}, {"id": "aa5ff76d-e75d-4ff7-a3c0-f54d3a7fc5d1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.882331+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "2cfef7b9-a8a2-4d44-94fc-bf611eac452d", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/2cfef7b9-a8a2-4d44-94fc-bf611eac452d.png", "timestamp": "2024-02-15T20:33:02.123106+00:00"}}, {"id": "85d3e015-5015-43fb-9926-9baae52c5376", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:17.262173+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "2cfef7b9-a8a2-4d44-94fc-bf611eac452d", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/2cfef7b9-a8a2-4d44-94fc-bf611eac452d.png", "timestamp": "2024-02-15T20:33:02.123106+00:00"}}, {"id": "501858d1-5190-46af-87ff-8d96c7665b1e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.894685+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also small puddles of water on the road, but they are shallow and do not pose a significant obstacle to traffic.", "snapshot": {"id": "c5e9c484-c8cd-4222-b424-8c4601513dca", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/c5e9c484-c8cd-4222-b424-8c4601513dca.png", "timestamp": "2024-02-15T20:35:29.087831+00:00"}}, {"id": "08d6e9f6-25ea-4ce0-82fd-f065fd303352", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.358489+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street and surrounding buildings. It is daytime and the weather appears to be cloudy or overcast, as direct sunlight is not visible.", "snapshot": {"id": "c5e9c484-c8cd-4222-b424-8c4601513dca", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/c5e9c484-c8cd-4222-b424-8c4601513dca.png", "timestamp": "2024-02-15T20:35:29.087831+00:00"}}, {"id": "9c7d6884-bf57-4796-86a3-ae7ab8cb8b2f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.117362+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free and unimpeded traffic flow.", "snapshot": {"id": "c5e9c484-c8cd-4222-b424-8c4601513dca", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/c5e9c484-c8cd-4222-b424-8c4601513dca.png", "timestamp": "2024-02-15T20:35:29.087831+00:00"}}, {"id": "440bf800-a7f5-4b91-a073-929ae101146f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:44.742175+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few vehicles visible on the road. The vehicles are able to navigate the road without any difficulty, as the water puddles are not a significant obstacle.", "snapshot": {"id": "c5e9c484-c8cd-4222-b424-8c4601513dca", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/c5e9c484-c8cd-4222-b424-8c4601513dca.png", "timestamp": "2024-02-15T20:35:29.087831+00:00"}}, {"id": "dd948f25-59f9-4a72-aef5-83b7a1878634", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:44.342338+00:00", "label": "low", "label_explanation": "The water level on the road is low, as the puddles are shallow and do not cover a significant portion of the road surface. The majority of the road is dry and easily navigable.", "snapshot": {"id": "c5e9c484-c8cd-4222-b424-8c4601513dca", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/c5e9c484-c8cd-4222-b424-8c4601513dca.png", "timestamp": "2024-02-15T20:35:29.087831+00:00"}}, {"id": "b577f788-5fbe-4314-abf3-e28127f53e6a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.113665+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c5e9c484-c8cd-4222-b424-8c4601513dca", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/c5e9c484-c8cd-4222-b424-8c4601513dca.png", "timestamp": "2024-02-15T20:35:29.087831+00:00"}}, {"id": "48cc0838-7c40-44ab-8ec7-bdd66a462e50", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.045779+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, and the gutters are not overflowing.", "snapshot": {"id": "e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1.png", "timestamp": "2024-02-15T20:38:00.950205+00:00"}}, {"id": "1efae08e-953e-41e8-878e-dfa93d9af5b1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.797189+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1.png", "timestamp": "2024-02-15T20:38:00.950205+00:00"}}, {"id": "3acfc7de-21bc-4aeb-80f1-f4c97e69ac24", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:16.592280+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1.png", "timestamp": "2024-02-15T20:38:00.950205+00:00"}}, {"id": "5f9aa852-a120-48eb-804b-2143757a967f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.270044+00:00", "label": "easy", "label_explanation": "There is no traffic on the road, likely due to the rain.", "snapshot": {"id": "e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1.png", "timestamp": "2024-02-15T20:38:00.950205+00:00"}}, {"id": "2ff5af9e-cb54-4e4f-9e56-99bb3438b070", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.501111+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and the right. Trees are present on both sides of the road, and the weather appears to be overcast. There are several parked cars on the side of the road, and the road surface is wet from recent rain.", "snapshot": {"id": "e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1.png", "timestamp": "2024-02-15T20:38:00.950205+00:00"}}, {"id": "18a0acb9-d257-433a-b2a0-21e84c72b074", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.549311+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and it is clear for\u901a\u884c.", "snapshot": {"id": "e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/e9ec1fb1-235e-4ab1-b2b0-cd8a580902e1.png", "timestamp": "2024-02-15T20:38:00.950205+00:00"}}, {"id": "5c551ff4-192d-4180-a851-7397b3e72b0f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.330039+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "242f7b4a-c9da-4023-82ed-89ab7d3ee6e9", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/242f7b4a-c9da-4023-82ed-89ab7d3ee6e9.png", "timestamp": "2024-02-15T20:40:30.859923+00:00"}}, {"id": "cddf89e7-ba9f-42d1-89e8-97d48c69fa6a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.100679+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "242f7b4a-c9da-4023-82ed-89ab7d3ee6e9", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/242f7b4a-c9da-4023-82ed-89ab7d3ee6e9.png", "timestamp": "2024-02-15T20:40:30.859923+00:00"}}, {"id": "39298f04-ea72-4d95-8505-973a0c2a667c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.490918+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "242f7b4a-c9da-4023-82ed-89ab7d3ee6e9", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/242f7b4a-c9da-4023-82ed-89ab7d3ee6e9.png", "timestamp": "2024-02-15T20:40:30.859923+00:00"}}, {"id": "f6194b09-a8a1-468e-9790-b9b6e00f9438", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.895205+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "242f7b4a-c9da-4023-82ed-89ab7d3ee6e9", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/242f7b4a-c9da-4023-82ed-89ab7d3ee6e9.png", "timestamp": "2024-02-15T20:40:30.859923+00:00"}}, {"id": "613ffb93-b08e-4424-9e7d-bb8adf7b6e97", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.689944+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "242f7b4a-c9da-4023-82ed-89ab7d3ee6e9", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/242f7b4a-c9da-4023-82ed-89ab7d3ee6e9.png", "timestamp": "2024-02-15T20:40:30.859923+00:00"}}, {"id": "1388d490-485d-4814-a2df-d83815d3e979", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.907264+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "242f7b4a-c9da-4023-82ed-89ab7d3ee6e9", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/242f7b4a-c9da-4023-82ed-89ab7d3ee6e9.png", "timestamp": "2024-02-15T20:40:30.859923+00:00"}}, {"id": "6ae10ee7-30e5-4df5-8da3-d0c7f5d9632c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.960461+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "52e2b52a-1ec2-4ffc-9361-880406584566", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/52e2b52a-1ec2-4ffc-9361-880406584566.png", "timestamp": "2024-02-15T20:42:55.443500+00:00"}}, {"id": "8e7b8375-6511-4c49-82fb-40df58082ee2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.781359+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "52e2b52a-1ec2-4ffc-9361-880406584566", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/52e2b52a-1ec2-4ffc-9361-880406584566.png", "timestamp": "2024-02-15T20:42:55.443500+00:00"}}, {"id": "56fb49b1-3c61-4765-a815-33ce3fe49773", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.492324+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, a bus, and a motorcycle. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "52e2b52a-1ec2-4ffc-9361-880406584566", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/52e2b52a-1ec2-4ffc-9361-880406584566.png", "timestamp": "2024-02-15T20:42:55.443500+00:00"}}, {"id": "0d0da15e-47d2-4fe1-a04b-70687465b3d5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.439833+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "52e2b52a-1ec2-4ffc-9361-880406584566", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/52e2b52a-1ec2-4ffc-9361-880406584566.png", "timestamp": "2024-02-15T20:42:55.443500+00:00"}}, {"id": "0c252d92-b528-47b9-aeef-75ce8fa3d388", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.239404+00:00", "label": "easy", "label_explanation": "The traffic is moderate. Vehicles are moving at a steady pace and there are no major delays.", "snapshot": {"id": "52e2b52a-1ec2-4ffc-9361-880406584566", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/52e2b52a-1ec2-4ffc-9361-880406584566.png", "timestamp": "2024-02-15T20:42:55.443500+00:00"}}, {"id": "e7ce6a02-161f-4305-b9c1-03e1e5dc6da0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.248426+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "52e2b52a-1ec2-4ffc-9361-880406584566", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/52e2b52a-1ec2-4ffc-9361-880406584566.png", "timestamp": "2024-02-15T20:42:55.443500+00:00"}}, {"id": "dddfb885-9410-4350-bc3f-43e61d9321fb", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.830763+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "db22b088-66ff-4b67-b04c-8ef02e44d5be", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db22b088-66ff-4b67-b04c-8ef02e44d5be.png", "timestamp": "2024-02-15T20:52:29.826392+00:00"}}, {"id": "f5536a5a-a25d-428c-afc8-8f4f32404a85", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.607836+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major obstructions or delays.", "snapshot": {"id": "db22b088-66ff-4b67-b04c-8ef02e44d5be", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db22b088-66ff-4b67-b04c-8ef02e44d5be.png", "timestamp": "2024-02-15T20:52:29.826392+00:00"}}, {"id": "e0a1cdbb-1a6b-4b35-8bd0-14657670259c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.397853+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "db22b088-66ff-4b67-b04c-8ef02e44d5be", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db22b088-66ff-4b67-b04c-8ef02e44d5be.png", "timestamp": "2024-02-15T20:52:29.826392+00:00"}}, {"id": "3454a3a2-7c74-431f-ac75-e68e51e0491b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.201409+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "db22b088-66ff-4b67-b04c-8ef02e44d5be", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db22b088-66ff-4b67-b04c-8ef02e44d5be.png", "timestamp": "2024-02-15T20:52:29.826392+00:00"}}, {"id": "67a28707-bdc6-431d-8066-0a2965fa2fa7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.918116+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "db22b088-66ff-4b67-b04c-8ef02e44d5be", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db22b088-66ff-4b67-b04c-8ef02e44d5be.png", "timestamp": "2024-02-15T20:52:29.826392+00:00"}}, {"id": "c83f1005-fec8-4812-9991-a066e854d593", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.725630+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "db22b088-66ff-4b67-b04c-8ef02e44d5be", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/db22b088-66ff-4b67-b04c-8ef02e44d5be.png", "timestamp": "2024-02-15T20:52:29.826392+00:00"}}, {"id": "aa8bf299-b1b2-455b-ba37-991296ee8947", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.593737+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, and traffic is flowing smoothly.", "snapshot": {"id": "d6295a73-36c5-4681-bf8e-bdb9c54b70cb", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/d6295a73-36c5-4681-bf8e-bdb9c54b70cb.png", "timestamp": "2024-02-15T20:50:06.553003+00:00"}}, {"id": "b14c7c1d-f9b0-4e85-93f5-5de82233501e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.109237+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars and pedestrians visible in the image. The traffic lights are functional, and the vehicles are following the rules of the road.", "snapshot": {"id": "d6295a73-36c5-4681-bf8e-bdb9c54b70cb", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/d6295a73-36c5-4681-bf8e-bdb9c54b70cb.png", "timestamp": "2024-02-15T20:50:06.553003+00:00"}}, {"id": "d7ad186e-e242-49e7-babf-5778082f3ea8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.230566+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d6295a73-36c5-4681-bf8e-bdb9c54b70cb", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/d6295a73-36c5-4681-bf8e-bdb9c54b70cb.png", "timestamp": "2024-02-15T20:50:06.553003+00:00"}}, {"id": "af2c1e2f-3b52-4bb4-b5bb-50aa67c945f3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.888416+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "d6295a73-36c5-4681-bf8e-bdb9c54b70cb", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/d6295a73-36c5-4681-bf8e-bdb9c54b70cb.png", "timestamp": "2024-02-15T20:50:06.553003+00:00"}}, {"id": "2d260739-0f7c-4c00-b520-8520ab52c287", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.658808+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d6295a73-36c5-4681-bf8e-bdb9c54b70cb", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/d6295a73-36c5-4681-bf8e-bdb9c54b70cb.png", "timestamp": "2024-02-15T20:50:06.553003+00:00"}}, {"id": "5565488a-2a02-4c4b-be4d-791e6254225c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.395336+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with a clear view of the road surface, surrounding buildings, and traffic lights. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "d6295a73-36c5-4681-bf8e-bdb9c54b70cb", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/d6295a73-36c5-4681-bf8e-bdb9c54b70cb.png", "timestamp": "2024-02-15T20:50:06.553003+00:00"}}, {"id": "18d2c4d5-4e9d-4a5e-bda3-380648e84937", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.212055+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with a clear view of the road surface and surrounding buildings. It is daytime and the weather appears to be cloudy or overcast.", "snapshot": {"id": "8c24b03a-10ef-4a7e-8da1-8fd75630b141", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8c24b03a-10ef-4a7e-8da1-8fd75630b141.png", "timestamp": "2024-02-15T20:54:58.394806+00:00"}}, {"id": "bc71ea9f-fd8a-4ef1-a480-f47f46e3db01", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.117893+00:00", "label": "easy", "label_explanation": "The traffic is moving smoothly, with no major congestion or delays. Vehicles are able to navigate the road without any difficulty.", "snapshot": {"id": "8c24b03a-10ef-4a7e-8da1-8fd75630b141", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8c24b03a-10ef-4a7e-8da1-8fd75630b141.png", "timestamp": "2024-02-15T20:54:58.394806+00:00"}}, {"id": "c0511531-3369-4430-aa8f-370671ced98f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.884788+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions. The water appears to be shallow and is not covering any significant portion of the road.", "snapshot": {"id": "8c24b03a-10ef-4a7e-8da1-8fd75630b141", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8c24b03a-10ef-4a7e-8da1-8fd75630b141.png", "timestamp": "2024-02-15T20:54:58.394806+00:00"}}, {"id": "3cbb780e-9449-45b5-97ed-9eef81ca129d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.430556+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road from other sources.", "snapshot": {"id": "8c24b03a-10ef-4a7e-8da1-8fd75630b141", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8c24b03a-10ef-4a7e-8da1-8fd75630b141.png", "timestamp": "2024-02-15T20:54:58.394806+00:00"}}, {"id": "55f5babc-5ba7-4e00-96a9-d74ab2a5f093", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.916869+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8c24b03a-10ef-4a7e-8da1-8fd75630b141", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8c24b03a-10ef-4a7e-8da1-8fd75630b141.png", "timestamp": "2024-02-15T20:54:58.394806+00:00"}}, {"id": "3efdf18b-ca54-4a89-995e-4e5639588ff1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.309191+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "8c24b03a-10ef-4a7e-8da1-8fd75630b141", "camera_id": "001479", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001479/8c24b03a-10ef-4a7e-8da1-8fd75630b141.png", "timestamp": "2024-02-15T20:54:58.394806+00:00"}}]}, {"id": "001477", "name": "R. JARDIM BOT\u00c2NICO X R. PACHECO LE\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.174/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9671, "longitude": -43.219492, "objects": ["rain", "water_level", "road_blockade", "image_corrupted", "image_description", "traffic"], "identifications": [{"id": "9815f76b-8211-4b93-bc9a-40ccdc37112c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.947804+00:00", "label": "free", "label_explanation": "It is not possible to determine if there are any road blockades due to the poor image quality.", "snapshot": {"id": "2881f04f-56f3-4d8e-b9b3-79829348b4ab", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2881f04f-56f3-4d8e-b9b3-79829348b4ab.png", "timestamp": "2024-02-15T20:30:26.122648+00:00"}}, {"id": "e067a3e3-22b1-447f-8839-71925d6b56b1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.667128+00:00", "label": "easy", "label_explanation": "It is not possible to determine the traffic conditions due to the poor image quality.", "snapshot": {"id": "2881f04f-56f3-4d8e-b9b3-79829348b4ab", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2881f04f-56f3-4d8e-b9b3-79829348b4ab.png", "timestamp": "2024-02-15T20:30:26.122648+00:00"}}, {"id": "38df0262-69e1-44de-a78b-bb24368963c5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.114984+00:00", "label": "true", "label_explanation": "It is not possible to determine if it is raining or not due to the poor image quality.", "snapshot": {"id": "2881f04f-56f3-4d8e-b9b3-79829348b4ab", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2881f04f-56f3-4d8e-b9b3-79829348b4ab.png", "timestamp": "2024-02-15T20:30:26.122648+00:00"}}, {"id": "4eaac834-6246-4c06-88a8-e64fb07bfb53", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.792055+00:00", "label": "null", "label_explanation": "The image is blurry and unclear, making it difficult to discern details. However, it appears to be a daytime scene of an urban road with cars parked on either side.", "snapshot": {"id": "2881f04f-56f3-4d8e-b9b3-79829348b4ab", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2881f04f-56f3-4d8e-b9b3-79829348b4ab.png", "timestamp": "2024-02-15T20:30:26.122648+00:00"}}, {"id": "5fb89a69-c3d4-426f-9e8f-f400fd47dbc6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:45.453923+00:00", "label": "true", "label_explanation": "The image is blurry and unclear, making it difficult to discern details.", "snapshot": {"id": "2881f04f-56f3-4d8e-b9b3-79829348b4ab", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2881f04f-56f3-4d8e-b9b3-79829348b4ab.png", "timestamp": "2024-02-15T20:30:26.122648+00:00"}}, {"id": "d30fb375-b6eb-4a62-9e06-58cc73a2e25e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:46.337048+00:00", "label": "low", "label_explanation": "It is not possible to determine the water level due to the poor image quality.", "snapshot": {"id": "2881f04f-56f3-4d8e-b9b3-79829348b4ab", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2881f04f-56f3-4d8e-b9b3-79829348b4ab.png", "timestamp": "2024-02-15T20:30:26.122648+00:00"}}, {"id": "0de72c02-b782-4884-8a53-e215361f63da", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.038039+00:00", "label": "true", "label_explanation": "The image is blurry and unclear, making it difficult to discern specific details. However, there are no obvious signs of data loss or corruption, such as uniform grey or green color distortions.", "snapshot": {"id": "917f410a-66bd-4031-946f-aceef6fe2313", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/917f410a-66bd-4031-946f-aceef6fe2313.png", "timestamp": "2024-02-15T20:33:02.621371+00:00"}}, {"id": "4247cb66-bf28-471e-9d49-f347f92a9b76", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.594888+00:00", "label": "free", "label_explanation": "The image does not provide sufficient clarity to determine if there are any road blockades or obstructions. The blurred nature of the image limits the ability to identify specific obstacles.", "snapshot": {"id": "917f410a-66bd-4031-946f-aceef6fe2313", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/917f410a-66bd-4031-946f-aceef6fe2313.png", "timestamp": "2024-02-15T20:33:02.621371+00:00"}}, {"id": "abeaea5e-ba73-401f-b42f-09ec00857484", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.634244+00:00", "label": "low", "label_explanation": "Due to the blurriness of the image, it is challenging to accurately determine the water level on the road. However, based on the limited information available, the water level appears to be low, as there are no signs of significant flooding or large puddles.", "snapshot": {"id": "917f410a-66bd-4031-946f-aceef6fe2313", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/917f410a-66bd-4031-946f-aceef6fe2313.png", "timestamp": "2024-02-15T20:33:02.621371+00:00"}}, {"id": "93c90d4f-be16-4641-aec1-247be76550d6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:22.041963+00:00", "label": "difficult", "label_explanation": "The blurred image makes it difficult to assess the traffic situation. While there are outlines of vehicles, it is unclear whether traffic is flowing smoothly or experiencing any disruptions due to the rain or other factors.", "snapshot": {"id": "917f410a-66bd-4031-946f-aceef6fe2313", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/917f410a-66bd-4031-946f-aceef6fe2313.png", "timestamp": "2024-02-15T20:33:02.621371+00:00"}}, {"id": "f6f9dd9f-21f8-4419-9ff4-76d7e7c065a5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.838615+00:00", "label": "null", "label_explanation": "The image is of an urban road with blurred outlines of vehicles and foliage on either side. The road appears wet, but the overall scene is unclear due to the blurriness.", "snapshot": {"id": "917f410a-66bd-4031-946f-aceef6fe2313", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/917f410a-66bd-4031-946f-aceef6fe2313.png", "timestamp": "2024-02-15T20:33:02.621371+00:00"}}, {"id": "aa587a7e-a166-4146-8667-e506fbe2b869", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:21.148432+00:00", "label": "true", "label_explanation": "Although the image is blurry, there are indications of rain or wetness on the road surface. The blurred reflections on the road suggest the presence of water.", "snapshot": {"id": "917f410a-66bd-4031-946f-aceef6fe2313", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/917f410a-66bd-4031-946f-aceef6fe2313.png", "timestamp": "2024-02-15T20:33:02.621371+00:00"}}, {"id": "7193ca21-ec7b-4bbf-8cc1-bf2456ec10b9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:44.058886+00:00", "label": "moderate", "label_explanation": "The bus is moving slowly due to the wet road conditions.", "snapshot": {"id": "fc5c968e-259b-40ce-8d5a-20195ec82462", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/fc5c968e-259b-40ce-8d5a-20195ec82462.png", "timestamp": "2024-02-15T20:35:29.107488+00:00"}}, {"id": "aa5bbe9d-647a-4cde-8523-581e2cbdd7d5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.874752+00:00", "label": "null", "label_explanation": "A bus is driving down a wet road, surrounded by trees.", "snapshot": {"id": "fc5c968e-259b-40ce-8d5a-20195ec82462", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/fc5c968e-259b-40ce-8d5a-20195ec82462.png", "timestamp": "2024-02-15T20:35:29.107488+00:00"}}, {"id": "c4b8529a-1447-4d81-9c53-4840f940f13c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.767190+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles on the road.", "snapshot": {"id": "fc5c968e-259b-40ce-8d5a-20195ec82462", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/fc5c968e-259b-40ce-8d5a-20195ec82462.png", "timestamp": "2024-02-15T20:35:29.107488+00:00"}}, {"id": "6c2330bc-5905-4b75-83d4-fe142afd4030", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:44.722338+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "fc5c968e-259b-40ce-8d5a-20195ec82462", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/fc5c968e-259b-40ce-8d5a-20195ec82462.png", "timestamp": "2024-02-15T20:35:29.107488+00:00"}}, {"id": "abdb37ec-76d4-4f6c-8187-a42e6140db5d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.272642+00:00", "label": "true", "label_explanation": "The road is wet and there is water on the windshield of the bus.", "snapshot": {"id": "fc5c968e-259b-40ce-8d5a-20195ec82462", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/fc5c968e-259b-40ce-8d5a-20195ec82462.png", "timestamp": "2024-02-15T20:35:29.107488+00:00"}}, {"id": "aa0f4346-5005-473a-af10-baa546a51e65", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.398081+00:00", "label": "true", "label_explanation": "The image is blurry and unclear, making it difficult to discern details.", "snapshot": {"id": "fc5c968e-259b-40ce-8d5a-20195ec82462", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/fc5c968e-259b-40ce-8d5a-20195ec82462.png", "timestamp": "2024-02-15T20:35:29.107488+00:00"}}, {"id": "bd5ff620-0cb4-40ec-b7bc-e481c4d51a71", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.003134+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic can flow freely without any hindrance.", "snapshot": {"id": "6b114d46-b519-4d71-843a-92b49cd927da", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/6b114d46-b519-4d71-843a-92b49cd927da.png", "timestamp": "2024-02-15T20:38:00.883632+00:00"}}, {"id": "7fca3719-7bf0-4802-9169-401613af5421", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.505256+00:00", "label": "low", "label_explanation": "There is no significant water accumulation on the road. While it is wet from rain, the water level is low and does not pose any hazards or challenges to traffic.", "snapshot": {"id": "6b114d46-b519-4d71-843a-92b49cd927da", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/6b114d46-b519-4d71-843a-92b49cd927da.png", "timestamp": "2024-02-15T20:38:00.883632+00:00"}}, {"id": "9132fd4f-3dc1-4cc6-8e92-58539cd3399e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:16.569848+00:00", "label": "true", "label_explanation": "The road is wet from rain, but there is no significant water accumulation.", "snapshot": {"id": "6b114d46-b519-4d71-843a-92b49cd927da", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/6b114d46-b519-4d71-843a-92b49cd927da.png", "timestamp": "2024-02-15T20:38:00.883632+00:00"}}, {"id": "df1350d9-28c1-4482-b98c-fc206095c1f1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:16.164880+00:00", "label": "null", "label_explanation": "The image is of an urban road with several parked cars on the side. The road is wet from rain, but there is no significant water accumulation.", "snapshot": {"id": "6b114d46-b519-4d71-843a-92b49cd927da", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/6b114d46-b519-4d71-843a-92b49cd927da.png", "timestamp": "2024-02-15T20:38:00.883632+00:00"}}, {"id": "82e1d232-cbaf-4e8d-9156-b5eb50359a15", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.801308+00:00", "label": "easy", "label_explanation": "The parked cars on the side of the road indicate that traffic is likely not heavy at the moment. However, the wet road conditions may make driving more hazardous, requiring drivers to exercise caution.", "snapshot": {"id": "6b114d46-b519-4d71-843a-92b49cd927da", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/6b114d46-b519-4d71-843a-92b49cd927da.png", "timestamp": "2024-02-15T20:38:00.883632+00:00"}}, {"id": "170afaf7-7eb5-438c-b3b8-9794356e1944", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.862846+00:00", "label": "true", "label_explanation": "The image is blurry and unclear, making it difficult to discern specific details. However, there are no obvious signs of data loss or corruption, such as uniform grey or green color distortions.", "snapshot": {"id": "6b114d46-b519-4d71-843a-92b49cd927da", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/6b114d46-b519-4d71-843a-92b49cd927da.png", "timestamp": "2024-02-15T20:38:00.883632+00:00"}}, {"id": "51bfc6a9-a552-4ede-bc8e-f805f157a677", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.187715+00:00", "label": "low", "label_explanation": "It is not possible to tell what the water level is in the image due to the blurriness of the image.", "snapshot": {"id": "61512a16-b900-4c95-8232-b4c4ce9991f4", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/61512a16-b900-4c95-8232-b4c4ce9991f4.png", "timestamp": "2024-02-15T20:40:30.573305+00:00"}}, {"id": "832c82e9-b31d-4ec7-b514-45e97bbf7a35", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.468157+00:00", "label": "easy", "label_explanation": "It is not possible to tell what the traffic is like in the image due to the blurriness of the image.", "snapshot": {"id": "61512a16-b900-4c95-8232-b4c4ce9991f4", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/61512a16-b900-4c95-8232-b4c4ce9991f4.png", "timestamp": "2024-02-15T20:40:30.573305+00:00"}}, {"id": "61d228e6-fb46-4d3e-8a5a-8069d6a0ad59", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.586332+00:00", "label": "free", "label_explanation": "It is not possible to tell if there are any road blockades in the image due to the blurriness of the image.", "snapshot": {"id": "61512a16-b900-4c95-8232-b4c4ce9991f4", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/61512a16-b900-4c95-8232-b4c4ce9991f4.png", "timestamp": "2024-02-15T20:40:30.573305+00:00"}}, {"id": "b27e3bb4-a041-4da4-9bd4-283080ca9cfa", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.964664+00:00", "label": "true", "label_explanation": "It is not possible to tell if it is raining in the image due to the blurriness of the image.", "snapshot": {"id": "61512a16-b900-4c95-8232-b4c4ce9991f4", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/61512a16-b900-4c95-8232-b4c4ce9991f4.png", "timestamp": "2024-02-15T20:40:30.573305+00:00"}}, {"id": "63d64752-d6de-4b7d-abd7-1478980d11d5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.774336+00:00", "label": "null", "label_explanation": "The image is blurry and unclear, making it difficult to see the details of the road. However, it appears to be a daytime image of an urban road with cars on it.", "snapshot": {"id": "61512a16-b900-4c95-8232-b4c4ce9991f4", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/61512a16-b900-4c95-8232-b4c4ce9991f4.png", "timestamp": "2024-02-15T20:40:30.573305+00:00"}}, {"id": "1f1a050d-edc9-471e-bcee-f1365e52ce59", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.524283+00:00", "label": "true", "label_explanation": "The image is blurry and unclear, making it difficult to see the details of the road.", "snapshot": {"id": "61512a16-b900-4c95-8232-b4c4ce9991f4", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/61512a16-b900-4c95-8232-b4c4ce9991f4.png", "timestamp": "2024-02-15T20:40:30.573305+00:00"}}, {"id": "4b75280f-2c7e-44a5-b071-3a1ffb18cac4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.831012+00:00", "label": "low", "label_explanation": "It is not possible to tell what the water level is due to the blurriness of the image.", "snapshot": {"id": "8cb111e7-6af5-4cb4-8120-1ff4524431c9", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/8cb111e7-6af5-4cb4-8120-1ff4524431c9.png", "timestamp": "2024-02-15T20:42:54.568966+00:00"}}, {"id": "8d4087c1-62bf-4206-97a6-d378ac833e0e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.081508+00:00", "label": "true", "label_explanation": "The image is blurry and unclear, making it difficult to discern details.", "snapshot": {"id": "8cb111e7-6af5-4cb4-8120-1ff4524431c9", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/8cb111e7-6af5-4cb4-8120-1ff4524431c9.png", "timestamp": "2024-02-15T20:42:54.568966+00:00"}}, {"id": "2560c1b1-d168-4b76-a1ba-5b5ef2863d37", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.133370+00:00", "label": "easy", "label_explanation": "It is not possible to tell what the traffic conditions are due to the blurriness of the image.", "snapshot": {"id": "8cb111e7-6af5-4cb4-8120-1ff4524431c9", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/8cb111e7-6af5-4cb4-8120-1ff4524431c9.png", "timestamp": "2024-02-15T20:42:54.568966+00:00"}}, {"id": "e384d411-3309-4726-bb0b-e6bc34265b6f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.338600+00:00", "label": "null", "label_explanation": "The image is of a road with a slight bend to the left. It is daytime and there are trees on either side of the road. There are cars on the road, but it is not possible to make out any details due to the blurriness.", "snapshot": {"id": "8cb111e7-6af5-4cb4-8120-1ff4524431c9", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/8cb111e7-6af5-4cb4-8120-1ff4524431c9.png", "timestamp": "2024-02-15T20:42:54.568966+00:00"}}, {"id": "3090f043-5d70-4eff-8256-c4939394e0ff", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.604396+00:00", "label": "true", "label_explanation": "It is not possible to tell if it is raining or not due to the blurriness of the image.", "snapshot": {"id": "8cb111e7-6af5-4cb4-8120-1ff4524431c9", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/8cb111e7-6af5-4cb4-8120-1ff4524431c9.png", "timestamp": "2024-02-15T20:42:54.568966+00:00"}}, {"id": "f85b2bbe-c085-4d83-9d9d-3451b58f929a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.317899+00:00", "label": "free", "label_explanation": "It is not possible to tell if there are any road blockades due to the blurriness of the image.", "snapshot": {"id": "8cb111e7-6af5-4cb4-8120-1ff4524431c9", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/8cb111e7-6af5-4cb4-8120-1ff4524431c9.png", "timestamp": "2024-02-15T20:42:54.568966+00:00"}}, {"id": "8484f50c-0699-47a1-832e-1c6eb4b74377", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.669528+00:00", "label": "null", "label_explanation": "The image is blurry and unclear, making it difficult to see the details of the road. There are cars on the road, but it is not possible to make out any other details.", "snapshot": {"id": "7d060243-4f75-459d-ab5a-60ed6fe6b1bc", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/7d060243-4f75-459d-ab5a-60ed6fe6b1bc.png", "timestamp": "2024-02-15T20:45:19.454099+00:00"}}, {"id": "fe6f7eb9-9cbb-4a99-ae1d-52d68d5927e1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.465933+00:00", "label": "true", "label_explanation": "The image is blurry and unclear, making it difficult to see the details of the road.", "snapshot": {"id": "7d060243-4f75-459d-ab5a-60ed6fe6b1bc", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/7d060243-4f75-459d-ab5a-60ed6fe6b1bc.png", "timestamp": "2024-02-15T20:45:19.454099+00:00"}}, {"id": "539f8128-3327-47c1-b96c-96b882d1283d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.457784+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "b1f89009-e521-461b-9a6f-38cdcdcb7671", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/b1f89009-e521-461b-9a6f-38cdcdcb7671.png", "timestamp": "2024-02-15T20:47:41.208839+00:00"}}, {"id": "c6621733-4848-41c0-995f-e44b655f3401", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.186676+00:00", "label": "true", "label_explanation": "The image is significantly blurred, with a uniform grey color dominating the entire frame. This indicates a high likelihood of image data loss or corruption.", "snapshot": {"id": "b1f89009-e521-461b-9a6f-38cdcdcb7671", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/b1f89009-e521-461b-9a6f-38cdcdcb7671.png", "timestamp": "2024-02-15T20:47:41.208839+00:00"}}, {"id": "fe8f3820-32fd-4744-b88a-b26082c854f9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.946362+00:00", "label": "free", "label_explanation": "The image does not provide sufficient clarity to determine if there are any road blockades. The blurred nature of the image prevents a conclusive assessment.", "snapshot": {"id": "2352d333-ca3d-43b5-9a51-411f2ba59238", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2352d333-ca3d-43b5-9a51-411f2ba59238.png", "timestamp": "2024-02-15T20:50:05.413440+00:00"}}, {"id": "4b9c59eb-a368-4b5e-a288-96cc9ef39e6a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.510451+00:00", "label": "low", "label_explanation": "Due to the blurriness, it is challenging to determine the exact water level. However, based on the limited visibility and the presence of water reflections, it can be inferred that the water level is likely low or possibly medium.", "snapshot": {"id": "2352d333-ca3d-43b5-9a51-411f2ba59238", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2352d333-ca3d-43b5-9a51-411f2ba59238.png", "timestamp": "2024-02-15T20:50:05.413440+00:00"}}, {"id": "11be5cd4-1c12-4696-835d-52fc7451537b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.939154+00:00", "label": "null", "label_explanation": "The image is of an urban road with blurred outlines of vehicles and buildings. The road appears wet, but the overall scene is unclear due to the blurriness.", "snapshot": {"id": "2352d333-ca3d-43b5-9a51-411f2ba59238", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2352d333-ca3d-43b5-9a51-411f2ba59238.png", "timestamp": "2024-02-15T20:50:05.413440+00:00"}}, {"id": "91bad058-ee95-470b-9200-f471d5e3f30d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.720009+00:00", "label": "difficult", "label_explanation": "The blurred image makes it difficult to assess the traffic situation accurately. While there are outlines of vehicles, their movement and interactions cannot be determined. It is plausible that traffic flow is hindered due to the wet road conditions.", "snapshot": {"id": "2352d333-ca3d-43b5-9a51-411f2ba59238", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2352d333-ca3d-43b5-9a51-411f2ba59238.png", "timestamp": "2024-02-15T20:50:05.413440+00:00"}}, {"id": "ad0f5959-c7de-4636-a1d3-abb1d5663707", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.145558+00:00", "label": "true", "label_explanation": "Although the image is blurry, there are indications of rain or wetness on the road surface. The blurred reflections on the road suggest the presence of water.", "snapshot": {"id": "2352d333-ca3d-43b5-9a51-411f2ba59238", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2352d333-ca3d-43b5-9a51-411f2ba59238.png", "timestamp": "2024-02-15T20:50:05.413440+00:00"}}, {"id": "74ad8fb6-9c7d-4639-9c1e-6a7ee110dfca", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.629038+00:00", "label": "true", "label_explanation": "The image is blurry and unclear, making it difficult to discern specific details. However, there are no obvious signs of data loss or corruption, such as uniform grey or green color distortions.", "snapshot": {"id": "2352d333-ca3d-43b5-9a51-411f2ba59238", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/2352d333-ca3d-43b5-9a51-411f2ba59238.png", "timestamp": "2024-02-15T20:50:05.413440+00:00"}}, {"id": "5576896d-5ef5-461b-8793-ca691d62f044", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.491255+00:00", "label": "free", "label_explanation": "It is not possible to determine if there are any road blockades due to the poor image quality.", "snapshot": {"id": "5104d929-f6cd-4636-bc34-7b1269d1d23e", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/5104d929-f6cd-4636-bc34-7b1269d1d23e.png", "timestamp": "2024-02-15T20:52:29.273004+00:00"}}, {"id": "dc6e74da-6f9e-4d10-ab6b-d7e7e6040d94", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.281249+00:00", "label": "difficult", "label_explanation": "The blurred image makes it difficult to assess traffic conditions. However, there appear to be moving vehicles on the road.", "snapshot": {"id": "5104d929-f6cd-4636-bc34-7b1269d1d23e", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/5104d929-f6cd-4636-bc34-7b1269d1d23e.png", "timestamp": "2024-02-15T20:52:29.273004+00:00"}}, {"id": "955de520-9f86-4b61-9ad0-8af395b2b372", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.991588+00:00", "label": "low", "label_explanation": "The image is too unclear to assess the water level on the road.", "snapshot": {"id": "5104d929-f6cd-4636-bc34-7b1269d1d23e", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/5104d929-f6cd-4636-bc34-7b1269d1d23e.png", "timestamp": "2024-02-15T20:52:29.273004+00:00"}}, {"id": "9ce94979-697d-4173-b8c6-9dd9c1aadea7", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.328058+00:00", "label": "true", "label_explanation": "The image is significantly blurred, with a green tint and unclear details. It is difficult to discern specific objects or features on the road.", "snapshot": {"id": "5104d929-f6cd-4636-bc34-7b1269d1d23e", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/5104d929-f6cd-4636-bc34-7b1269d1d23e.png", "timestamp": "2024-02-15T20:52:29.273004+00:00"}}, {"id": "201f4bd2-bf65-4108-989c-7c173f1b02f3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.579801+00:00", "label": "null", "label_explanation": "The image is too blurry to provide a detailed description. However, it appears to be a daytime scene, possibly on a street with blurred vehicles and foliage on either side.", "snapshot": {"id": "5104d929-f6cd-4636-bc34-7b1269d1d23e", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/5104d929-f6cd-4636-bc34-7b1269d1d23e.png", "timestamp": "2024-02-15T20:52:29.273004+00:00"}}, {"id": "a0867b92-ac8f-4749-a19d-b3030984a498", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.804991+00:00", "label": "true", "label_explanation": "It is not possible to determine the presence or absence of rain due to the heavy image distortion and blurriness.", "snapshot": {"id": "5104d929-f6cd-4636-bc34-7b1269d1d23e", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/5104d929-f6cd-4636-bc34-7b1269d1d23e.png", "timestamp": "2024-02-15T20:52:29.273004+00:00"}}, {"id": "3f144422-8bfd-4542-b382-7d1f7687b6a6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.339763+00:00", "label": "true", "label_explanation": "The road is wet from rain, and there are small puddles on the road surface.", "snapshot": {"id": "b0cde890-2bee-4454-8124-4404a847aae7", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/b0cde890-2bee-4454-8124-4404a847aae7.png", "timestamp": "2024-02-15T20:54:58.102708+00:00"}}, {"id": "5b734d00-5516-4aff-947c-2baa82e0db3b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.089319+00:00", "label": "null", "label_explanation": "The image is of an urban road with cars, trees, and buildings. The road is wet from rain, and there are small puddles on the road surface. There is a bus stop sign on the side of the road.", "snapshot": {"id": "b0cde890-2bee-4454-8124-4404a847aae7", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/b0cde890-2bee-4454-8124-4404a847aae7.png", "timestamp": "2024-02-15T20:54:58.102708+00:00"}}, {"id": "86251471-e6a8-424a-827b-9faa8cbd555c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.785506+00:00", "label": "true", "label_explanation": "The image is blurry and unclear, making it difficult to discern specific details. However, there are no obvious signs of data loss or corruption, such as uniform grey or green color distortions.", "snapshot": {"id": "b0cde890-2bee-4454-8124-4404a847aae7", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/b0cde890-2bee-4454-8124-4404a847aae7.png", "timestamp": "2024-02-15T20:54:58.102708+00:00"}}, {"id": "e88c1ff8-71d3-42cd-8d6b-4732ef575516", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.246605+00:00", "label": "free", "label_explanation": "There are no road blockades, and the road is passable for vehicles.", "snapshot": {"id": "b0cde890-2bee-4454-8124-4404a847aae7", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/b0cde890-2bee-4454-8124-4404a847aae7.png", "timestamp": "2024-02-15T20:54:58.102708+00:00"}}, {"id": "fde70afd-f927-4b3d-ab5c-0b0c267f6027", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.002926+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars on the road. The road is still passable for vehicles.", "snapshot": {"id": "b0cde890-2bee-4454-8124-4404a847aae7", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/b0cde890-2bee-4454-8124-4404a847aae7.png", "timestamp": "2024-02-15T20:54:58.102708+00:00"}}, {"id": "a7376146-3dbe-479c-ba5a-a5d64159f28e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.696418+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles on the road surface. The road is still passable for vehicles.", "snapshot": {"id": "b0cde890-2bee-4454-8124-4404a847aae7", "camera_id": "001477", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001477/b0cde890-2bee-4454-8124-4404a847aae7.png", "timestamp": "2024-02-15T20:54:58.102708+00:00"}}]}, {"id": "001513", "name": "ESTR. DO CAMPINHO, 2226 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893672, "longitude": -43.585578, "objects": ["rain", "water_level", "traffic", "image_corrupted", "image_description", "road_blockade"], "identifications": [{"id": "8223c1fb-54e5-4354-809d-6eee8fa26abb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.734998+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some small puddles, but the road surface is still mostly visible. The parked cars are not submerged, and the streetlights are still on.", "snapshot": {"id": "a318085b-5a27-4bd3-a995-fc3eb947557e", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/a318085b-5a27-4bd3-a995-fc3eb947557e.png", "timestamp": "2024-02-15T20:30:25.273064+00:00"}}, {"id": "1b98436e-9d08-42c5-8839-63d043d4df98", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.915397+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a318085b-5a27-4bd3-a995-fc3eb947557e", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/a318085b-5a27-4bd3-a995-fc3eb947557e.png", "timestamp": "2024-02-15T20:30:25.273064+00:00"}}, {"id": "6046dbb0-d56e-49b4-ae21-28befd1e787b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.469166+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles. The rain is not heavy, as the parked cars are still visible and the streetlights are on.", "snapshot": {"id": "a318085b-5a27-4bd3-a995-fc3eb947557e", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/a318085b-5a27-4bd3-a995-fc3eb947557e.png", "timestamp": "2024-02-15T20:30:25.273064+00:00"}}, {"id": "b53c816e-2f84-4b91-8d25-0ede6eb56eef", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.239395+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather is rainy. There are a few parked cars on the side of the road, and the streetlights are on. The road surface is wet, and there are some small puddles.", "snapshot": {"id": "a318085b-5a27-4bd3-a995-fc3eb947557e", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/a318085b-5a27-4bd3-a995-fc3eb947557e.png", "timestamp": "2024-02-15T20:30:25.273064+00:00"}}, {"id": "b6dce124-97a2-45c5-b8c4-8a5e1570f21d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.206874+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable in all directions.", "snapshot": {"id": "a318085b-5a27-4bd3-a995-fc3eb947557e", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/a318085b-5a27-4bd3-a995-fc3eb947557e.png", "timestamp": "2024-02-15T20:30:25.273064+00:00"}}, {"id": "2cea6091-cc52-4966-9dac-ca4e365074a4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.996881+00:00", "label": "easy", "label_explanation": "The traffic is light. There are a few parked cars on the side of the road, but the road is mostly empty. The streetlights are on, indicating that it is safe to drive.", "snapshot": {"id": "a318085b-5a27-4bd3-a995-fc3eb947557e", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/a318085b-5a27-4bd3-a995-fc3eb947557e.png", "timestamp": "2024-02-15T20:30:25.273064+00:00"}}, {"id": "32bd49a8-dbb2-424a-97c1-8c86de83d305", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.739076+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "92d4ad0b-4a45-43db-af1a-b0132eb1c9c6", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/92d4ad0b-4a45-43db-af1a-b0132eb1c9c6.png", "timestamp": "2024-02-15T20:32:59.041135+00:00"}}, {"id": "36e3b1fb-8263-4455-a985-d209e9ce7a02", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:14.052723+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "92d4ad0b-4a45-43db-af1a-b0132eb1c9c6", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/92d4ad0b-4a45-43db-af1a-b0132eb1c9c6.png", "timestamp": "2024-02-15T20:32:59.041135+00:00"}}, {"id": "1c73e143-dfd6-4946-8f35-3990c1aedf74", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.160442+00:00", "label": "easy", "label_explanation": "The road is clear of traffic, with no moving vehicles visible in the image. However, the presence of parked cars suggests that the road is normally busy.", "snapshot": {"id": "92d4ad0b-4a45-43db-af1a-b0132eb1c9c6", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/92d4ad0b-4a45-43db-af1a-b0132eb1c9c6.png", "timestamp": "2024-02-15T20:32:59.041135+00:00"}}, {"id": "f507e4ed-1012-46ae-891c-14ba0995ecd1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.539216+00:00", "label": "medium", "label_explanation": "The water level on the road is moderate, with several large puddles but no significant flooding.", "snapshot": {"id": "92d4ad0b-4a45-43db-af1a-b0132eb1c9c6", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/92d4ad0b-4a45-43db-af1a-b0132eb1c9c6.png", "timestamp": "2024-02-15T20:32:59.041135+00:00"}}, {"id": "9fc619dd-0860-42f6-b8cf-958aca2c244c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.004090+00:00", "label": "true", "label_explanation": "The presence of rain is evident from the wet road surface and the large puddles on the road.", "snapshot": {"id": "92d4ad0b-4a45-43db-af1a-b0132eb1c9c6", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/92d4ad0b-4a45-43db-af1a-b0132eb1c9c6.png", "timestamp": "2024-02-15T20:32:59.041135+00:00"}}, {"id": "1e0bbe2d-02d9-4289-bae3-0130996abffe", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:14.410237+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during rainfall. It shows a wide, straight road with commercial buildings and residential apartments on either side. The road is wet from the rain, and there are several large puddles on the surface. There are a few cars parked along the side of the road, but no moving vehicles are visible in the image.", "snapshot": {"id": "92d4ad0b-4a45-43db-af1a-b0132eb1c9c6", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/92d4ad0b-4a45-43db-af1a-b0132eb1c9c6.png", "timestamp": "2024-02-15T20:32:59.041135+00:00"}}, {"id": "04236c09-b0f5-4eec-a5fd-96c87d1d632a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.194059+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, but the road is wet from the rain.", "snapshot": {"id": "5eb61a28-dbcf-4086-aef2-e9befdb7405a", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/5eb61a28-dbcf-4086-aef2-e9befdb7405a.png", "timestamp": "2024-02-15T20:45:18.070395+00:00"}}, {"id": "de48dc65-b127-410f-8474-e01dffdcc2f9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.986237+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "5eb61a28-dbcf-4086-aef2-e9befdb7405a", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/5eb61a28-dbcf-4086-aef2-e9befdb7405a.png", "timestamp": "2024-02-15T20:45:18.070395+00:00"}}, {"id": "8f71e40b-92e2-45c8-bdfc-8353c9271a42", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.882793+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "5eb61a28-dbcf-4086-aef2-e9befdb7405a", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/5eb61a28-dbcf-4086-aef2-e9befdb7405a.png", "timestamp": "2024-02-15T20:45:18.070395+00:00"}}, {"id": "29aecc50-9b10-498c-8adb-d235545877f7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.779926+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is a four-lane road with a painted median strip. There are a few trees on either side of the road, and buildings and houses can be seen in the background. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "5eb61a28-dbcf-4086-aef2-e9befdb7405a", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/5eb61a28-dbcf-4086-aef2-e9befdb7405a.png", "timestamp": "2024-02-15T20:45:18.070395+00:00"}}, {"id": "5450377f-c365-4bfc-af41-b7981a9089bf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.579036+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5eb61a28-dbcf-4086-aef2-e9befdb7405a", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/5eb61a28-dbcf-4086-aef2-e9befdb7405a.png", "timestamp": "2024-02-15T20:45:18.070395+00:00"}}, {"id": "fcd8d11c-49e3-4405-b5c2-b84586067f70", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:31.455285+00:00", "label": "easy", "label_explanation": "There is light traffic on the road, with a few cars visible in the image.", "snapshot": {"id": "5eb61a28-dbcf-4086-aef2-e9befdb7405a", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/5eb61a28-dbcf-4086-aef2-e9befdb7405a.png", "timestamp": "2024-02-15T20:45:18.070395+00:00"}}, {"id": "08a3f1e2-122a-4281-be9d-c35ca9f638db", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.128036+00:00", "label": "free", "label_explanation": "There are no road blockades, as the road is clear and passable.", "snapshot": {"id": "fe8a175e-5177-4c11-b444-807ade2a11d5", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/fe8a175e-5177-4c11-b444-807ade2a11d5.png", "timestamp": "2024-02-15T20:35:27.069115+00:00"}}, {"id": "d25ac295-622b-4f93-afcf-5d9a63ef9d83", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.759625+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, as there are several vehicles on the road but they are able to move without difficulty.", "snapshot": {"id": "fe8a175e-5177-4c11-b444-807ade2a11d5", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/fe8a175e-5177-4c11-b444-807ade2a11d5.png", "timestamp": "2024-02-15T20:35:27.069115+00:00"}}, {"id": "7b4e3697-98ee-40c0-bcf8-ed586165449d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.276911+00:00", "label": "medium", "label_explanation": "The water level is medium, as there are several large puddles but the road is still passable.", "snapshot": {"id": "fe8a175e-5177-4c11-b444-807ade2a11d5", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/fe8a175e-5177-4c11-b444-807ade2a11d5.png", "timestamp": "2024-02-15T20:35:27.069115+00:00"}}, {"id": "02bd5aca-57d8-46be-b854-38cd55288844", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.970905+00:00", "label": "true", "label_explanation": "The road surface is wet and there are several large puddles, indicating that it is raining.", "snapshot": {"id": "fe8a175e-5177-4c11-b444-807ade2a11d5", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/fe8a175e-5177-4c11-b444-807ade2a11d5.png", "timestamp": "2024-02-15T20:35:27.069115+00:00"}}, {"id": "c121e466-c0b8-46cd-8599-e822072fb58e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.567465+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during rainfall. It shows a wide, straight road with commercial buildings and residential apartments on either side. The road is wet and there are several large puddles. A motorcycle is driving in the foreground.", "snapshot": {"id": "fe8a175e-5177-4c11-b444-807ade2a11d5", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/fe8a175e-5177-4c11-b444-807ade2a11d5.png", "timestamp": "2024-02-15T20:35:27.069115+00:00"}}, {"id": "4cb5785e-45da-485f-97f5-556bb4ee6844", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.036204+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fe8a175e-5177-4c11-b444-807ade2a11d5", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/fe8a175e-5177-4c11-b444-807ade2a11d5.png", "timestamp": "2024-02-15T20:35:27.069115+00:00"}}, {"id": "589b7b1e-3e6f-47b2-a104-5e2f47366b10", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:14.435768+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles of water present.", "snapshot": {"id": "95d8fc34-1acd-4c92-937b-0e1467ca2496", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/95d8fc34-1acd-4c92-937b-0e1467ca2496.png", "timestamp": "2024-02-15T20:37:58.562810+00:00"}}, {"id": "d64d0722-170b-4bc4-aac7-ddded183f3d9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:13.720297+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection. It is daytime, and the weather appears to be cloudy with some light rain. There are several parked cars on the side of the road, and a few trees can be seen in the background.", "snapshot": {"id": "95d8fc34-1acd-4c92-937b-0e1467ca2496", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/95d8fc34-1acd-4c92-937b-0e1467ca2496.png", "timestamp": "2024-02-15T20:37:58.562810+00:00"}}, {"id": "7b3956fb-f78d-4c05-a34d-76e88e626867", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:14.848067+00:00", "label": "easy", "label_explanation": "The traffic appears to be light, with only a few cars visible on the road.", "snapshot": {"id": "95d8fc34-1acd-4c92-937b-0e1467ca2496", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/95d8fc34-1acd-4c92-937b-0e1467ca2496.png", "timestamp": "2024-02-15T20:37:58.562810+00:00"}}, {"id": "e16bf3fe-b392-4ae3-b035-cfca512846db", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:13.393879+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "95d8fc34-1acd-4c92-937b-0e1467ca2496", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/95d8fc34-1acd-4c92-937b-0e1467ca2496.png", "timestamp": "2024-02-15T20:37:58.562810+00:00"}}, {"id": "9a5913e5-2404-4d49-b7cf-9663bfcc8046", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.096859+00:00", "label": "free", "label_explanation": "There are no visible obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "95d8fc34-1acd-4c92-937b-0e1467ca2496", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/95d8fc34-1acd-4c92-937b-0e1467ca2496.png", "timestamp": "2024-02-15T20:37:58.562810+00:00"}}, {"id": "b2194850-2a7c-4d0c-8218-2c426010aa08", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:14.174563+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles of water on the road.", "snapshot": {"id": "95d8fc34-1acd-4c92-937b-0e1467ca2496", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/95d8fc34-1acd-4c92-937b-0e1467ca2496.png", "timestamp": "2024-02-15T20:37:58.562810+00:00"}}, {"id": "cbd17643-4cee-43bb-bc75-bd98a4f2d56f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.882730+00:00", "label": "true", "label_explanation": "The presence of rain is evident from the wet road surface and the rain drops visible on the camera lens.", "snapshot": {"id": "7d7bbcd9-3cb0-48d8-9131-3902e153d59b", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/7d7bbcd9-3cb0-48d8-9131-3902e153d59b.png", "timestamp": "2024-02-15T20:40:29.165538+00:00"}}, {"id": "156da310-d7d1-4e64-bc1a-8999c284cdce", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.391693+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7d7bbcd9-3cb0-48d8-9131-3902e153d59b", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/7d7bbcd9-3cb0-48d8-9131-3902e153d59b.png", "timestamp": "2024-02-15T20:40:29.165538+00:00"}}, {"id": "73e8444d-df49-4fad-8c37-bf98f723413c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.286447+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a steady flow of vehicles. However, the wet conditions may cause some slowing down of traffic.", "snapshot": {"id": "7d7bbcd9-3cb0-48d8-9131-3902e153d59b", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/7d7bbcd9-3cb0-48d8-9131-3902e153d59b.png", "timestamp": "2024-02-15T20:40:29.165538+00:00"}}, {"id": "c6a149e5-7cc9-4bae-987d-4747977e7de1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.624649+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during rainfall. It shows a wide, straight road with commercial buildings and residential apartments on either side. The road is wet from the rain, with some areas showing shallow puddles.", "snapshot": {"id": "7d7bbcd9-3cb0-48d8-9131-3902e153d59b", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/7d7bbcd9-3cb0-48d8-9131-3902e153d59b.png", "timestamp": "2024-02-15T20:40:29.165538+00:00"}}, {"id": "7a543ec4-f12e-42fc-a730-28a7f70c0b8c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.074025+00:00", "label": "low", "label_explanation": "While the road is wet from the rain, there are no significant puddles or water accumulation. The water level can be classified as 'low' as per the guidelines.", "snapshot": {"id": "7d7bbcd9-3cb0-48d8-9131-3902e153d59b", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/7d7bbcd9-3cb0-48d8-9131-3902e153d59b.png", "timestamp": "2024-02-15T20:40:29.165538+00:00"}}, {"id": "73fea517-38f0-432d-bac0-37195ebc1230", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.608633+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "7d7bbcd9-3cb0-48d8-9131-3902e153d59b", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/7d7bbcd9-3cb0-48d8-9131-3902e153d59b.png", "timestamp": "2024-02-15T20:40:29.165538+00:00"}}, {"id": "0ac2263a-914c-4c7a-8493-5222369c28b8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.053620+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars on the road.", "snapshot": {"id": "9393443e-7fa0-4a49-a9b2-7cb2f8bff479", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/9393443e-7fa0-4a49-a9b2-7cb2f8bff479.png", "timestamp": "2024-02-15T20:47:40.229663+00:00"}}, {"id": "0ad0598b-1de4-4374-8fc9-de2f42ece453", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.841317+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few small puddles.", "snapshot": {"id": "9393443e-7fa0-4a49-a9b2-7cb2f8bff479", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/9393443e-7fa0-4a49-a9b2-7cb2f8bff479.png", "timestamp": "2024-02-15T20:47:40.229663+00:00"}}, {"id": "7f9116b0-71a7-43fe-9fdd-001ab707fcf4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.317959+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "9393443e-7fa0-4a49-a9b2-7cb2f8bff479", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/9393443e-7fa0-4a49-a9b2-7cb2f8bff479.png", "timestamp": "2024-02-15T20:47:40.229663+00:00"}}, {"id": "b4ce3ac8-f8be-4674-bd84-d487da814ab5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.603160+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles of water on the road.", "snapshot": {"id": "9393443e-7fa0-4a49-a9b2-7cb2f8bff479", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/9393443e-7fa0-4a49-a9b2-7cb2f8bff479.png", "timestamp": "2024-02-15T20:47:40.229663+00:00"}}, {"id": "2f9ab46d-620e-40c0-8618-9ddc21eb89fe", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.942626+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9393443e-7fa0-4a49-a9b2-7cb2f8bff479", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/9393443e-7fa0-4a49-a9b2-7cb2f8bff479.png", "timestamp": "2024-02-15T20:47:40.229663+00:00"}}, {"id": "13c5140b-da6a-468d-ba30-be0625be3b6e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.155759+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a slight bend. It is daytime, and the weather appears to be overcast with some light rain. There are a few parked cars on the side of the road, and a single gray car is driving in the rightmost lane.", "snapshot": {"id": "9393443e-7fa0-4a49-a9b2-7cb2f8bff479", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/9393443e-7fa0-4a49-a9b2-7cb2f8bff479.png", "timestamp": "2024-02-15T20:47:40.229663+00:00"}}, {"id": "5c4bd11e-826e-4700-9e40-16ededb7f657", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.294098+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "cfedca25-9b93-4edb-89ac-1e51d5543048", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/cfedca25-9b93-4edb-89ac-1e51d5543048.png", "timestamp": "2024-02-15T20:42:52.896378+00:00"}}, {"id": "bc47e462-399e-449d-b1c9-fab565ae1a0b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:04.135251+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "cfedca25-9b93-4edb-89ac-1e51d5543048", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/cfedca25-9b93-4edb-89ac-1e51d5543048.png", "timestamp": "2024-02-15T20:42:52.896378+00:00"}}, {"id": "31e2ecd0-60ad-40ff-a0bd-2fa4d74cac29", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.764339+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "cfedca25-9b93-4edb-89ac-1e51d5543048", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/cfedca25-9b93-4edb-89ac-1e51d5543048.png", "timestamp": "2024-02-15T20:42:52.896378+00:00"}}, {"id": "3b8ab008-cade-4f16-a155-5044d5f723bb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.896030+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "cfedca25-9b93-4edb-89ac-1e51d5543048", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/cfedca25-9b93-4edb-89ac-1e51d5543048.png", "timestamp": "2024-02-15T20:42:52.896378+00:00"}}, {"id": "168bc6bd-e790-4444-b23d-768c5efb4f98", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.563893+00:00", "label": "null", "label_explanation": "The image captures a scene of a moderately busy urban road with a person walking in the foreground.", "snapshot": {"id": "cfedca25-9b93-4edb-89ac-1e51d5543048", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/cfedca25-9b93-4edb-89ac-1e51d5543048.png", "timestamp": "2024-02-15T20:42:52.896378+00:00"}}, {"id": "f2edb508-0f39-4c5f-a461-1c122d1bad67", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.366592+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cfedca25-9b93-4edb-89ac-1e51d5543048", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/cfedca25-9b93-4edb-89ac-1e51d5543048.png", "timestamp": "2024-02-15T20:42:52.896378+00:00"}}, {"id": "34690801-af67-4414-b5b0-d9c456423d4e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.238875+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6187a922-3eae-45a5-965b-5fa577e8a662", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/6187a922-3eae-45a5-965b-5fa577e8a662.png", "timestamp": "2024-02-15T20:50:04.684042+00:00"}}, {"id": "e4507ab7-a9cd-40eb-a438-eb10e4d60794", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.146064+00:00", "label": "easy", "label_explanation": "The traffic is light, and there are no major obstructions on the road. The parked cars are not blocking any lanes of traffic, and there are no pedestrians or cyclists visible in the image.", "snapshot": {"id": "6187a922-3eae-45a5-965b-5fa577e8a662", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/6187a922-3eae-45a5-965b-5fa577e8a662.png", "timestamp": "2024-02-15T20:50:04.684042+00:00"}}, {"id": "c2df4e5f-5af5-4afa-ba6a-80374642ba33", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.658424+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are several puddles on the road. The parked cars are also wet, and the trees and buildings in the background are glistening from the rain.", "snapshot": {"id": "6187a922-3eae-45a5-965b-5fa577e8a662", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/6187a922-3eae-45a5-965b-5fa577e8a662.png", "timestamp": "2024-02-15T20:50:04.684042+00:00"}}, {"id": "22eb1431-1b42-462a-8101-85e4945ba283", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.436117+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is a four-lane road with a slight bend to the right. The road surface is wet from recent rain, and there are several parked cars on either side of the road. Trees and buildings can be seen in the background.", "snapshot": {"id": "6187a922-3eae-45a5-965b-5fa577e8a662", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/6187a922-3eae-45a5-965b-5fa577e8a662.png", "timestamp": "2024-02-15T20:50:04.684042+00:00"}}, {"id": "e668eb2f-ed0d-4e65-b1d0-3648625fed15", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.352769+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "6187a922-3eae-45a5-965b-5fa577e8a662", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/6187a922-3eae-45a5-965b-5fa577e8a662.png", "timestamp": "2024-02-15T20:50:04.684042+00:00"}}, {"id": "5075f9a7-50e7-47b6-9adf-505c68442b9e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.916031+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are several puddles on the road, but they are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "6187a922-3eae-45a5-965b-5fa577e8a662", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/6187a922-3eae-45a5-965b-5fa577e8a662.png", "timestamp": "2024-02-15T20:50:04.684042+00:00"}}, {"id": "0593472f-7701-4105-9f3a-4b54c92ae82a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.809986+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road.", "snapshot": {"id": "563c21bc-ba0e-458a-b5e5-88941cb4ca02", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/563c21bc-ba0e-458a-b5e5-88941cb4ca02.png", "timestamp": "2024-02-15T20:52:28.492721+00:00"}}, {"id": "5bca4507-80cd-4be7-bbef-3179d62023e7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.030924+00:00", "label": "true", "label_explanation": "The road surface is wet, and the weather appears to be rainy.", "snapshot": {"id": "563c21bc-ba0e-458a-b5e5-88941cb4ca02", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/563c21bc-ba0e-458a-b5e5-88941cb4ca02.png", "timestamp": "2024-02-15T20:52:28.492721+00:00"}}, {"id": "2edc190f-4b63-4080-b7b5-a884dd61bb33", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.569512+00:00", "label": "easy", "label_explanation": "The traffic appears to be light, with a few cars on the road.", "snapshot": {"id": "563c21bc-ba0e-458a-b5e5-88941cb4ca02", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/563c21bc-ba0e-458a-b5e5-88941cb4ca02.png", "timestamp": "2024-02-15T20:52:28.492721+00:00"}}, {"id": "e55b91ec-8950-4f7a-be3f-55c7421a0316", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.318228+00:00", "label": "low", "label_explanation": "There is no standing water or significant puddles on the road surface.", "snapshot": {"id": "563c21bc-ba0e-458a-b5e5-88941cb4ca02", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/563c21bc-ba0e-458a-b5e5-88941cb4ca02.png", "timestamp": "2024-02-15T20:52:28.492721+00:00"}}, {"id": "90631d93-6eda-40bc-83b6-571d44d48635", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:39.612575+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "563c21bc-ba0e-458a-b5e5-88941cb4ca02", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/563c21bc-ba0e-458a-b5e5-88941cb4ca02.png", "timestamp": "2024-02-15T20:52:28.492721+00:00"}}, {"id": "37a0f406-7a14-4f9b-afe9-eb7359e9c9a9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:39.819123+00:00", "label": "null", "label_explanation": "The image captures a four-way road intersection. It is daytime, and the weather appears to be cloudy and rainy. There are a few cars on the road, and the traffic seems to be light. The road surface is wet, but there are no significant puddles or standing water.", "snapshot": {"id": "563c21bc-ba0e-458a-b5e5-88941cb4ca02", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/563c21bc-ba0e-458a-b5e5-88941cb4ca02.png", "timestamp": "2024-02-15T20:52:28.492721+00:00"}}, {"id": "ba9d6d25-31d3-4b09-aa95-e666e3689cd5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.854178+00:00", "label": "true", "label_explanation": "There is some water visible on the road surface, but it is not covering the entire road and does not appear to be causing any significant traffic disruptions.", "snapshot": {"id": "3ad816f9-142f-4939-93a4-8721a4aa6276", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/3ad816f9-142f-4939-93a4-8721a4aa6276.png", "timestamp": "2024-02-15T20:54:56.294636+00:00"}}, {"id": "23da4fac-b2ef-4fcb-8705-264a707af7dc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.420302+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3ad816f9-142f-4939-93a4-8721a4aa6276", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/3ad816f9-142f-4939-93a4-8721a4aa6276.png", "timestamp": "2024-02-15T20:54:56.294636+00:00"}}, {"id": "86eb140b-3cd7-4662-b17b-6b04c97fba41", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.865651+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is able to flow freely.", "snapshot": {"id": "3ad816f9-142f-4939-93a4-8721a4aa6276", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/3ad816f9-142f-4939-93a4-8721a4aa6276.png", "timestamp": "2024-02-15T20:54:56.294636+00:00"}}, {"id": "b2a6bffb-7573-484f-8a2d-0aba5f5ab004", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.347935+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays observed.", "snapshot": {"id": "3ad816f9-142f-4939-93a4-8721a4aa6276", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/3ad816f9-142f-4939-93a4-8721a4aa6276.png", "timestamp": "2024-02-15T20:54:56.294636+00:00"}}, {"id": "8a455834-ccb4-45c9-8b27-060d0c4e7c2e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.053237+00:00", "label": "low", "label_explanation": "The water level on the road is low, with some small puddles visible but no significant accumulation of water.", "snapshot": {"id": "3ad816f9-142f-4939-93a4-8721a4aa6276", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/3ad816f9-142f-4939-93a4-8721a4aa6276.png", "timestamp": "2024-02-15T20:54:56.294636+00:00"}}, {"id": "b9524a6d-89e1-441b-bc92-98dcb9e53b96", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.617646+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy with some wetness on the road surface.", "snapshot": {"id": "3ad816f9-142f-4939-93a4-8721a4aa6276", "camera_id": "001513", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001513/3ad816f9-142f-4939-93a4-8721a4aa6276.png", "timestamp": "2024-02-15T20:54:56.294636+00:00"}}]}, {"id": "000794", "name": "AV. PRES. VARGAS X RUA 1\u00ba DE MAR\u00c7O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91231, "longitude": -43.195245, "objects": ["image_description", "traffic", "image_corrupted", "road_blockade", "rain", "water_level"], "identifications": [{"id": "0e3abc33-1db2-49f3-ac22-1cb0681ff90c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.912567+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "0fb884f2-8ad7-4f13-addb-ffbfd6985683", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/0fb884f2-8ad7-4f13-addb-ffbfd6985683.png", "timestamp": "2024-02-15T20:30:19.545658+00:00"}}, {"id": "3d14f15f-eb2a-4651-9d46-42895cf5505e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.669446+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving slowly due to the wet conditions.", "snapshot": {"id": "0fb884f2-8ad7-4f13-addb-ffbfd6985683", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/0fb884f2-8ad7-4f13-addb-ffbfd6985683.png", "timestamp": "2024-02-15T20:30:19.545658+00:00"}}, {"id": "c7113750-2225-47d5-8ecb-b5e42fef405b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.699297+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy and overcast. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are several vehicles on the road, including cars, buses, and motorcycles. The vehicles are moving slowly due to the wet conditions. There are also a few pedestrians on the sidewalk, walking with umbrellas to protect themselves from the rain.", "snapshot": {"id": "0fb884f2-8ad7-4f13-addb-ffbfd6985683", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/0fb884f2-8ad7-4f13-addb-ffbfd6985683.png", "timestamp": "2024-02-15T20:30:19.545658+00:00"}}, {"id": "ef0a6051-6b38-4833-8a40-bc9a8c73f811", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.213797+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0fb884f2-8ad7-4f13-addb-ffbfd6985683", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/0fb884f2-8ad7-4f13-addb-ffbfd6985683.png", "timestamp": "2024-02-15T20:30:19.545658+00:00"}}, {"id": "f2ffbd47-6538-4f5c-8b7d-59466db7cefb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.032143+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "0fb884f2-8ad7-4f13-addb-ffbfd6985683", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/0fb884f2-8ad7-4f13-addb-ffbfd6985683.png", "timestamp": "2024-02-15T20:30:19.545658+00:00"}}, {"id": "8ddfc98e-d4e4-4d5f-b568-e668eb5b68a1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.397742+00:00", "label": "low", "label_explanation": "The water level is low, with no significant puddles or standing water.", "snapshot": {"id": "0fb884f2-8ad7-4f13-addb-ffbfd6985683", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/0fb884f2-8ad7-4f13-addb-ffbfd6985683.png", "timestamp": "2024-02-15T20:30:19.545658+00:00"}}, {"id": "3cfab82e-2512-4b9e-99dc-2696fc5efda5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.247735+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "39f81e7a-a963-467c-9766-e2f44f89cfc9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/39f81e7a-a963-467c-9766-e2f44f89cfc9.png", "timestamp": "2024-02-15T20:45:11.278718+00:00"}}, {"id": "2ebdbac3-debd-4429-846e-94fa8e3bb7ad", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.751840+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road surface is wet from recent rain. There are several parked cars on the side of the road, and a cyclist is riding in the street.", "snapshot": {"id": "39f81e7a-a963-467c-9766-e2f44f89cfc9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/39f81e7a-a963-467c-9766-e2f44f89cfc9.png", "timestamp": "2024-02-15T20:45:11.278718+00:00"}}, {"id": "6c00a7fe-2e93-45e1-a95a-4781fb914b3f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.909376+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "39f81e7a-a963-467c-9766-e2f44f89cfc9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/39f81e7a-a963-467c-9766-e2f44f89cfc9.png", "timestamp": "2024-02-15T20:45:11.278718+00:00"}}, {"id": "19e94d04-1098-458a-8638-51bf7c26424e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.667149+00:00", "label": "easy", "label_explanation": "The traffic is light, and there are no major obstructions on the road. The cyclist is able to ride safely in the street.", "snapshot": {"id": "39f81e7a-a963-467c-9766-e2f44f89cfc9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/39f81e7a-a963-467c-9766-e2f44f89cfc9.png", "timestamp": "2024-02-15T20:45:11.278718+00:00"}}, {"id": "18467283-511c-4aff-84d9-5d5f5165c276", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.299693+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some puddles, but they are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "39f81e7a-a963-467c-9766-e2f44f89cfc9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/39f81e7a-a963-467c-9766-e2f44f89cfc9.png", "timestamp": "2024-02-15T20:45:11.278718+00:00"}}, {"id": "4b611161-d2f0-4c46-85d4-23701ed80e2d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.021388+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "39f81e7a-a963-467c-9766-e2f44f89cfc9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/39f81e7a-a963-467c-9766-e2f44f89cfc9.png", "timestamp": "2024-02-15T20:45:11.278718+00:00"}}, {"id": "e573f73f-6e62-40e1-93ed-cd41cbfd7007", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.607354+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "9b06dff0-07dc-4338-84d8-c763b19d2e17", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/9b06dff0-07dc-4338-84d8-c763b19d2e17.png", "timestamp": "2024-02-15T20:35:21.595485+00:00"}}, {"id": "f5ec2a89-455e-4fa4-b49f-18874cb11e42", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.763677+00:00", "label": "true", "label_explanation": "The image is corrupted and not suitable for analysis. The image is mostly green with some distorted lines.", "snapshot": {"id": "9b06dff0-07dc-4338-84d8-c763b19d2e17", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/9b06dff0-07dc-4338-84d8-c763b19d2e17.png", "timestamp": "2024-02-15T20:35:21.595485+00:00"}}, {"id": "59d04e30-1488-474c-b2ab-9cc5e5c84345", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:07.996385+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, but there are no major obstructions or hazards visible.", "snapshot": {"id": "b302e15d-380a-4232-bd3d-2efc09c220f6", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/b302e15d-380a-4232-bd3d-2efc09c220f6.png", "timestamp": "2024-02-15T20:37:52.319886+00:00"}}, {"id": "ffb6fa63-4666-4e3e-99b4-83ad1687fe20", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.456915+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or disruptions visible.", "snapshot": {"id": "b302e15d-380a-4232-bd3d-2efc09c220f6", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/b302e15d-380a-4232-bd3d-2efc09c220f6.png", "timestamp": "2024-02-15T20:37:52.319886+00:00"}}, {"id": "32db3a4b-83f1-4aa0-be52-192d1f3383f8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.102239+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "b302e15d-380a-4232-bd3d-2efc09c220f6", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/b302e15d-380a-4232-bd3d-2efc09c220f6.png", "timestamp": "2024-02-15T20:37:52.319886+00:00"}}, {"id": "6f19e71a-d0aa-45bf-aa0f-dc0ed06dc134", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:07.377303+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b302e15d-380a-4232-bd3d-2efc09c220f6", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/b302e15d-380a-4232-bd3d-2efc09c220f6.png", "timestamp": "2024-02-15T20:37:52.319886+00:00"}}, {"id": "70309a50-9aa1-49d4-9b5a-19dae1042cbd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.038479+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. Traffic is flowing freely.", "snapshot": {"id": "b302e15d-380a-4232-bd3d-2efc09c220f6", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/b302e15d-380a-4232-bd3d-2efc09c220f6.png", "timestamp": "2024-02-15T20:37:52.319886+00:00"}}, {"id": "d792de64-087b-43a8-bed4-b8618f84c3a1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:08.563749+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "b302e15d-380a-4232-bd3d-2efc09c220f6", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/b302e15d-380a-4232-bd3d-2efc09c220f6.png", "timestamp": "2024-02-15T20:37:52.319886+00:00"}}, {"id": "35c00f4e-0dba-4369-8b48-b1d5247c8598", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.782782+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible in the image.", "snapshot": {"id": "76877801-9f36-4729-b744-b7549df055b9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/76877801-9f36-4729-b744-b7549df055b9.png", "timestamp": "2024-02-15T20:40:24.457731+00:00"}}, {"id": "3c67a677-4b84-4003-accb-b16edd494021", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.287217+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "76877801-9f36-4729-b744-b7549df055b9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/76877801-9f36-4729-b744-b7549df055b9.png", "timestamp": "2024-02-15T20:40:24.457731+00:00"}}, {"id": "82a8f77a-3867-4433-8713-43389d224f8a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.468821+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "76877801-9f36-4729-b744-b7549df055b9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/76877801-9f36-4729-b744-b7549df055b9.png", "timestamp": "2024-02-15T20:40:24.457731+00:00"}}, {"id": "7594e507-6244-4f89-909f-41a212e76ba4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.390421+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "76877801-9f36-4729-b744-b7549df055b9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/76877801-9f36-4729-b744-b7549df055b9.png", "timestamp": "2024-02-15T20:40:24.457731+00:00"}}, {"id": "0ea8d794-03f6-4f25-b226-39fdb4b020cc", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.924059+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road from other sources such as sprinklers or a nearby water body.", "snapshot": {"id": "76877801-9f36-4729-b744-b7549df055b9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/76877801-9f36-4729-b744-b7549df055b9.png", "timestamp": "2024-02-15T20:40:24.457731+00:00"}}, {"id": "8cddf8b8-b6dd-4d19-96a7-d2144be09557", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.631829+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians can be seen walking on the sidewalks.", "snapshot": {"id": "76877801-9f36-4729-b744-b7549df055b9", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/76877801-9f36-4729-b744-b7549df055b9.png", "timestamp": "2024-02-15T20:40:24.457731+00:00"}}, {"id": "a2db4d53-344d-466d-8d38-6e4a7f57120e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.132383+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a few parked cars on the side and a larger white truck approaching a red light. The road surface is wet from recent rain, and there are small puddles on either side of the road.", "snapshot": {"id": "e74a2c4c-395d-4565-a459-49a9dc4dc0ab", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/e74a2c4c-395d-4565-a459-49a9dc4dc0ab.png", "timestamp": "2024-02-15T20:47:36.701796+00:00"}}, {"id": "7b7d598d-6193-49a9-bc13-e92a8515d1ab", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.686980+00:00", "label": "low", "label_explanation": "While the road surface is wet, the water level is relatively low, with only small puddles forming on either side of the road. The majority of the road surface remains dry and visible.", "snapshot": {"id": "e74a2c4c-395d-4565-a459-49a9dc4dc0ab", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/e74a2c4c-395d-4565-a459-49a9dc4dc0ab.png", "timestamp": "2024-02-15T20:47:36.701796+00:00"}}, {"id": "5927debc-f8ae-47e1-b091-1d3e8475dc96", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:47.846492+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e74a2c4c-395d-4565-a459-49a9dc4dc0ab", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/e74a2c4c-395d-4565-a459-49a9dc4dc0ab.png", "timestamp": "2024-02-15T20:47:36.701796+00:00"}}, {"id": "67f01a9e-a5e3-47dc-a23b-b0bb5002fc12", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.415668+00:00", "label": "true", "label_explanation": "The presence of water on the road surface and the wet appearance of the surroundings indicate that it has been raining recently.", "snapshot": {"id": "e74a2c4c-395d-4565-a459-49a9dc4dc0ab", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/e74a2c4c-395d-4565-a459-49a9dc4dc0ab.png", "timestamp": "2024-02-15T20:47:36.701796+00:00"}}, {"id": "344b14fd-b5ed-4453-bb9e-99803d3f7646", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.313884+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades. Traffic is able to flow freely in both directions.", "snapshot": {"id": "e74a2c4c-395d-4565-a459-49a9dc4dc0ab", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/e74a2c4c-395d-4565-a459-49a9dc4dc0ab.png", "timestamp": "2024-02-15T20:47:36.701796+00:00"}}, {"id": "3a4ef3e0-4519-4d0f-915e-234d3d5880f1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.031199+00:00", "label": "easy", "label_explanation": "The presence of a few parked cars and a truck approaching a red light indicates that traffic is moving slowly and smoothly. There are no major obstructions or hazards visible in the image.", "snapshot": {"id": "e74a2c4c-395d-4565-a459-49a9dc4dc0ab", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/e74a2c4c-395d-4565-a459-49a9dc4dc0ab.png", "timestamp": "2024-02-15T20:47:36.701796+00:00"}}, {"id": "08f95a28-921b-4952-b55d-19b85635cc6e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.273356+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "c68485ee-b001-4d0a-91d7-a76f1b25617a", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/c68485ee-b001-4d0a-91d7-a76f1b25617a.png", "timestamp": "2024-02-15T20:42:50.384063+00:00"}}, {"id": "f038fc9d-bd85-4b55-9640-a92f436a2ce9", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.958393+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with large sections of it distorted and unviewable. The corruption makes it impossible to discern any meaningful information about the road conditions.", "snapshot": {"id": "c68485ee-b001-4d0a-91d7-a76f1b25617a", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/c68485ee-b001-4d0a-91d7-a76f1b25617a.png", "timestamp": "2024-02-15T20:42:50.384063+00:00"}}, {"id": "025d9ef0-8684-4efa-a437-250e6373812f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:09.022747+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "aec20083-42fb-4944-9d3a-5154b1d36910", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/aec20083-42fb-4944-9d3a-5154b1d36910.png", "timestamp": "2024-02-15T20:32:52.156101+00:00"}}, {"id": "a49be555-f73c-41c6-b431-2ba3ffcc4145", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:08.646502+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with large sections displaying a uniform green color and other areas showing distortion and pixelation. These visual artifacts indicate significant data loss or corruption, rendering the image unreliable for accurate analysis.", "snapshot": {"id": "aec20083-42fb-4944-9d3a-5154b1d36910", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/aec20083-42fb-4944-9d3a-5154b1d36910.png", "timestamp": "2024-02-15T20:32:52.156101+00:00"}}, {"id": "3d4552cc-c98f-4e62-a854-854079faf9e6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.116452+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with traffic lights, buildings, and trees on either side. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "f19e9d9a-73a2-4f01-bec4-859e6cfdce2d", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/f19e9d9a-73a2-4f01-bec4-859e6cfdce2d.png", "timestamp": "2024-02-15T20:50:00.399132+00:00"}}, {"id": "6a68646d-3feb-43fd-8a3e-be2d863ac9d5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.891897+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of corruption or data loss.", "snapshot": {"id": "f19e9d9a-73a2-4f01-bec4-859e6cfdce2d", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/f19e9d9a-73a2-4f01-bec4-859e6cfdce2d.png", "timestamp": "2024-02-15T20:50:00.399132+00:00"}}, {"id": "082f70db-139a-47c7-91aa-a311323fa587", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.263144+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "f19e9d9a-73a2-4f01-bec4-859e6cfdce2d", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/f19e9d9a-73a2-4f01-bec4-859e6cfdce2d.png", "timestamp": "2024-02-15T20:50:00.399132+00:00"}}, {"id": "335e49ec-eebf-42d6-b0bf-90d9733a01ac", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.929846+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars and buses moving slowly due to the wet road conditions.", "snapshot": {"id": "f19e9d9a-73a2-4f01-bec4-859e6cfdce2d", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/f19e9d9a-73a2-4f01-bec4-859e6cfdce2d.png", "timestamp": "2024-02-15T20:50:00.399132+00:00"}}, {"id": "a74f8341-3175-4118-ab2d-b7c173a6dbb4", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.650178+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface, but the road is wet from recent rain.", "snapshot": {"id": "f19e9d9a-73a2-4f01-bec4-859e6cfdce2d", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/f19e9d9a-73a2-4f01-bec4-859e6cfdce2d.png", "timestamp": "2024-02-15T20:50:00.399132+00:00"}}, {"id": "a084677b-4fdb-4194-9cd7-3c68c30c2640", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.423627+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "f19e9d9a-73a2-4f01-bec4-859e6cfdce2d", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/f19e9d9a-73a2-4f01-bec4-859e6cfdce2d.png", "timestamp": "2024-02-15T20:50:00.399132+00:00"}}, {"id": "971718bd-93fa-4cae-8917-e787d2cb1db8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:02.384663+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "f80237fe-bbe4-4d77-96a4-7b077c7a4b76", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/f80237fe-bbe4-4d77-96a4-7b077c7a4b76.png", "timestamp": "2024-02-15T20:54:52.121004+00:00"}}, {"id": "46601d1b-9332-416d-ade0-138d629d3413", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.943572+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with large areas of uniform green and red color. The image is unusable for further analysis.", "snapshot": {"id": "f80237fe-bbe4-4d77-96a4-7b077c7a4b76", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/f80237fe-bbe4-4d77-96a4-7b077c7a4b76.png", "timestamp": "2024-02-15T20:54:52.121004+00:00"}}, {"id": "b6505a27-e0f9-46ac-9f5c-1ac0b342d481", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.695334+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are a few small puddles, but they are not deep and do not cover a significant portion of the road surface.", "snapshot": {"id": "95be007b-6e15-45e0-8126-eb6b6034d069", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/95be007b-6e15-45e0-8126-eb6b6034d069.png", "timestamp": "2024-02-15T20:52:23.911422+00:00"}}, {"id": "1c52ba2e-f969-4c1f-b955-1a5823ce441e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.256798+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are a few parked cars on the side of the road and some trees in the background.", "snapshot": {"id": "95be007b-6e15-45e0-8126-eb6b6034d069", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/95be007b-6e15-45e0-8126-eb6b6034d069.png", "timestamp": "2024-02-15T20:52:23.911422+00:00"}}, {"id": "745cb5fc-a38b-428f-bd7d-a61f2436eb0a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:38.065992+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are all moving at a steady pace. There are no major traffic jams or delays.", "snapshot": {"id": "95be007b-6e15-45e0-8126-eb6b6034d069", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/95be007b-6e15-45e0-8126-eb6b6034d069.png", "timestamp": "2024-02-15T20:52:23.911422+00:00"}}, {"id": "9214cff1-ec55-4436-8c02-a4ddb038ffb6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.002965+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "95be007b-6e15-45e0-8126-eb6b6034d069", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/95be007b-6e15-45e0-8126-eb6b6034d069.png", "timestamp": "2024-02-15T20:52:23.911422+00:00"}}, {"id": "70c9156d-6882-4efb-8147-7025ad6e00fd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:37.485862+00:00", "label": "true", "label_explanation": "There is some water visible on the road surface, indicating that it has been raining recently. However, the water is not deep and does not appear to be causing any significant traffic disruptions.", "snapshot": {"id": "95be007b-6e15-45e0-8126-eb6b6034d069", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/95be007b-6e15-45e0-8126-eb6b6034d069.png", "timestamp": "2024-02-15T20:52:23.911422+00:00"}}, {"id": "9193b778-79ca-4b1c-8666-03321d01fca4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.471672+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "95be007b-6e15-45e0-8126-eb6b6034d069", "camera_id": "000794", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000794/95be007b-6e15-45e0-8126-eb6b6034d069.png", "timestamp": "2024-02-15T20:52:23.911422+00:00"}}]}, {"id": "000052", "name": "R. ATAULFO DE PAIVA X R. AFR\u00c2NIO DE MELO FRANCO", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983772, "longitude": -43.218038, "objects": ["image_description", "traffic", "rain", "water_level", "road_blockade", "image_corrupted"], "identifications": [{"id": "652957bf-fc89-4223-9ddd-8012fd8b7bfc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:05.162275+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "5090018d-20a5-4c74-9e6f-7b2349ae7420", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/5090018d-20a5-4c74-9e6f-7b2349ae7420.png", "timestamp": "2024-02-15T20:32:48.326323+00:00"}}, {"id": "c64698c2-8b82-4c61-b30b-4ed005e3eede", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:04.703915+00:00", "label": "true", "label_explanation": "The image is entirely grey, indicating significant data loss or corruption. The absence of any discernible visual elements prevents further analysis.", "snapshot": {"id": "5090018d-20a5-4c74-9e6f-7b2349ae7420", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/5090018d-20a5-4c74-9e6f-7b2349ae7420.png", "timestamp": "2024-02-15T20:32:48.326323+00:00"}}, {"id": "e922c026-495b-4ceb-be0c-ca5f88e2a84c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.597815+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "ff12bc5d-19c6-4b8b-8f09-9d9e97c9f757", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/ff12bc5d-19c6-4b8b-8f09-9d9e97c9f757.png", "timestamp": "2024-02-15T20:30:16.190677+00:00"}}, {"id": "1eef19ed-2bae-4f3e-a743-b5f514b6d977", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.248360+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color indicating data loss or corruption.", "snapshot": {"id": "ff12bc5d-19c6-4b8b-8f09-9d9e97c9f757", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/ff12bc5d-19c6-4b8b-8f09-9d9e97c9f757.png", "timestamp": "2024-02-15T20:30:16.190677+00:00"}}, {"id": "ce12614d-62eb-4f85-a3d1-f6903c8e7a4c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.332650+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "8ffc553e-9236-4a7a-a4c3-482af4b797bf", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/8ffc553e-9236-4a7a-a4c3-482af4b797bf.png", "timestamp": "2024-02-15T20:47:31.290652+00:00"}}, {"id": "8c3f2b5b-4687-48aa-92ce-10fdc205287f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.128222+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "8ffc553e-9236-4a7a-a4c3-482af4b797bf", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/8ffc553e-9236-4a7a-a4c3-482af4b797bf.png", "timestamp": "2024-02-15T20:47:31.290652+00:00"}}, {"id": "f59e3627-062f-4021-b76e-88bdfdef4136", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.556121+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "77ded76e-15f7-48c8-bf31-d5f6c5fb4154", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/77ded76e-15f7-48c8-bf31-d5f6c5fb4154.png", "timestamp": "2024-02-15T20:35:19.172605+00:00"}}, {"id": "45ad0bbc-e9b9-421a-aca5-a080cdfa37b8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.234782+00:00", "label": "true", "label_explanation": "The image is entirely grey, indicating significant data loss or corruption. No meaningful information can be extracted.", "snapshot": {"id": "77ded76e-15f7-48c8-bf31-d5f6c5fb4154", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/77ded76e-15f7-48c8-bf31-d5f6c5fb4154.png", "timestamp": "2024-02-15T20:35:19.172605+00:00"}}, {"id": "3e5ae3e7-bdaa-44bd-bddf-04bdf9c2be57", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.412169+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform grey color indicating data loss or corruption.", "snapshot": {"id": "82ee89e3-93f9-4ef2-a67e-0f049be48b3b", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/82ee89e3-93f9-4ef2-a67e-0f049be48b3b.png", "timestamp": "2024-02-15T20:37:49.867082+00:00"}}, {"id": "cde3d820-f930-4f59-a574-af0c60a34102", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.774675+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "82ee89e3-93f9-4ef2-a67e-0f049be48b3b", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/82ee89e3-93f9-4ef2-a67e-0f049be48b3b.png", "timestamp": "2024-02-15T20:37:49.867082+00:00"}}, {"id": "ed269d81-1dd9-4b6b-abf6-a3cf0c95df07", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.511284+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "1a8bc5a1-cacd-40a0-b14e-599aaef8a35f", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/1a8bc5a1-cacd-40a0-b14e-599aaef8a35f.png", "timestamp": "2024-02-15T20:40:21.502755+00:00"}}, {"id": "d5b114eb-3952-450f-b734-168fa7f76662", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.257888+00:00", "label": "true", "label_explanation": "The image is entirely grey, indicating significant data loss or corruption. No meaningful information can be extracted.", "snapshot": {"id": "1a8bc5a1-cacd-40a0-b14e-599aaef8a35f", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/1a8bc5a1-cacd-40a0-b14e-599aaef8a35f.png", "timestamp": "2024-02-15T20:40:21.502755+00:00"}}, {"id": "8041a03d-39cf-4400-82f1-4be046fb78b8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.531687+00:00", "label": "null", "label_explanation": "No visual elements can be discerned due to the uniform grey color.", "snapshot": {"id": "6d1ff87e-e49c-49fd-91dc-f100e65d481f", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/6d1ff87e-e49c-49fd-91dc-f100e65d481f.png", "timestamp": "2024-02-15T20:42:46.991857+00:00"}}, {"id": "06eb8f01-294b-42dc-9fe6-17d48bb7783b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.142663+00:00", "label": "true", "label_explanation": "The image is entirely grey with no visible content, indicating significant data loss or corruption.", "snapshot": {"id": "6d1ff87e-e49c-49fd-91dc-f100e65d481f", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/6d1ff87e-e49c-49fd-91dc-f100e65d481f.png", "timestamp": "2024-02-15T20:42:46.991857+00:00"}}, {"id": "e307c792-efbd-4faa-a963-cf650758be58", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.694882+00:00", "label": "null", "label_explanation": "No visual elements can be discerned due to the uniform grey color.", "snapshot": {"id": "a9f3b2cb-08a0-4b02-ac46-777089c338b5", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/a9f3b2cb-08a0-4b02-ac46-777089c338b5.png", "timestamp": "2024-02-15T20:45:09.250144+00:00"}}, {"id": "af7354cd-feea-4139-bb42-ddf72c76ed74", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.453341+00:00", "label": "true", "label_explanation": "The image is entirely grey with no visible content, indicating significant data loss or corruption.", "snapshot": {"id": "a9f3b2cb-08a0-4b02-ac46-777089c338b5", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/a9f3b2cb-08a0-4b02-ac46-777089c338b5.png", "timestamp": "2024-02-15T20:45:09.250144+00:00"}}, {"id": "9817e1f1-3b8f-4a2c-9481-0b0f6043d922", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.460942+00:00", "label": "null", "label_explanation": "The image is a solid grey color with no visible details.", "snapshot": {"id": "9c593948-119a-4749-b4ee-397feb7129a6", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/9c593948-119a-4749-b4ee-397feb7129a6.png", "timestamp": "2024-02-15T20:49:57.233450+00:00"}}, {"id": "18dd6ac4-0df2-4c1a-9755-784001187ad8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.085928+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "9c593948-119a-4749-b4ee-397feb7129a6", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/9c593948-119a-4749-b4ee-397feb7129a6.png", "timestamp": "2024-02-15T20:49:57.233450+00:00"}}, {"id": "5f9c2fef-9bcd-4133-83c1-641c85824e80", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:30.138925+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "6788cb43-dbdf-49b2-8962-a149d584e686", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/6788cb43-dbdf-49b2-8962-a149d584e686.png", "timestamp": "2024-02-15T20:52:21.129705+00:00"}}, {"id": "0594e7ab-30b5-4c67-a17f-94e41916ad30", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:29.927061+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "6788cb43-dbdf-49b2-8962-a149d584e686", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/6788cb43-dbdf-49b2-8962-a149d584e686.png", "timestamp": "2024-02-15T20:52:21.129705+00:00"}}, {"id": "ca96465c-c06b-48f8-93e7-424eda4e0d9d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.017699+00:00", "label": "free", "label_explanation": "It is not possible to tell if there are any road blockades.", "snapshot": {"id": "1a640b5b-1beb-491d-8ae7-af5f7af3b816", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/1a640b5b-1beb-491d-8ae7-af5f7af3b816.png", "timestamp": "2024-02-15T20:54:50.075940+00:00"}}, {"id": "2a96348b-405d-44e6-8c9d-bbfe5097f067", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.816342+00:00", "label": "easy", "label_explanation": "It is not possible to tell the traffic conditions.", "snapshot": {"id": "1a640b5b-1beb-491d-8ae7-af5f7af3b816", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/1a640b5b-1beb-491d-8ae7-af5f7af3b816.png", "timestamp": "2024-02-15T20:54:50.075940+00:00"}}, {"id": "0fd48a6e-5a6d-4b15-b550-8d5fdf59265f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.544916+00:00", "label": "low", "label_explanation": "It is not possible to tell the water level.", "snapshot": {"id": "1a640b5b-1beb-491d-8ae7-af5f7af3b816", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/1a640b5b-1beb-491d-8ae7-af5f7af3b816.png", "timestamp": "2024-02-15T20:54:50.075940+00:00"}}, {"id": "7f90e346-157f-4e25-b884-99a0f1aff976", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:58.824104+00:00", "label": "true", "label_explanation": "The image is corrupted. There is no visible content.", "snapshot": {"id": "1a640b5b-1beb-491d-8ae7-af5f7af3b816", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/1a640b5b-1beb-491d-8ae7-af5f7af3b816.png", "timestamp": "2024-02-15T20:54:50.075940+00:00"}}, {"id": "b6fd1498-1cd6-44d3-87df-633ea6805682", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.302082+00:00", "label": "false", "label_explanation": "It is not possible to tell if it is raining.", "snapshot": {"id": "1a640b5b-1beb-491d-8ae7-af5f7af3b816", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/1a640b5b-1beb-491d-8ae7-af5f7af3b816.png", "timestamp": "2024-02-15T20:54:50.075940+00:00"}}, {"id": "a210a52c-b674-47d5-83d0-1f03c8b4c329", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.093191+00:00", "label": "null", "label_explanation": "There is no image to describe.", "snapshot": {"id": "1a640b5b-1beb-491d-8ae7-af5f7af3b816", "camera_id": "000052", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000052/1a640b5b-1beb-491d-8ae7-af5f7af3b816.png", "timestamp": "2024-02-15T20:54:50.075940+00:00"}}]}, {"id": "001515", "name": "PRA\u00c7A AQUIDAUANA, 1-908 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85049, "longitude": -43.30943, "objects": ["traffic", "image_description", "road_blockade", "image_corrupted", "rain", "water_level"], "identifications": [{"id": "c94d10d7-5e0c-4a2a-bf01-45abc84743d1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.387688+00:00", "label": "null", "label_explanation": "The image is a CCTV image of an urban road. The road is wide and straight, with two lanes of traffic in each direction. There are trees on either side of the road, and buildings in the background.", "snapshot": {"id": "53747c20-8cb4-46c8-8d0a-c1ec37c8149e", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/53747c20-8cb4-46c8-8d0a-c1ec37c8149e.png", "timestamp": "2024-02-15T20:30:17.173040+00:00"}}, {"id": "5fc32e59-b8d8-432d-87ff-6ad48f151360", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.880219+00:00", "label": "false", "label_explanation": "It is not raining in the image.", "snapshot": {"id": "53747c20-8cb4-46c8-8d0a-c1ec37c8149e", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/53747c20-8cb4-46c8-8d0a-c1ec37c8149e.png", "timestamp": "2024-02-15T20:30:17.173040+00:00"}}, {"id": "5b930764-80a5-4a46-a6dc-c6a9dd8d4146", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.521148+00:00", "label": "moderate", "label_explanation": "The traffic is moderate.", "snapshot": {"id": "53747c20-8cb4-46c8-8d0a-c1ec37c8149e", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/53747c20-8cb4-46c8-8d0a-c1ec37c8149e.png", "timestamp": "2024-02-15T20:30:17.173040+00:00"}}, {"id": "c7f59931-7f5b-4788-915b-7e895d62b84f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.766066+00:00", "label": "free", "label_explanation": "There are no road blockades.", "snapshot": {"id": "53747c20-8cb4-46c8-8d0a-c1ec37c8149e", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/53747c20-8cb4-46c8-8d0a-c1ec37c8149e.png", "timestamp": "2024-02-15T20:30:17.173040+00:00"}}, {"id": "24607e38-23b2-403a-88b4-a1fa18a2356a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.864472+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "53747c20-8cb4-46c8-8d0a-c1ec37c8149e", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/53747c20-8cb4-46c8-8d0a-c1ec37c8149e.png", "timestamp": "2024-02-15T20:30:17.173040+00:00"}}, {"id": "2201900b-4f36-4edb-9818-84c6b2ff8586", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.124563+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "53747c20-8cb4-46c8-8d0a-c1ec37c8149e", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/53747c20-8cb4-46c8-8d0a-c1ec37c8149e.png", "timestamp": "2024-02-15T20:30:17.173040+00:00"}}, {"id": "5d91ce0c-bccc-43e1-8c9c-2b638e377b41", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:08.076137+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "0f9bd93f-982b-4ec4-9371-b9e23768f6d4", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/0f9bd93f-982b-4ec4-9371-b9e23768f6d4.png", "timestamp": "2024-02-15T20:32:52.124959+00:00"}}, {"id": "6151d0ec-567f-40dc-bda9-be88e4f5ec0f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:07.727988+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and distorted shapes, making it impossible to analyze.", "snapshot": {"id": "0f9bd93f-982b-4ec4-9371-b9e23768f6d4", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/0f9bd93f-982b-4ec4-9371-b9e23768f6d4.png", "timestamp": "2024-02-15T20:32:52.124959+00:00"}}, {"id": "eb493f79-35fe-481c-aeb2-534c0c24a375", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.289396+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road, allowing for the free flow of traffic.", "snapshot": {"id": "874559cf-3975-435c-ab11-ec983615bd90", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/874559cf-3975-435c-ab11-ec983615bd90.png", "timestamp": "2024-02-15T20:35:20.455359+00:00"}}, {"id": "0c3a8977-b830-435e-b3ad-3519329e5ffb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.024362+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "874559cf-3975-435c-ab11-ec983615bd90", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/874559cf-3975-435c-ab11-ec983615bd90.png", "timestamp": "2024-02-15T20:35:20.455359+00:00"}}, {"id": "85d2fcdd-f919-42b5-9013-fd1c2c07ea32", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.909039+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the vehicle capturing the scene.", "snapshot": {"id": "874559cf-3975-435c-ab11-ec983615bd90", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/874559cf-3975-435c-ab11-ec983615bd90.png", "timestamp": "2024-02-15T20:35:20.455359+00:00"}}, {"id": "459ff400-404d-43d2-8af6-85b10b605756", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.538338+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "874559cf-3975-435c-ab11-ec983615bd90", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/874559cf-3975-435c-ab11-ec983615bd90.png", "timestamp": "2024-02-15T20:35:20.455359+00:00"}}, {"id": "b35a1e2d-ef76-4e55-9ee0-9d41009499aa", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:37.572173+00:00", "label": "low", "label_explanation": "While the road surface is wet, there are no significant puddles or water accumulation visible on the road.", "snapshot": {"id": "874559cf-3975-435c-ab11-ec983615bd90", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/874559cf-3975-435c-ab11-ec983615bd90.png", "timestamp": "2024-02-15T20:35:20.455359+00:00"}}, {"id": "abe21ac3-a6ad-4c62-b299-928e64dc2bf7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.517608+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road surface is wet. There are several vehicles on the road, including cars, buses, and trucks. Pedestrians are also visible, walking on the sidewalks.", "snapshot": {"id": "874559cf-3975-435c-ab11-ec983615bd90", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/874559cf-3975-435c-ab11-ec983615bd90.png", "timestamp": "2024-02-15T20:35:20.455359+00:00"}}, {"id": "e1731e20-0032-4d64-b624-6e5342cff7ce", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.636008+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is rush hour, and there is moderate traffic on the road. The weather is cloudy, and the road is wet from recent rain. There are several cars, buses, and trucks on the road, and the traffic is moving slowly due to the wet conditions.", "snapshot": {"id": "14d6b366-594a-408e-a04c-d7222cfa9bb5", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/14d6b366-594a-408e-a04c-d7222cfa9bb5.png", "timestamp": "2024-02-15T20:40:25.323966+00:00"}}, {"id": "d2efb92d-97f1-4de8-abf1-805b064b3b52", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.096792+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "14d6b366-594a-408e-a04c-d7222cfa9bb5", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/14d6b366-594a-408e-a04c-d7222cfa9bb5.png", "timestamp": "2024-02-15T20:40:25.323966+00:00"}}, {"id": "4d4d7a62-282f-4bcd-998a-de0497a9ff36", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.914924+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "14d6b366-594a-408e-a04c-d7222cfa9bb5", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/14d6b366-594a-408e-a04c-d7222cfa9bb5.png", "timestamp": "2024-02-15T20:40:25.323966+00:00"}}, {"id": "c9da74af-4bb2-4cb6-b115-b93a089ff6c7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.623507+00:00", "label": "moderate", "label_explanation": "The traffic is moving slowly due to the wet conditions, but there are no major obstructions.", "snapshot": {"id": "14d6b366-594a-408e-a04c-d7222cfa9bb5", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/14d6b366-594a-408e-a04c-d7222cfa9bb5.png", "timestamp": "2024-02-15T20:40:25.323966+00:00"}}, {"id": "cc4308bc-5915-4320-89a2-57b80cfc8154", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.320517+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "14d6b366-594a-408e-a04c-d7222cfa9bb5", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/14d6b366-594a-408e-a04c-d7222cfa9bb5.png", "timestamp": "2024-02-15T20:40:25.323966+00:00"}}, {"id": "9619de16-658c-46c8-af00-6d1cd461ed6c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.363124+00:00", "label": "low", "label_explanation": "There is no standing water on the road, only wet pavement.", "snapshot": {"id": "14d6b366-594a-408e-a04c-d7222cfa9bb5", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/14d6b366-594a-408e-a04c-d7222cfa9bb5.png", "timestamp": "2024-02-15T20:40:25.323966+00:00"}}, {"id": "49ca0969-75cc-4d77-b1b9-7c45c30cb5cd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:05.393284+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "141f348a-cd63-4d26-8761-162bb8d6ed0a", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/141f348a-cd63-4d26-8761-162bb8d6ed0a.png", "timestamp": "2024-02-15T20:37:51.427516+00:00"}}, {"id": "89ce611e-3a1f-4937-a700-4293a8bb2223", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:05.090384+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with uniform grey color replacing the visual data. This corruption makes it impossible to assess the road conditions or traffic flow.", "snapshot": {"id": "141f348a-cd63-4d26-8761-162bb8d6ed0a", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/141f348a-cd63-4d26-8761-162bb8d6ed0a.png", "timestamp": "2024-02-15T20:37:51.427516+00:00"}}, {"id": "e5051d40-8792-4343-a146-3d70dd6dec8c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.255597+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "eb3139fc-fe2a-4275-be80-12a5352befb8", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/eb3139fc-fe2a-4275-be80-12a5352befb8.png", "timestamp": "2024-02-15T20:42:50.903140+00:00"}}, {"id": "9e9e0745-f23e-4b88-b899-4ccffc2ee8a8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.651061+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "eb3139fc-fe2a-4275-be80-12a5352befb8", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/eb3139fc-fe2a-4275-be80-12a5352befb8.png", "timestamp": "2024-02-15T20:42:50.903140+00:00"}}, {"id": "f36a9a7c-b9df-4b50-8f6d-d21e32bda8bd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.598778+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "fa281d04-2e9a-44b0-93f2-b1e771f86afb", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/fa281d04-2e9a-44b0-93f2-b1e771f86afb.png", "timestamp": "2024-02-15T20:47:36.178767+00:00"}}, {"id": "4f30dae2-4d11-4868-9e59-cac26f7a8d22", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.390355+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "fa281d04-2e9a-44b0-93f2-b1e771f86afb", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/fa281d04-2e9a-44b0-93f2-b1e771f86afb.png", "timestamp": "2024-02-15T20:47:36.178767+00:00"}}, {"id": "8563a3f3-c6eb-4963-b6db-15c42b2abc1a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.192729+00:00", "label": "true", "label_explanation": "The road is wet, and there are water droplets on the camera lens, indicating that it is raining.", "snapshot": {"id": "fa281d04-2e9a-44b0-93f2-b1e771f86afb", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/fa281d04-2e9a-44b0-93f2-b1e771f86afb.png", "timestamp": "2024-02-15T20:47:36.178767+00:00"}}, {"id": "4d33bfb6-9eff-4e81-bf16-1faec3e2ad75", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.996338+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with traffic lights, buildings, and trees on either side. The weather appears to be cloudy and wet, as the road is visibly wet and there are water droplets on the camera lens.", "snapshot": {"id": "fa281d04-2e9a-44b0-93f2-b1e771f86afb", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/fa281d04-2e9a-44b0-93f2-b1e771f86afb.png", "timestamp": "2024-02-15T20:47:36.178767+00:00"}}, {"id": "6259ef7d-6f93-4d9a-b892-e7d7aafa2787", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:00.793066+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "fa281d04-2e9a-44b0-93f2-b1e771f86afb", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/fa281d04-2e9a-44b0-93f2-b1e771f86afb.png", "timestamp": "2024-02-15T20:47:36.178767+00:00"}}, {"id": "2ef39d9b-c200-4935-8172-a207a81a2325", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:59.712477+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "fa281d04-2e9a-44b0-93f2-b1e771f86afb", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/fa281d04-2e9a-44b0-93f2-b1e771f86afb.png", "timestamp": "2024-02-15T20:47:36.178767+00:00"}}, {"id": "449e225e-12fc-4c8b-8d52-e9feab536b43", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.651949+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry.", "snapshot": {"id": "0b29aee0-fc58-4617-9599-b45756414a93", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/0b29aee0-fc58-4617-9599-b45756414a93.png", "timestamp": "2024-02-15T20:45:11.919598+00:00"}}, {"id": "e10118fc-5906-48d3-9fcd-7174e1f216dd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.998690+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with cars, buses, and pedestrians. It is daytime and the weather appears cloudy with a mix of sunlight and shadows on the street.", "snapshot": {"id": "0b29aee0-fc58-4617-9599-b45756414a93", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/0b29aee0-fc58-4617-9599-b45756414a93.png", "timestamp": "2024-02-15T20:45:11.919598+00:00"}}, {"id": "1327062a-e9e6-4c03-a461-da85f019f6a4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.900851+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "0b29aee0-fc58-4617-9599-b45756414a93", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/0b29aee0-fc58-4617-9599-b45756414a93.png", "timestamp": "2024-02-15T20:45:11.919598+00:00"}}, {"id": "bb2a6f66-7f9f-49b5-bc58-5547dc974ee1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.789214+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0b29aee0-fc58-4617-9599-b45756414a93", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/0b29aee0-fc58-4617-9599-b45756414a93.png", "timestamp": "2024-02-15T20:45:11.919598+00:00"}}, {"id": "a020d44c-693d-45a7-b10e-e89c880dea1e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.152516+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades. Traffic is able to flow freely in both directions.", "snapshot": {"id": "0b29aee0-fc58-4617-9599-b45756414a93", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/0b29aee0-fc58-4617-9599-b45756414a93.png", "timestamp": "2024-02-15T20:45:11.919598+00:00"}}, {"id": "7e04d7bc-a4b3-457a-ad99-538a9004d173", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.288152+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also small puddles of water on the road.", "snapshot": {"id": "0b29aee0-fc58-4617-9599-b45756414a93", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/0b29aee0-fc58-4617-9599-b45756414a93.png", "timestamp": "2024-02-15T20:45:11.919598+00:00"}}, {"id": "50d2a8eb-1017-408c-9a57-bc56db3082a9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.695483+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a central median. There are several vehicles on the road, including cars, buses, and motorcycles. There are also pedestrians on the sidewalk.", "snapshot": {"id": "8d6e8452-6ea5-475c-bae4-f5fb669cb3c6", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/8d6e8452-6ea5-475c-bae4-f5fb669cb3c6.png", "timestamp": "2024-02-15T20:54:53.513793+00:00"}}, {"id": "b6024b2a-a537-430b-a79c-cd649610a595", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.855128+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "8d6e8452-6ea5-475c-bae4-f5fb669cb3c6", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/8d6e8452-6ea5-475c-bae4-f5fb669cb3c6.png", "timestamp": "2024-02-15T20:54:53.513793+00:00"}}, {"id": "17dd89d7-a113-4848-8877-d4bc35a4640b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.508396+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8d6e8452-6ea5-475c-bae4-f5fb669cb3c6", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/8d6e8452-6ea5-475c-bae4-f5fb669cb3c6.png", "timestamp": "2024-02-15T20:54:53.513793+00:00"}}, {"id": "7a71e6fa-509a-4ae6-974b-5f01b8c6a48b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.582794+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "8d6e8452-6ea5-475c-bae4-f5fb669cb3c6", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/8d6e8452-6ea5-475c-bae4-f5fb669cb3c6.png", "timestamp": "2024-02-15T20:54:53.513793+00:00"}}, {"id": "01d5538d-cef0-401c-834d-a5225c825c43", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.283061+00:00", "label": "low", "label_explanation": "There is some water on the road, but it is not enough to cause any significant problems for traffic.", "snapshot": {"id": "8d6e8452-6ea5-475c-bae4-f5fb669cb3c6", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/8d6e8452-6ea5-475c-bae4-f5fb669cb3c6.png", "timestamp": "2024-02-15T20:54:53.513793+00:00"}}, {"id": "4c1019c2-0a76-4aca-9a96-8bbe0bf12b2f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.982721+00:00", "label": "true", "label_explanation": "The road surface is wet, and there is water on the sidewalk. It appears to have been raining recently.", "snapshot": {"id": "8d6e8452-6ea5-475c-bae4-f5fb669cb3c6", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/8d6e8452-6ea5-475c-bae4-f5fb669cb3c6.png", "timestamp": "2024-02-15T20:54:53.513793+00:00"}}, {"id": "cce62533-586a-44c4-9db8-0b2060642bc7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.068400+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "ed15327e-14fa-4011-a142-0d0814c02ad2", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/ed15327e-14fa-4011-a142-0d0814c02ad2.png", "timestamp": "2024-02-15T20:50:02.200837+00:00"}}, {"id": "2b12754e-cc43-4796-aa68-e96f70151b19", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.779381+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles of water. This indicates that it has been raining recently.", "snapshot": {"id": "ed15327e-14fa-4011-a142-0d0814c02ad2", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/ed15327e-14fa-4011-a142-0d0814c02ad2.png", "timestamp": "2024-02-15T20:50:02.200837+00:00"}}, {"id": "facb4e23-d051-4d32-a60e-8c5aaf238b7c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.262118+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ed15327e-14fa-4011-a142-0d0814c02ad2", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/ed15327e-14fa-4011-a142-0d0814c02ad2.png", "timestamp": "2024-02-15T20:50:02.200837+00:00"}}, {"id": "f35ae866-a6e8-4513-a472-ad82e2bd43bb", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.568338+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable in all directions.", "snapshot": {"id": "ed15327e-14fa-4011-a142-0d0814c02ad2", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/ed15327e-14fa-4011-a142-0d0814c02ad2.png", "timestamp": "2024-02-15T20:50:02.200837+00:00"}}, {"id": "9dc60c01-09d8-46ed-886c-558147b6469a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.361152+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move freely. There are no major delays or congestion.", "snapshot": {"id": "ed15327e-14fa-4011-a142-0d0814c02ad2", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/ed15327e-14fa-4011-a142-0d0814c02ad2.png", "timestamp": "2024-02-15T20:50:02.200837+00:00"}}, {"id": "ee5cd281-65c4-47c4-af39-caaa7d464e05", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.584941+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, crossing the intersection. The road surface is wet, and there are some small puddles of water.", "snapshot": {"id": "ed15327e-14fa-4011-a142-0d0814c02ad2", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/ed15327e-14fa-4011-a142-0d0814c02ad2.png", "timestamp": "2024-02-15T20:50:02.200837+00:00"}}, {"id": "0522ef36-0f35-490b-8d56-6b0013497fa2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.171408+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "eddcef93-25b9-4ad6-91bd-0c732465162b", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/eddcef93-25b9-4ad6-91bd-0c732465162b.png", "timestamp": "2024-02-15T20:52:24.353065+00:00"}}, {"id": "8020f520-d492-4b5a-ad04-3f8088fffd57", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.370254+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "eddcef93-25b9-4ad6-91bd-0c732465162b", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/eddcef93-25b9-4ad6-91bd-0c732465162b.png", "timestamp": "2024-02-15T20:52:24.353065+00:00"}}, {"id": "7d438e87-df32-43fc-af08-3b1e81a75dc2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.566376+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "eddcef93-25b9-4ad6-91bd-0c732465162b", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/eddcef93-25b9-4ad6-91bd-0c732465162b.png", "timestamp": "2024-02-15T20:52:24.353065+00:00"}}, {"id": "efe16e31-8147-467e-96f7-9a772a5df643", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.863042+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "eddcef93-25b9-4ad6-91bd-0c732465162b", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/eddcef93-25b9-4ad6-91bd-0c732465162b.png", "timestamp": "2024-02-15T20:52:24.353065+00:00"}}, {"id": "9c6f0296-297b-4db6-beee-82cba1e796c4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.484003+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be clear.", "snapshot": {"id": "eddcef93-25b9-4ad6-91bd-0c732465162b", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/eddcef93-25b9-4ad6-91bd-0c732465162b.png", "timestamp": "2024-02-15T20:52:24.353065+00:00"}}, {"id": "898dfd24-1287-480c-8eea-d6f98c325c9d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.243166+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "eddcef93-25b9-4ad6-91bd-0c732465162b", "camera_id": "001515", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001515/eddcef93-25b9-4ad6-91bd-0c732465162b.png", "timestamp": "2024-02-15T20:52:24.353065+00:00"}}]}, {"id": "001172", "name": "RUA EST\u00c1CIO DE S\u00c1, 165 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.33.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9146477, "longitude": -43.20683221, "objects": ["image_corrupted", "road_blockade", "image_description", "rain", "traffic", "water_level"], "identifications": [{"id": "b4a91c29-36b6-4a40-8cc1-bee316801f6b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.596278+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "92c90574-d41d-4f46-b679-79127d57b7b3", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/92c90574-d41d-4f46-b679-79127d57b7b3.png", "timestamp": "2024-02-15T20:30:18.870739+00:00"}}, {"id": "661ed54d-9066-42ea-8421-1328d40a7c03", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.248620+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform green color replacing the visual data.", "snapshot": {"id": "92c90574-d41d-4f46-b679-79127d57b7b3", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/92c90574-d41d-4f46-b679-79127d57b7b3.png", "timestamp": "2024-02-15T20:30:18.870739+00:00"}}, {"id": "6e282ad8-6db6-4289-a1f0-453f3ebab357", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.182493+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not impede traffic flow significantly.", "snapshot": {"id": "ca2bff5a-f78f-4613-90fe-9b378714f87f", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/ca2bff5a-f78f-4613-90fe-9b378714f87f.png", "timestamp": "2024-02-15T20:45:12.643989+00:00"}}, {"id": "4a57995a-ddf1-4bd1-a112-98ea59257ffd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.358011+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ca2bff5a-f78f-4613-90fe-9b378714f87f", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/ca2bff5a-f78f-4613-90fe-9b378714f87f.png", "timestamp": "2024-02-15T20:45:12.643989+00:00"}}, {"id": "4078fd8c-0658-46cc-b17f-90b9d9331279", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.673090+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with traffic lights, signs, and various vehicles.", "snapshot": {"id": "ca2bff5a-f78f-4613-90fe-9b378714f87f", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/ca2bff5a-f78f-4613-90fe-9b378714f87f.png", "timestamp": "2024-02-15T20:45:12.643989+00:00"}}, {"id": "7eaa5432-efd4-499a-a123-2754e36aa8cd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.504547+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "ca2bff5a-f78f-4613-90fe-9b378714f87f", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/ca2bff5a-f78f-4613-90fe-9b378714f87f.png", "timestamp": "2024-02-15T20:45:12.643989+00:00"}}, {"id": "7eda72b8-60ea-47b9-a339-b89a6066a5b6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.731630+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "ca2bff5a-f78f-4613-90fe-9b378714f87f", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/ca2bff5a-f78f-4613-90fe-9b378714f87f.png", "timestamp": "2024-02-15T20:45:12.643989+00:00"}}, {"id": "571f6f56-8bd6-41b9-8212-1e9fdbbf7c0e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.899061+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "ca2bff5a-f78f-4613-90fe-9b378714f87f", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/ca2bff5a-f78f-4613-90fe-9b378714f87f.png", "timestamp": "2024-02-15T20:45:12.643989+00:00"}}, {"id": "935c29ec-0f8c-43cf-8cf7-0cc65f13f8f0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.034576+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "66d659d1-eefb-40d1-b073-ee22afd114fc", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/66d659d1-eefb-40d1-b073-ee22afd114fc.png", "timestamp": "2024-02-15T20:32:52.154538+00:00"}}, {"id": "89659529-d4de-4e73-a79f-aa59e55435af", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:19.607738+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "66d659d1-eefb-40d1-b073-ee22afd114fc", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/66d659d1-eefb-40d1-b073-ee22afd114fc.png", "timestamp": "2024-02-15T20:32:52.154538+00:00"}}, {"id": "20f49633-85c5-40bd-8f5d-5b6af02e495e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:17.555896+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears cloudy with a wet road surface.", "snapshot": {"id": "66d659d1-eefb-40d1-b073-ee22afd114fc", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/66d659d1-eefb-40d1-b073-ee22afd114fc.png", "timestamp": "2024-02-15T20:32:52.154538+00:00"}}, {"id": "4b9446cb-1acc-4f1a-90fc-3505db0472b4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.499444+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "66d659d1-eefb-40d1-b073-ee22afd114fc", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/66d659d1-eefb-40d1-b073-ee22afd114fc.png", "timestamp": "2024-02-15T20:32:52.154538+00:00"}}, {"id": "0e2155bf-8ff2-4578-8356-21cc8afd1968", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:19.023027+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "66d659d1-eefb-40d1-b073-ee22afd114fc", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/66d659d1-eefb-40d1-b073-ee22afd114fc.png", "timestamp": "2024-02-15T20:32:52.154538+00:00"}}, {"id": "9381f0f1-06c8-4b67-9beb-92c453ff0320", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.369519+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "66d659d1-eefb-40d1-b073-ee22afd114fc", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/66d659d1-eefb-40d1-b073-ee22afd114fc.png", "timestamp": "2024-02-15T20:32:52.154538+00:00"}}, {"id": "4c0061da-617c-437d-8ae0-f2f3024d5841", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.324662+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few puddles on the surface.", "snapshot": {"id": "7c417201-10f9-44fe-b8d0-6ad834c11b39", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/7c417201-10f9-44fe-b8d0-6ad834c11b39.png", "timestamp": "2024-02-15T20:35:22.025005+00:00"}}, {"id": "2438b1b3-f038-4a6c-a5dd-f6ca82a85f68", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:39.793824+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "7c417201-10f9-44fe-b8d0-6ad834c11b39", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/7c417201-10f9-44fe-b8d0-6ad834c11b39.png", "timestamp": "2024-02-15T20:35:22.025005+00:00"}}, {"id": "a07904cf-e219-49ec-b9a1-5a96c9b92e63", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.014266+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are some puddles on the surface.", "snapshot": {"id": "7c417201-10f9-44fe-b8d0-6ad834c11b39", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/7c417201-10f9-44fe-b8d0-6ad834c11b39.png", "timestamp": "2024-02-15T20:35:22.025005+00:00"}}, {"id": "5bdf421b-fd2a-4608-94de-cccfcd9470af", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:37.432965+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a traffic light at the intersection. There are several vehicles on the road, including cars, buses, and motorcycles. The road is wet from recent rain, and there are some puddles on the surface. The sidewalks on either side of the road are lined with trees.", "snapshot": {"id": "7c417201-10f9-44fe-b8d0-6ad834c11b39", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/7c417201-10f9-44fe-b8d0-6ad834c11b39.png", "timestamp": "2024-02-15T20:35:22.025005+00:00"}}, {"id": "a7d6ae4e-4686-4fde-b566-be9cf5e07873", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.976672+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "7c417201-10f9-44fe-b8d0-6ad834c11b39", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/7c417201-10f9-44fe-b8d0-6ad834c11b39.png", "timestamp": "2024-02-15T20:35:22.025005+00:00"}}, {"id": "9c18e2f7-74af-4f23-bb66-90f9e568da58", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.820678+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7c417201-10f9-44fe-b8d0-6ad834c11b39", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/7c417201-10f9-44fe-b8d0-6ad834c11b39.png", "timestamp": "2024-02-15T20:35:22.025005+00:00"}}, {"id": "7f9c954a-6439-435e-bc17-4f77dba80ee3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:05.056588+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "619162f7-ce47-4802-ba46-02ae8d20a482", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/619162f7-ce47-4802-ba46-02ae8d20a482.png", "timestamp": "2024-02-15T20:37:52.161112+00:00"}}, {"id": "b0277a82-18d0-4ed7-bc10-dcbde7af0d43", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:04.434983+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "619162f7-ce47-4802-ba46-02ae8d20a482", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/619162f7-ce47-4802-ba46-02ae8d20a482.png", "timestamp": "2024-02-15T20:37:52.161112+00:00"}}, {"id": "3fe3b1ea-5a56-4aaf-83e5-6c0b4f16ed4f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.632415+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear, and there are no obstructions that would impede traffic.", "snapshot": {"id": "2ab14109-28b9-4830-a3ad-c716a4f2ffc8", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/2ab14109-28b9-4830-a3ad-c716a4f2ffc8.png", "timestamp": "2024-02-15T20:40:24.987000+00:00"}}, {"id": "12c04bc7-a513-403b-96ac-e43c5ced58a0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.090118+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not cover a significant portion of the road surface.", "snapshot": {"id": "2ab14109-28b9-4830-a3ad-c716a4f2ffc8", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/2ab14109-28b9-4830-a3ad-c716a4f2ffc8.png", "timestamp": "2024-02-15T20:40:24.987000+00:00"}}, {"id": "91f933ae-fc8a-429d-a0b0-7d438c341b13", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.424241+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a bus stop on the left side. There are several cars on the road, and the traffic appears to be moderate. There are also trees and buildings in the background.", "snapshot": {"id": "2ab14109-28b9-4830-a3ad-c716a4f2ffc8", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/2ab14109-28b9-4830-a3ad-c716a4f2ffc8.png", "timestamp": "2024-02-15T20:40:24.987000+00:00"}}, {"id": "ed76473a-6431-46fb-bdc6-f368473a323e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.125440+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2ab14109-28b9-4830-a3ad-c716a4f2ffc8", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/2ab14109-28b9-4830-a3ad-c716a4f2ffc8.png", "timestamp": "2024-02-15T20:40:24.987000+00:00"}}, {"id": "62518f6c-987d-4ed7-bfd9-6461ad7b8dcd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:40.332646+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several cars on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "2ab14109-28b9-4830-a3ad-c716a4f2ffc8", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/2ab14109-28b9-4830-a3ad-c716a4f2ffc8.png", "timestamp": "2024-02-15T20:40:24.987000+00:00"}}, {"id": "68daed7f-7d6f-4c2f-99da-1fe06d7493ba", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.654314+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some puddles on the road. However, the rain does not appear to be heavy.", "snapshot": {"id": "2ab14109-28b9-4830-a3ad-c716a4f2ffc8", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/2ab14109-28b9-4830-a3ad-c716a4f2ffc8.png", "timestamp": "2024-02-15T20:40:24.987000+00:00"}}, {"id": "e1907b08-c41e-42e9-ae87-0b4b94580bff", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.043920+00:00", "label": "free", "label_explanation": "It is not possible to tell whether there are any road blockades.", "snapshot": {"id": "003c211e-7dc4-4a1f-9591-d4a0516d3e44", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/003c211e-7dc4-4a1f-9591-d4a0516d3e44.png", "timestamp": "2024-02-15T20:42:50.049158+00:00"}}, {"id": "dc9e0f08-5426-4425-8378-c6236b1c4a8b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:59.652984+00:00", "label": "false", "label_explanation": "It is not possible to tell whether it is raining or not.", "snapshot": {"id": "003c211e-7dc4-4a1f-9591-d4a0516d3e44", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/003c211e-7dc4-4a1f-9591-d4a0516d3e44.png", "timestamp": "2024-02-15T20:42:50.049158+00:00"}}, {"id": "d2ab087f-19c3-45d0-9e8c-5b7bb982f073", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:00.501949+00:00", "label": "easy", "label_explanation": "It is not possible to tell what the traffic conditions are.", "snapshot": {"id": "003c211e-7dc4-4a1f-9591-d4a0516d3e44", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/003c211e-7dc4-4a1f-9591-d4a0516d3e44.png", "timestamp": "2024-02-15T20:42:50.049158+00:00"}}, {"id": "73b1633f-aeab-4d3b-8fe1-6529e5680944", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:59.443180+00:00", "label": "null", "label_explanation": "The image is a CCTV image of an urban road.", "snapshot": {"id": "003c211e-7dc4-4a1f-9591-d4a0516d3e44", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/003c211e-7dc4-4a1f-9591-d4a0516d3e44.png", "timestamp": "2024-02-15T20:42:50.049158+00:00"}}, {"id": "22960b04-e36b-4532-9883-3ea1f91bd4f8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:59.250628+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "003c211e-7dc4-4a1f-9591-d4a0516d3e44", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/003c211e-7dc4-4a1f-9591-d4a0516d3e44.png", "timestamp": "2024-02-15T20:42:50.049158+00:00"}}, {"id": "87cc6bd2-d65a-439f-929e-17e9e0aace8b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:00.186174+00:00", "label": "low", "label_explanation": "It is not possible to tell what the water level is.", "snapshot": {"id": "003c211e-7dc4-4a1f-9591-d4a0516d3e44", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/003c211e-7dc4-4a1f-9591-d4a0516d3e44.png", "timestamp": "2024-02-15T20:42:50.049158+00:00"}}, {"id": "5e886b15-b05d-4758-8e96-8c82a41874d5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:47.513584+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and passable in both directions.", "snapshot": {"id": "4868da2a-9941-40e7-b70f-22d73fdc9d3a", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/4868da2a-9941-40e7-b70f-22d73fdc9d3a.png", "timestamp": "2024-02-15T20:47:35.367446+00:00"}}, {"id": "bcfe4882-58a9-4e5c-a3e8-e93d7b34d129", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:46.809871+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "4868da2a-9941-40e7-b70f-22d73fdc9d3a", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/4868da2a-9941-40e7-b70f-22d73fdc9d3a.png", "timestamp": "2024-02-15T20:47:35.367446+00:00"}}, {"id": "095376d4-1da0-4461-bfbd-8ddf93322b73", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:46.018368+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a traffic light at the intersection. There are several vehicles on the road, including cars, buses, and motorcycles. The road is lined with trees and buildings.", "snapshot": {"id": "4868da2a-9941-40e7-b70f-22d73fdc9d3a", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/4868da2a-9941-40e7-b70f-22d73fdc9d3a.png", "timestamp": "2024-02-15T20:47:35.367446+00:00"}}, {"id": "2a5d4449-fd7f-4ee4-8f4a-7f622f96c8c7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:47.264872+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are all moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "4868da2a-9941-40e7-b70f-22d73fdc9d3a", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/4868da2a-9941-40e7-b70f-22d73fdc9d3a.png", "timestamp": "2024-02-15T20:47:35.367446+00:00"}}, {"id": "5041b437-fa46-407e-9dcd-381e30e6355d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:46.349902+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "4868da2a-9941-40e7-b70f-22d73fdc9d3a", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/4868da2a-9941-40e7-b70f-22d73fdc9d3a.png", "timestamp": "2024-02-15T20:47:35.367446+00:00"}}, {"id": "1c2eec20-9721-4ad0-9d3a-d226986e7375", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.634187+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4868da2a-9941-40e7-b70f-22d73fdc9d3a", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/4868da2a-9941-40e7-b70f-22d73fdc9d3a.png", "timestamp": "2024-02-15T20:47:35.367446+00:00"}}, {"id": "19d7f826-dd5f-46da-9de3-2c98f7d7feec", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.060350+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "49ba31be-a914-4a64-b3bf-6a2b39d8d1af", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/49ba31be-a914-4a64-b3bf-6a2b39d8d1af.png", "timestamp": "2024-02-15T20:52:28.651488+00:00"}}, {"id": "7c0830af-1234-4a88-b95f-162123bc3947", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:39.306619+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with traffic lights, cars, and pedestrians crossing the road. It is daytime and the weather appears cloudy.", "snapshot": {"id": "49ba31be-a914-4a64-b3bf-6a2b39d8d1af", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/49ba31be-a914-4a64-b3bf-6a2b39d8d1af.png", "timestamp": "2024-02-15T20:52:28.651488+00:00"}}, {"id": "f1cd7ab3-faca-4aa4-bab2-9890f3c35f27", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:39.073190+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "49ba31be-a914-4a64-b3bf-6a2b39d8d1af", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/49ba31be-a914-4a64-b3bf-6a2b39d8d1af.png", "timestamp": "2024-02-15T20:52:28.651488+00:00"}}, {"id": "580138d0-11ec-4ec2-870f-4fc615e61084", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.831652+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "49ba31be-a914-4a64-b3bf-6a2b39d8d1af", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/49ba31be-a914-4a64-b3bf-6a2b39d8d1af.png", "timestamp": "2024-02-15T20:52:28.651488+00:00"}}, {"id": "daf0f912-b078-4f15-9724-3f56f611eb2e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.570366+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "49ba31be-a914-4a64-b3bf-6a2b39d8d1af", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/49ba31be-a914-4a64-b3bf-6a2b39d8d1af.png", "timestamp": "2024-02-15T20:52:28.651488+00:00"}}, {"id": "2aee308e-043a-48da-b609-e01739d53512", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:39.630328+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "49ba31be-a914-4a64-b3bf-6a2b39d8d1af", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/49ba31be-a914-4a64-b3bf-6a2b39d8d1af.png", "timestamp": "2024-02-15T20:52:28.651488+00:00"}}, {"id": "5ed4d9a1-69c1-4a22-910d-5025eb150ac0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:10.953268+00:00", "label": "true", "label_explanation": "The image is corrupted, with large green and grey patches obscuring the scene. It is impossible to discern any details or assess road conditions.", "snapshot": {"id": "bfe566b4-c474-425a-87ef-e1b591f5efbb", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/bfe566b4-c474-425a-87ef-e1b591f5efbb.png", "timestamp": "2024-02-15T20:50:00.928559+00:00"}}, {"id": "27288690-6021-4737-8ea6-2dd8ed3892af", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:11.419564+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "bfe566b4-c474-425a-87ef-e1b591f5efbb", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/bfe566b4-c474-425a-87ef-e1b591f5efbb.png", "timestamp": "2024-02-15T20:50:00.928559+00:00"}}, {"id": "70c9eca1-bec7-45c3-87fc-4f4d3f6c81d5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.410884+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "74ba9982-646e-4457-b5c4-c6eaf2cd1df0", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/74ba9982-646e-4457-b5c4-c6eaf2cd1df0.png", "timestamp": "2024-02-15T20:54:58.429028+00:00"}}, {"id": "96d35039-d204-418f-bf83-3f8aad341920", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.424447+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "74ba9982-646e-4457-b5c4-c6eaf2cd1df0", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/74ba9982-646e-4457-b5c4-c6eaf2cd1df0.png", "timestamp": "2024-02-15T20:54:58.429028+00:00"}}, {"id": "acbd8d9c-0201-45ae-9099-1832533d4cb3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.638254+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "74ba9982-646e-4457-b5c4-c6eaf2cd1df0", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/74ba9982-646e-4457-b5c4-c6eaf2cd1df0.png", "timestamp": "2024-02-15T20:54:58.429028+00:00"}}, {"id": "a24dd099-6ae2-482b-ac31-47776d488343", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.120428+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "74ba9982-646e-4457-b5c4-c6eaf2cd1df0", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/74ba9982-646e-4457-b5c4-c6eaf2cd1df0.png", "timestamp": "2024-02-15T20:54:58.429028+00:00"}}, {"id": "07584c78-6e89-4e06-b172-0179cf6601ce", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.127175+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "74ba9982-646e-4457-b5c4-c6eaf2cd1df0", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/74ba9982-646e-4457-b5c4-c6eaf2cd1df0.png", "timestamp": "2024-02-15T20:54:58.429028+00:00"}}, {"id": "126684b5-32c0-41ac-a99c-fcf434f2b426", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.937419+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "74ba9982-646e-4457-b5c4-c6eaf2cd1df0", "camera_id": "001172", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001172/74ba9982-646e-4457-b5c4-c6eaf2cd1df0.png", "timestamp": "2024-02-15T20:54:58.429028+00:00"}}]}, {"id": "001175", "name": "MONUMENTO PRINCESA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96514728, "longitude": -43.17355044, "objects": ["image_corrupted", "image_description", "road_blockade", "rain", "traffic", "water_level"], "identifications": [{"id": "bad051ea-83be-4af6-b231-93e4ee2c9b31", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.287057+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable.", "snapshot": {"id": "24062807-300c-4186-8d34-844d01a2b896", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/24062807-300c-4186-8d34-844d01a2b896.png", "timestamp": "2024-02-15T20:30:26.411008+00:00"}}, {"id": "886f460e-06b1-40a1-a7eb-beec1df40de7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:39.065848+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "24062807-300c-4186-8d34-844d01a2b896", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/24062807-300c-4186-8d34-844d01a2b896.png", "timestamp": "2024-02-15T20:30:26.411008+00:00"}}, {"id": "207e67b2-2436-4503-bfa0-29f253211e37", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.787867+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some puddles, but they are shallow and do not pose a significant hazard to vehicles.", "snapshot": {"id": "24062807-300c-4186-8d34-844d01a2b896", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/24062807-300c-4186-8d34-844d01a2b896.png", "timestamp": "2024-02-15T20:30:26.411008+00:00"}}, {"id": "72ad348a-d85c-4f5c-8696-161db6f84965", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.147487+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "24062807-300c-4186-8d34-844d01a2b896", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/24062807-300c-4186-8d34-844d01a2b896.png", "timestamp": "2024-02-15T20:30:26.411008+00:00"}}, {"id": "eda7339d-03d3-4960-973a-056a92ef126e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.374582+00:00", "label": "null", "label_explanation": "The image captures a roundabout in an urban area. It is daytime and the weather is rainy. There are several vehicles on the road, including cars, buses, and taxis. There is a statue in the center of the roundabout.", "snapshot": {"id": "24062807-300c-4186-8d34-844d01a2b896", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/24062807-300c-4186-8d34-844d01a2b896.png", "timestamp": "2024-02-15T20:30:26.411008+00:00"}}, {"id": "200977f5-00bb-4cd7-91f4-b7c964a08f3c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:38.588857+00:00", "label": "true", "label_explanation": "The road surface is wet and there are puddles of water on the ground. It is actively raining.", "snapshot": {"id": "24062807-300c-4186-8d34-844d01a2b896", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/24062807-300c-4186-8d34-844d01a2b896.png", "timestamp": "2024-02-15T20:30:26.411008+00:00"}}, {"id": "2075e492-d908-4a9d-87f0-d310f3b8de07", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.854341+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8c6218fe-b1df-4e96-abe8-a62e9094db05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/8c6218fe-b1df-4e96-abe8-a62e9094db05.png", "timestamp": "2024-02-15T20:47:41.179699+00:00"}}, {"id": "62db4fb5-7df7-4b26-9b3a-140ced0d42bd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.252404+00:00", "label": "true", "label_explanation": "While the road surface is mostly dry, there are a few small puddles scattered around, indicating that it may have rained recently.", "snapshot": {"id": "8c6218fe-b1df-4e96-abe8-a62e9094db05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/8c6218fe-b1df-4e96-abe8-a62e9094db05.png", "timestamp": "2024-02-15T20:47:41.179699+00:00"}}, {"id": "9d7a6ae0-e715-462c-a78d-eb9fba5bb927", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.062825+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road during daytime. It features a wide, multi-lane road with a statue in the center of a roundabout. There are numerous vehicles on the road, including cars, buses, and trucks. Pedestrians are also visible, crossing the road at various points. The weather appears to be clear, with no visible rain or other adverse conditions.", "snapshot": {"id": "8c6218fe-b1df-4e96-abe8-a62e9094db05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/8c6218fe-b1df-4e96-abe8-a62e9094db05.png", "timestamp": "2024-02-15T20:47:41.179699+00:00"}}, {"id": "d7003910-49ba-4f16-a6ca-78f8ef27bb11", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.931137+00:00", "label": "free", "label_explanation": "The road is completely free of any obstructions or blockades. All lanes are open to traffic, and there are no detours or road closures visible in the image.", "snapshot": {"id": "8c6218fe-b1df-4e96-abe8-a62e9094db05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/8c6218fe-b1df-4e96-abe8-a62e9094db05.png", "timestamp": "2024-02-15T20:47:41.179699+00:00"}}, {"id": "8d001ed9-26e4-438d-a282-811c4b2883d0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.751167+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate, with vehicles moving at a steady pace. There are no major congestion or delays visible in the image.", "snapshot": {"id": "8c6218fe-b1df-4e96-abe8-a62e9094db05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/8c6218fe-b1df-4e96-abe8-a62e9094db05.png", "timestamp": "2024-02-15T20:47:41.179699+00:00"}}, {"id": "9ee772a6-9edc-4c58-8d06-b26b83037ab5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.488387+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few small puddles present. These puddles are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "8c6218fe-b1df-4e96-abe8-a62e9094db05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/8c6218fe-b1df-4e96-abe8-a62e9094db05.png", "timestamp": "2024-02-15T20:47:41.179699+00:00"}}, {"id": "5ea81d1a-74a5-457b-9649-d97e7c8a5686", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.472168+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "fe48640c-1590-488e-990f-1655ec17d411", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/fe48640c-1590-488e-990f-1655ec17d411.png", "timestamp": "2024-02-15T20:33:01.389023+00:00"}}, {"id": "2608b960-0cf9-461b-8a65-683fb98cc672", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.509226+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a statue in the center of a roundabout. There are cars on the road and buildings in the background.", "snapshot": {"id": "fe48640c-1590-488e-990f-1655ec17d411", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/fe48640c-1590-488e-990f-1655ec17d411.png", "timestamp": "2024-02-15T20:33:01.389023+00:00"}}, {"id": "11bbbe8e-62db-4d5b-a864-d9e2c263742f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.995339+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fe48640c-1590-488e-990f-1655ec17d411", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/fe48640c-1590-488e-990f-1655ec17d411.png", "timestamp": "2024-02-15T20:33:01.389023+00:00"}}, {"id": "a4b15405-2dec-45e0-87f0-3ca7fb4ba316", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:17.334321+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "fe48640c-1590-488e-990f-1655ec17d411", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/fe48640c-1590-488e-990f-1655ec17d411.png", "timestamp": "2024-02-15T20:33:01.389023+00:00"}}, {"id": "e2bc30dd-7e57-4f56-98ac-973ef72979e8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:19.022061+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "fe48640c-1590-488e-990f-1655ec17d411", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/fe48640c-1590-488e-990f-1655ec17d411.png", "timestamp": "2024-02-15T20:33:01.389023+00:00"}}, {"id": "fa1133e3-4e9b-4620-b0f8-d6d3c9500074", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:17.873641+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "fe48640c-1590-488e-990f-1655ec17d411", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/fe48640c-1590-488e-990f-1655ec17d411.png", "timestamp": "2024-02-15T20:33:01.389023+00:00"}}, {"id": "27b04884-f9c3-4852-819b-d91f9f810a15", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.882882+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "7671e1c3-48c8-42c3-bec6-9e5dcd488b37", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7671e1c3-48c8-42c3-bec6-9e5dcd488b37.png", "timestamp": "2024-02-15T20:35:27.463226+00:00"}}, {"id": "f9f950c3-2201-42a8-a5d4-08974dd24abf", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.125143+00:00", "label": "low", "label_explanation": "The road surface is completely dry, with no visible water accumulation.", "snapshot": {"id": "7671e1c3-48c8-42c3-bec6-9e5dcd488b37", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7671e1c3-48c8-42c3-bec6-9e5dcd488b37.png", "timestamp": "2024-02-15T20:35:27.463226+00:00"}}, {"id": "8bf37aad-86ab-4da7-b4b5-caa331b2886c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.703791+00:00", "label": "false", "label_explanation": "There is no rain present in the image, as the road surface is completely dry.", "snapshot": {"id": "7671e1c3-48c8-42c3-bec6-9e5dcd488b37", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7671e1c3-48c8-42c3-bec6-9e5dcd488b37.png", "timestamp": "2024-02-15T20:35:27.463226+00:00"}}, {"id": "5ba8399a-3751-4e8f-900c-3788e5f8c66d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.567844+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7671e1c3-48c8-42c3-bec6-9e5dcd488b37", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7671e1c3-48c8-42c3-bec6-9e5dcd488b37.png", "timestamp": "2024-02-15T20:35:27.463226+00:00"}}, {"id": "0a3eb7b1-4a35-4d79-8939-720c221123a2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.510317+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "7671e1c3-48c8-42c3-bec6-9e5dcd488b37", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7671e1c3-48c8-42c3-bec6-9e5dcd488b37.png", "timestamp": "2024-02-15T20:35:27.463226+00:00"}}, {"id": "9b6bd22c-05ba-4266-91ee-d6fc39c588b1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.096221+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on either side and a clear, dry road surface.", "snapshot": {"id": "7671e1c3-48c8-42c3-bec6-9e5dcd488b37", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7671e1c3-48c8-42c3-bec6-9e5dcd488b37.png", "timestamp": "2024-02-15T20:35:27.463226+00:00"}}, {"id": "ff26ff64-22ad-4cee-a0f5-006f200c006b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:16.167395+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "7e36352b-3f61-4859-ab4f-849111715b0a", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7e36352b-3f61-4859-ab4f-849111715b0a.png", "timestamp": "2024-02-15T20:37:59.869741+00:00"}}, {"id": "968c6a60-4c08-4451-921f-f34d09649933", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.102805+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7e36352b-3f61-4859-ab4f-849111715b0a", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7e36352b-3f61-4859-ab4f-849111715b0a.png", "timestamp": "2024-02-15T20:37:59.869741+00:00"}}, {"id": "b1ce4af5-95d9-4dad-b269-6a09746ba352", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.505554+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "7e36352b-3f61-4859-ab4f-849111715b0a", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7e36352b-3f61-4859-ab4f-849111715b0a.png", "timestamp": "2024-02-15T20:37:59.869741+00:00"}}, {"id": "0d8ecb6b-e82d-4d39-a12d-d882d1fa7614", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:16.569572+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with cars and bicycles moving slowly due to the wet road conditions.", "snapshot": {"id": "7e36352b-3f61-4859-ab4f-849111715b0a", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7e36352b-3f61-4859-ab4f-849111715b0a.png", "timestamp": "2024-02-15T20:37:59.869741+00:00"}}, {"id": "43faf534-c210-4256-8df5-0d287dd46781", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.392125+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a statue in the center of a roundabout. There are trees, buildings, and cars in the background.", "snapshot": {"id": "7e36352b-3f61-4859-ab4f-849111715b0a", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7e36352b-3f61-4859-ab4f-849111715b0a.png", "timestamp": "2024-02-15T20:37:59.869741+00:00"}}, {"id": "1cfc9740-85a4-4ee4-960a-7c37e50d4602", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.865996+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "7e36352b-3f61-4859-ab4f-849111715b0a", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/7e36352b-3f61-4859-ab4f-849111715b0a.png", "timestamp": "2024-02-15T20:37:59.869741+00:00"}}, {"id": "644d56ad-dddd-48b1-b485-c8e3398a8384", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.922309+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or congestion.", "snapshot": {"id": "e27c6efe-5205-4b01-953e-166e47c3a145", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/e27c6efe-5205-4b01-953e-166e47c3a145.png", "timestamp": "2024-02-15T20:40:29.900561+00:00"}}, {"id": "1ca2772c-be49-4d25-8b0d-290266c4e77e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.330447+00:00", "label": "true", "label_explanation": "There are some small puddles of water on the road, indicating that it has been raining recently. However, the road is mostly dry and there is no significant accumulation of water.", "snapshot": {"id": "e27c6efe-5205-4b01-953e-166e47c3a145", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/e27c6efe-5205-4b01-953e-166e47c3a145.png", "timestamp": "2024-02-15T20:40:29.900561+00:00"}}, {"id": "f815002f-4fa0-4b9e-aa21-4f01ba03ffde", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.101888+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and trucks. Pedestrians are also visible, crossing the road at a crosswalk. There are trees and buildings in the background.", "snapshot": {"id": "e27c6efe-5205-4b01-953e-166e47c3a145", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/e27c6efe-5205-4b01-953e-166e47c3a145.png", "timestamp": "2024-02-15T20:40:29.900561+00:00"}}, {"id": "37e9fca4-8982-4cf1-b2e8-0173be6e4299", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.151120+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "e27c6efe-5205-4b01-953e-166e47c3a145", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/e27c6efe-5205-4b01-953e-166e47c3a145.png", "timestamp": "2024-02-15T20:40:29.900561+00:00"}}, {"id": "a7159d44-7d41-455c-8e00-c802a237d57f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.518274+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "e27c6efe-5205-4b01-953e-166e47c3a145", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/e27c6efe-5205-4b01-953e-166e47c3a145.png", "timestamp": "2024-02-15T20:40:29.900561+00:00"}}, {"id": "582e1f44-a83e-4ac8-9676-360545eed564", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:41.906433+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e27c6efe-5205-4b01-953e-166e47c3a145", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/e27c6efe-5205-4b01-953e-166e47c3a145.png", "timestamp": "2024-02-15T20:40:29.900561+00:00"}}, {"id": "ad7f3a61-6c53-4afd-96c4-022ed661e3fc", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.896045+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "249fdb59-2ac1-4e5f-8a23-cf218acede05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/249fdb59-2ac1-4e5f-8a23-cf218acede05.png", "timestamp": "2024-02-15T20:42:55.333768+00:00"}}, {"id": "916c7146-7f5e-4af3-8880-8839fcd1c66f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.636455+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles forming on the road surface.", "snapshot": {"id": "249fdb59-2ac1-4e5f-8a23-cf218acede05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/249fdb59-2ac1-4e5f-8a23-cf218acede05.png", "timestamp": "2024-02-15T20:42:55.333768+00:00"}}, {"id": "b8722b2f-a3e2-4d2e-904a-0cde50f87915", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.164992+00:00", "label": "null", "label_explanation": "The image captures a roundabout in an urban area. It is daytime, and the weather appears to be cloudy. There are several vehicles on the roundabout, including cars, buses, and motorcycles. Pedestrians are also using the roundabout to cross the intersection. There is a statue in the center of the roundabout.", "snapshot": {"id": "249fdb59-2ac1-4e5f-8a23-cf218acede05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/249fdb59-2ac1-4e5f-8a23-cf218acede05.png", "timestamp": "2024-02-15T20:42:55.333768+00:00"}}, {"id": "1d67f697-4abd-4ee6-8288-40e4435329d0", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.123963+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "249fdb59-2ac1-4e5f-8a23-cf218acede05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/249fdb59-2ac1-4e5f-8a23-cf218acede05.png", "timestamp": "2024-02-15T20:42:55.333768+00:00"}}, {"id": "6a35abe0-b271-4cd9-9723-2bd9baebbb90", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.391678+00:00", "label": "true", "label_explanation": "There is some water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "249fdb59-2ac1-4e5f-8a23-cf218acede05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/249fdb59-2ac1-4e5f-8a23-cf218acede05.png", "timestamp": "2024-02-15T20:42:55.333768+00:00"}}, {"id": "0a226944-bcca-460e-9598-4ca88033d032", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.828882+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "249fdb59-2ac1-4e5f-8a23-cf218acede05", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/249fdb59-2ac1-4e5f-8a23-cf218acede05.png", "timestamp": "2024-02-15T20:42:55.333768+00:00"}}, {"id": "6dc4a564-b128-4bdc-a105-f9c22587eecf", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.001389+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9de2c76c-1e8f-4872-8b2e-c4c871341f71", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/9de2c76c-1e8f-4872-8b2e-c4c871341f71.png", "timestamp": "2024-02-15T20:45:20.507138+00:00"}}, {"id": "3c2b84f8-1016-4779-aadf-fad8bbaa8e75", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.407575+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "9de2c76c-1e8f-4872-8b2e-c4c871341f71", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/9de2c76c-1e8f-4872-8b2e-c4c871341f71.png", "timestamp": "2024-02-15T20:45:20.507138+00:00"}}, {"id": "f837f68e-97fd-4a6d-afd6-2a14d6d0ebfb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.737933+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "9de2c76c-1e8f-4872-8b2e-c4c871341f71", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/9de2c76c-1e8f-4872-8b2e-c4c871341f71.png", "timestamp": "2024-02-15T20:45:20.507138+00:00"}}, {"id": "1c8f16f5-7d80-4958-b71b-c4283b4e8f4f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.207187+00:00", "label": "null", "label_explanation": "The image captures a roundabout in an urban area. It is daytime, and the weather appears to be clear. There are several vehicles on the roundabout, including buses, cars, and a van. There are also a few pedestrians walking around the roundabout.", "snapshot": {"id": "9de2c76c-1e8f-4872-8b2e-c4c871341f71", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/9de2c76c-1e8f-4872-8b2e-c4c871341f71.png", "timestamp": "2024-02-15T20:45:20.507138+00:00"}}, {"id": "abc22b63-22eb-4db1-b103-49b26d030bbb", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:33.188011+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is completely clear.", "snapshot": {"id": "9de2c76c-1e8f-4872-8b2e-c4c871341f71", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/9de2c76c-1e8f-4872-8b2e-c4c871341f71.png", "timestamp": "2024-02-15T20:45:20.507138+00:00"}}, {"id": "d3cf696e-54e4-4f25-a55e-f87cd82d3b41", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:32.979072+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few vehicles on the roundabout, but they are all moving at a steady pace.", "snapshot": {"id": "9de2c76c-1e8f-4872-8b2e-c4c871341f71", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/9de2c76c-1e8f-4872-8b2e-c4c871341f71.png", "timestamp": "2024-02-15T20:45:20.507138+00:00"}}, {"id": "58d66e72-15f8-4938-b76e-bf3ad5d2d0fa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.703746+00:00", "label": "null", "label_explanation": "The image captures a roundabout in an urban area. It is daytime, and the weather appears to be cloudy. There are several vehicles on the roundabout, including cars, buses, and motorcycles. Pedestrians are also visible, crossing the street in the background.", "snapshot": {"id": "22c1b85e-f35c-42de-816e-abc419c2bd20", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/22c1b85e-f35c-42de-816e-abc419c2bd20.png", "timestamp": "2024-02-15T20:52:29.177312+00:00"}}, {"id": "5a3afd93-bac3-43e8-bd5c-d9a1aeef7afe", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.695702+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is completely clear, and there are no obstructions to traffic.", "snapshot": {"id": "22c1b85e-f35c-42de-816e-abc419c2bd20", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/22c1b85e-f35c-42de-816e-abc419c2bd20.png", "timestamp": "2024-02-15T20:52:29.177312+00:00"}}, {"id": "eec56645-f46c-4082-a008-5d147b8e2e28", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.397050+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the roundabout, but they are all moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "22c1b85e-f35c-42de-816e-abc419c2bd20", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/22c1b85e-f35c-42de-816e-abc419c2bd20.png", "timestamp": "2024-02-15T20:52:29.177312+00:00"}}, {"id": "bc2e38f4-2da3-41f1-b2b9-97f86560ae99", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:43.186425+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "22c1b85e-f35c-42de-816e-abc419c2bd20", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/22c1b85e-f35c-42de-816e-abc419c2bd20.png", "timestamp": "2024-02-15T20:52:29.177312+00:00"}}, {"id": "6d707253-d5fe-47cb-bd5f-67e09f745c7d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.968336+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "22c1b85e-f35c-42de-816e-abc419c2bd20", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/22c1b85e-f35c-42de-816e-abc419c2bd20.png", "timestamp": "2024-02-15T20:52:29.177312+00:00"}}, {"id": "48fdaec3-6a71-432a-8cfd-f5bd2d3a2e1f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.501040+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "22c1b85e-f35c-42de-816e-abc419c2bd20", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/22c1b85e-f35c-42de-816e-abc419c2bd20.png", "timestamp": "2024-02-15T20:52:29.177312+00:00"}}, {"id": "3b030139-1f54-4095-b9d2-87b2ac7353dd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.978668+00:00", "label": "free", "label_explanation": "The road is clear, with no blockades or obstructions hindering traffic flow. Vehicles can move freely in both directions.", "snapshot": {"id": "bc10e4b8-5673-4d2f-a8a2-f2279d88a85b", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/bc10e4b8-5673-4d2f-a8a2-f2279d88a85b.png", "timestamp": "2024-02-15T20:50:05.285887+00:00"}}, {"id": "baffa598-1dfb-4da1-bf40-c9094f2675cd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.772748+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate, with vehicles moving steadily. There are no major obstructions or congestion visible in the image.", "snapshot": {"id": "bc10e4b8-5673-4d2f-a8a2-f2279d88a85b", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/bc10e4b8-5673-4d2f-a8a2-f2279d88a85b.png", "timestamp": "2024-02-15T20:50:05.285887+00:00"}}, {"id": "abfa6d06-cbb0-4d95-9255-af9f8deb7701", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.081308+00:00", "label": "true", "label_explanation": "Although it is not raining at the time of the image capture, there are small puddles of water on the road surface, likely from recent rainfall.", "snapshot": {"id": "bc10e4b8-5673-4d2f-a8a2-f2279d88a85b", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/bc10e4b8-5673-4d2f-a8a2-f2279d88a85b.png", "timestamp": "2024-02-15T20:50:05.285887+00:00"}}, {"id": "7f61ccbf-1af8-46c6-a3bf-8978eeb06ebd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.530820+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles scattered around. The majority of the road surface is dry.", "snapshot": {"id": "bc10e4b8-5673-4d2f-a8a2-f2279d88a85b", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/bc10e4b8-5673-4d2f-a8a2-f2279d88a85b.png", "timestamp": "2024-02-15T20:50:05.285887+00:00"}}, {"id": "9b267288-fa06-4882-8918-7b126190b277", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.626512+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bc10e4b8-5673-4d2f-a8a2-f2279d88a85b", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/bc10e4b8-5673-4d2f-a8a2-f2279d88a85b.png", "timestamp": "2024-02-15T20:50:05.285887+00:00"}}, {"id": "db690c91-6fa6-494b-a2ee-801ac5cf2c1c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.858612+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road during daytime. There are tall buildings on either side of the road, with a statue in the center of a roundabout. Trees are present along the road, and the weather appears to be clear.", "snapshot": {"id": "bc10e4b8-5673-4d2f-a8a2-f2279d88a85b", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/bc10e4b8-5673-4d2f-a8a2-f2279d88a85b.png", "timestamp": "2024-02-15T20:50:05.285887+00:00"}}, {"id": "ba36b437-6597-4612-868c-db931cdbb41f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.245781+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few small puddles. The majority of the road surface is dry and there is no significant risk of flooding.", "snapshot": {"id": "ee817a95-db39-4981-8fa6-a713473706ee", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/ee817a95-db39-4981-8fa6-a713473706ee.png", "timestamp": "2024-02-15T20:54:57.095913+00:00"}}, {"id": "385a8910-639f-4f92-9d92-6a87405abcdc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.760207+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and trucks. Pedestrians are also visible, walking on the sidewalks and crossing the street. There are trees and buildings in the background.", "snapshot": {"id": "ee817a95-db39-4981-8fa6-a713473706ee", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/ee817a95-db39-4981-8fa6-a713473706ee.png", "timestamp": "2024-02-15T20:54:57.095913+00:00"}}, {"id": "285b488c-c286-4409-824e-e2e77c0ed7bf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.662237+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "ee817a95-db39-4981-8fa6-a713473706ee", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/ee817a95-db39-4981-8fa6-a713473706ee.png", "timestamp": "2024-02-15T20:54:57.095913+00:00"}}, {"id": "dfa6fbe7-1e36-43cc-b812-0d8d7ba6d4a9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:10.453556+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate, with vehicles moving at a steady pace. There are no major delays or obstructions visible in the image.", "snapshot": {"id": "ee817a95-db39-4981-8fa6-a713473706ee", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/ee817a95-db39-4981-8fa6-a713473706ee.png", "timestamp": "2024-02-15T20:54:57.095913+00:00"}}, {"id": "60665edd-f671-4176-9ee7-5f3b5a6eb93a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.973045+00:00", "label": "true", "label_explanation": "There are some small puddles of water on the road, indicating that it has been raining recently. However, the road is still mostly dry and there is no significant accumulation of water.", "snapshot": {"id": "ee817a95-db39-4981-8fa6-a713473706ee", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/ee817a95-db39-4981-8fa6-a713473706ee.png", "timestamp": "2024-02-15T20:54:57.095913+00:00"}}, {"id": "34bf1b03-28b5-4b89-9ebf-52816ba02039", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.534852+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ee817a95-db39-4981-8fa6-a713473706ee", "camera_id": "001175", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001175/ee817a95-db39-4981-8fa6-a713473706ee.png", "timestamp": "2024-02-15T20:54:57.095913+00:00"}}]}, {"id": "001483", "name": "AV. PRES.VARGAS X P\u00c7A. DA REP\u00daBLICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90476487, "longitude": -43.19036305, "objects": ["rain", "traffic", "image_corrupted", "water_level", "road_blockade", "image_description"], "identifications": [{"id": "05b26d29-f478-416a-8282-428f5e63bdb1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.540700+00:00", "label": "moderate", "label_explanation": "There is moderate traffic on the road. Cars are moving slowly, but there are no major delays.", "snapshot": {"id": "a98be77a-4081-4c94-9c94-fb782be9dcd2", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/a98be77a-4081-4c94-9c94-fb782be9dcd2.png", "timestamp": "2024-02-15T20:30:33.705748+00:00"}}, {"id": "14196fbc-390f-4523-931f-bb6adfd1ceb7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.808305+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is rush hour, and there is moderate traffic on the road. The road is wet from recent rain, but there are no large puddles or standing water. There are trees and buildings on either side of the road.", "snapshot": {"id": "a98be77a-4081-4c94-9c94-fb782be9dcd2", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/a98be77a-4081-4c94-9c94-fb782be9dcd2.png", "timestamp": "2024-02-15T20:30:33.705748+00:00"}}, {"id": "dfea78ad-054a-4b56-9aa6-e9d18d415f7c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.828029+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "a98be77a-4081-4c94-9c94-fb782be9dcd2", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/a98be77a-4081-4c94-9c94-fb782be9dcd2.png", "timestamp": "2024-02-15T20:30:33.705748+00:00"}}, {"id": "61b1a043-abce-4f36-ad1d-895a5dfb1e02", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.030611+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there are no large puddles or standing water.", "snapshot": {"id": "a98be77a-4081-4c94-9c94-fb782be9dcd2", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/a98be77a-4081-4c94-9c94-fb782be9dcd2.png", "timestamp": "2024-02-15T20:30:33.705748+00:00"}}, {"id": "c8fc0e3e-2a41-4693-b830-6d70b81aca3f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.546101+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a98be77a-4081-4c94-9c94-fb782be9dcd2", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/a98be77a-4081-4c94-9c94-fb782be9dcd2.png", "timestamp": "2024-02-15T20:30:33.705748+00:00"}}, {"id": "923680dd-3362-4fea-a413-b6466f7ad9d5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.283915+00:00", "label": "low", "label_explanation": "There is no standing water on the road. The road is wet, but the water has drained away.", "snapshot": {"id": "a98be77a-4081-4c94-9c94-fb782be9dcd2", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/a98be77a-4081-4c94-9c94-fb782be9dcd2.png", "timestamp": "2024-02-15T20:30:33.705748+00:00"}}, {"id": "5989d047-c568-4842-a231-1cc7bffa3ba4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.170337+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate, with several vehicles visible. However, the traffic appears to be flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "e22b68d6-b239-43e4-a837-9e7af0c20e17", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/e22b68d6-b239-43e4-a837-9e7af0c20e17.png", "timestamp": "2024-02-15T20:47:49.796917+00:00"}}, {"id": "3f46da69-fc72-4d24-9b62-c49e0293a7ce", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.900633+00:00", "label": "low", "label_explanation": "The water level on the road is low, as the puddles are small and shallow. The water does not appear to be causing any significant hindrance to traffic.", "snapshot": {"id": "e22b68d6-b239-43e4-a837-9e7af0c20e17", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/e22b68d6-b239-43e4-a837-9e7af0c20e17.png", "timestamp": "2024-02-15T20:47:49.796917+00:00"}}, {"id": "25f00b02-17bd-49b3-ba79-1048a28f1d39", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.446917+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with multiple lanes, bordered by tall buildings and lush trees. The road is moderately busy, with several vehicles visible, including buses, cars, and motorcycles. The weather appears to be overcast, as the sky is grey and there are some dark clouds. There are also some small puddles of water on the road, indicating recent rainfall.", "snapshot": {"id": "e22b68d6-b239-43e4-a837-9e7af0c20e17", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/e22b68d6-b239-43e4-a837-9e7af0c20e17.png", "timestamp": "2024-02-15T20:47:49.796917+00:00"}}, {"id": "f657a5d0-4a1f-4bc9-8b1a-c8a8d6f3c07a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.143570+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e22b68d6-b239-43e4-a837-9e7af0c20e17", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/e22b68d6-b239-43e4-a837-9e7af0c20e17.png", "timestamp": "2024-02-15T20:47:49.796917+00:00"}}, {"id": "bb5335aa-07d8-4277-ab2d-c9f77d25124b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:01.668099+00:00", "label": "true", "label_explanation": "There is evidence of recent rainfall, as there are some small puddles of water on the road. However, the rain does not appear to be heavy or persistent, as the road surface is still mostly dry.", "snapshot": {"id": "e22b68d6-b239-43e4-a837-9e7af0c20e17", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/e22b68d6-b239-43e4-a837-9e7af0c20e17.png", "timestamp": "2024-02-15T20:47:49.796917+00:00"}}, {"id": "612abec3-124a-4b04-a431-832eed0bbf03", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.371138+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "e22b68d6-b239-43e4-a837-9e7af0c20e17", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/e22b68d6-b239-43e4-a837-9e7af0c20e17.png", "timestamp": "2024-02-15T20:47:49.796917+00:00"}}, {"id": "23491de3-7d7f-46ce-9dcc-285a786f0943", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.911023+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are a few trees on either side of the road, and buildings and structures in the background.", "snapshot": {"id": "3db352c8-7686-4086-af2e-b28653368f2d", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/3db352c8-7686-4086-af2e-b28653368f2d.png", "timestamp": "2024-02-15T20:43:02.089587+00:00"}}, {"id": "dd76d528-c51d-4a60-8017-4c889ebaedd4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.826105+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles.", "snapshot": {"id": "3db352c8-7686-4086-af2e-b28653368f2d", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/3db352c8-7686-4086-af2e-b28653368f2d.png", "timestamp": "2024-02-15T20:43:02.089587+00:00"}}, {"id": "5d4e36ca-f322-4d1d-a625-6a5284cbde8f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.146789+00:00", "label": "true", "label_explanation": "There are some wet patches on the road surface, indicating that it has been raining recently. However, the road is still mostly dry and there is no standing water.", "snapshot": {"id": "3db352c8-7686-4086-af2e-b28653368f2d", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/3db352c8-7686-4086-af2e-b28653368f2d.png", "timestamp": "2024-02-15T20:43:02.089587+00:00"}}, {"id": "c1357000-81ac-4cb6-be26-4faa3fbc4ad8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:13.699980+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3db352c8-7686-4086-af2e-b28653368f2d", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/3db352c8-7686-4086-af2e-b28653368f2d.png", "timestamp": "2024-02-15T20:43:02.089587+00:00"}}, {"id": "3c952251-dd28-4947-9016-9e91409d0a02", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.603291+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars and buses visible on the road. The vehicles are able to move freely and there are no major obstructions.", "snapshot": {"id": "3db352c8-7686-4086-af2e-b28653368f2d", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/3db352c8-7686-4086-af2e-b28653368f2d.png", "timestamp": "2024-02-15T20:43:02.089587+00:00"}}, {"id": "dbd39091-be53-486b-afd9-b4691d120ca5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:14.397338+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few small puddles. The majority of the road surface is dry.", "snapshot": {"id": "3db352c8-7686-4086-af2e-b28653368f2d", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/3db352c8-7686-4086-af2e-b28653368f2d.png", "timestamp": "2024-02-15T20:43:02.089587+00:00"}}, {"id": "8a7b772c-a3c1-4701-b67b-009e2f3dbd11", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.671636+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image, and all lanes are open to traffic.", "snapshot": {"id": "34502626-37e0-4a19-b4a5-4e97550d92ff", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/34502626-37e0-4a19-b4a5-4e97550d92ff.png", "timestamp": "2024-02-15T20:45:25.069715+00:00"}}, {"id": "6ec6c72c-341c-47cd-a2fa-005b7249d8df", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.186209+00:00", "label": "low", "label_explanation": "The water level on the road is low, as there are only small puddles and no significant accumulation of water.", "snapshot": {"id": "34502626-37e0-4a19-b4a5-4e97550d92ff", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/34502626-37e0-4a19-b4a5-4e97550d92ff.png", "timestamp": "2024-02-15T20:45:25.069715+00:00"}}, {"id": "2b2a42e8-7af8-4fbd-98ec-914f00fd2938", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.707955+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road intersection. It is daytime and the weather appears to be cloudy and rainy. There are several vehicles on the road, including buses and cars. The road is wet and there are some small puddles visible.", "snapshot": {"id": "34502626-37e0-4a19-b4a5-4e97550d92ff", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/34502626-37e0-4a19-b4a5-4e97550d92ff.png", "timestamp": "2024-02-15T20:45:25.069715+00:00"}}, {"id": "15faaa35-c9cd-4a46-b8d4-7fc72386c93a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.395767+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "34502626-37e0-4a19-b4a5-4e97550d92ff", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/34502626-37e0-4a19-b4a5-4e97550d92ff.png", "timestamp": "2024-02-15T20:45:25.069715+00:00"}}, {"id": "f0e6b7f3-178c-4f93-9318-586f36d380b8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:37.395571+00:00", "label": "moderate", "label_explanation": "The traffic appears to be moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "34502626-37e0-4a19-b4a5-4e97550d92ff", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/34502626-37e0-4a19-b4a5-4e97550d92ff.png", "timestamp": "2024-02-15T20:45:25.069715+00:00"}}, {"id": "4a544552-4725-4c44-a4ff-94c0d2e93ac7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:36.956547+00:00", "label": "true", "label_explanation": "The road is wet and there are some small puddles visible, indicating that it has been raining.", "snapshot": {"id": "34502626-37e0-4a19-b4a5-4e97550d92ff", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/34502626-37e0-4a19-b4a5-4e97550d92ff.png", "timestamp": "2024-02-15T20:45:25.069715+00:00"}}, {"id": "0f32e96d-fced-4ddd-aafd-24cc705899a8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:56.098495+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in all directions.", "snapshot": {"id": "9b87c962-4fbe-4eef-b0c0-7d03852d59eb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/9b87c962-4fbe-4eef-b0c0-7d03852d59eb.png", "timestamp": "2024-02-15T20:35:40.953056+00:00"}}, {"id": "94d343b1-eaf1-43a4-95fa-6dcfed7e9dcb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.593700+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "9b87c962-4fbe-4eef-b0c0-7d03852d59eb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/9b87c962-4fbe-4eef-b0c0-7d03852d59eb.png", "timestamp": "2024-02-15T20:35:40.953056+00:00"}}, {"id": "bffd6d82-605a-47b5-95b4-638135ed2603", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.107030+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road intersection. It is daytime and the weather is cloudy. There are several vehicles on the road, including buses, cars, and taxis. Pedestrians are also visible on the sidewalks and crossing the intersection. Trees and buildings can be seen in the background.", "snapshot": {"id": "9b87c962-4fbe-4eef-b0c0-7d03852d59eb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/9b87c962-4fbe-4eef-b0c0-7d03852d59eb.png", "timestamp": "2024-02-15T20:35:40.953056+00:00"}}, {"id": "ae463064-47a1-477a-80f8-77b64766f6ab", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:54.908148+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9b87c962-4fbe-4eef-b0c0-7d03852d59eb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/9b87c962-4fbe-4eef-b0c0-7d03852d59eb.png", "timestamp": "2024-02-15T20:35:40.953056+00:00"}}, {"id": "d12ff17c-b855-4338-853d-a80a61372382", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.813208+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or congestion.", "snapshot": {"id": "9b87c962-4fbe-4eef-b0c0-7d03852d59eb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/9b87c962-4fbe-4eef-b0c0-7d03852d59eb.png", "timestamp": "2024-02-15T20:35:40.953056+00:00"}}, {"id": "52c2c2e0-ac6d-4b25-8a4f-e803c83a95e6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.323625+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "9b87c962-4fbe-4eef-b0c0-7d03852d59eb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/9b87c962-4fbe-4eef-b0c0-7d03852d59eb.png", "timestamp": "2024-02-15T20:35:40.953056+00:00"}}, {"id": "6019aa6f-013a-4ded-86e9-0ce56b7c34be", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.852648+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "98db1a21-b293-4e69-8dcb-95aa857748fa", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/98db1a21-b293-4e69-8dcb-95aa857748fa.png", "timestamp": "2024-02-15T20:38:11.237776+00:00"}}, {"id": "14ef0b98-e59e-4eaf-8e2c-ac5998bb6ccb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.640801+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with cars moving slowly due to the wet conditions.", "snapshot": {"id": "98db1a21-b293-4e69-8dcb-95aa857748fa", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/98db1a21-b293-4e69-8dcb-95aa857748fa.png", "timestamp": "2024-02-15T20:38:11.237776+00:00"}}, {"id": "83ef3987-4e16-4f5b-adf9-5aac27ace391", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:25.376499+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present.", "snapshot": {"id": "98db1a21-b293-4e69-8dcb-95aa857748fa", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/98db1a21-b293-4e69-8dcb-95aa857748fa.png", "timestamp": "2024-02-15T20:38:11.237776+00:00"}}, {"id": "ff62da8c-34d5-4cfc-9dd1-ccb530dc66b9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.979331+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road.", "snapshot": {"id": "98db1a21-b293-4e69-8dcb-95aa857748fa", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/98db1a21-b293-4e69-8dcb-95aa857748fa.png", "timestamp": "2024-02-15T20:38:11.237776+00:00"}}, {"id": "1dcdb854-8440-42f4-afa8-c8925c8a94d9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.651190+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and the right. There are several cars on the road, and the weather appears to be cloudy and wet.", "snapshot": {"id": "98db1a21-b293-4e69-8dcb-95aa857748fa", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/98db1a21-b293-4e69-8dcb-95aa857748fa.png", "timestamp": "2024-02-15T20:38:11.237776+00:00"}}, {"id": "3f74af04-b966-4d3f-8008-96884a7651b2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:24.414816+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "98db1a21-b293-4e69-8dcb-95aa857748fa", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/98db1a21-b293-4e69-8dcb-95aa857748fa.png", "timestamp": "2024-02-15T20:38:11.237776+00:00"}}, {"id": "235d7a99-7531-4d2e-8c12-82ffb83d0223", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.049004+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "668dd355-33f1-45f9-b111-8baaf00ef6cb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/668dd355-33f1-45f9-b111-8baaf00ef6cb.png", "timestamp": "2024-02-15T20:40:38.823353+00:00"}}, {"id": "18da9bd7-bba7-4599-a896-c9d3f1462de4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.468254+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "668dd355-33f1-45f9-b111-8baaf00ef6cb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/668dd355-33f1-45f9-b111-8baaf00ef6cb.png", "timestamp": "2024-02-15T20:40:38.823353+00:00"}}, {"id": "4bc8d814-3783-48ef-afcc-64ea9da2f6e7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:51.268842+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion.", "snapshot": {"id": "668dd355-33f1-45f9-b111-8baaf00ef6cb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/668dd355-33f1-45f9-b111-8baaf00ef6cb.png", "timestamp": "2024-02-15T20:40:38.823353+00:00"}}, {"id": "0341ad50-0aa9-42c9-be7f-5df023bd474f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.765567+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "668dd355-33f1-45f9-b111-8baaf00ef6cb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/668dd355-33f1-45f9-b111-8baaf00ef6cb.png", "timestamp": "2024-02-15T20:40:38.823353+00:00"}}, {"id": "64e84a12-ac96-47e4-85e0-39204e9e2e54", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.593057+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with a tree on the left side. There are buildings in the background and a crosswalk on the right side of the intersection. The weather appears to be cloudy, and the road is wet from recent rain.", "snapshot": {"id": "668dd355-33f1-45f9-b111-8baaf00ef6cb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/668dd355-33f1-45f9-b111-8baaf00ef6cb.png", "timestamp": "2024-02-15T20:40:38.823353+00:00"}}, {"id": "b1b8ab88-2b30-45a6-9e9a-a31e99da370e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.390661+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss. The colors are vivid, and the details are sharp.", "snapshot": {"id": "668dd355-33f1-45f9-b111-8baaf00ef6cb", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/668dd355-33f1-45f9-b111-8baaf00ef6cb.png", "timestamp": "2024-02-15T20:40:38.823353+00:00"}}, {"id": "b55f6eaf-4d87-448d-8b7e-e732af2e6dbf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.546844+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "1380a7c8-0890-48f0-8902-77e48a9b0581", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1380a7c8-0890-48f0-8902-77e48a9b0581.png", "timestamp": "2024-02-15T20:33:13.014036+00:00"}}, {"id": "3dac24c6-ac29-4a99-aff6-d621d0227fa6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:29.214758+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "1380a7c8-0890-48f0-8902-77e48a9b0581", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1380a7c8-0890-48f0-8902-77e48a9b0581.png", "timestamp": "2024-02-15T20:33:13.014036+00:00"}}, {"id": "ca7cfca7-c4ee-4562-aa9e-4ac2831267ee", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.987191+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "1380a7c8-0890-48f0-8902-77e48a9b0581", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1380a7c8-0890-48f0-8902-77e48a9b0581.png", "timestamp": "2024-02-15T20:33:13.014036+00:00"}}, {"id": "02de51f1-71d1-4bc2-94e3-4f28618d1d9d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.724492+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are visible raindrops on the windshield of the vehicle capturing the scene.", "snapshot": {"id": "1380a7c8-0890-48f0-8902-77e48a9b0581", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1380a7c8-0890-48f0-8902-77e48a9b0581.png", "timestamp": "2024-02-15T20:33:13.014036+00:00"}}, {"id": "b996c315-e60c-4f36-b86d-e820e17d888d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.462557+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. It is raining, and the road surface is wet. There are several vehicles on the road, including buses and cars. The road is surrounded by buildings and trees.", "snapshot": {"id": "1380a7c8-0890-48f0-8902-77e48a9b0581", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1380a7c8-0890-48f0-8902-77e48a9b0581.png", "timestamp": "2024-02-15T20:33:13.014036+00:00"}}, {"id": "330c4b1a-09d5-404e-81ad-c080b3a409ce", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:28.125625+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1380a7c8-0890-48f0-8902-77e48a9b0581", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1380a7c8-0890-48f0-8902-77e48a9b0581.png", "timestamp": "2024-02-15T20:33:13.014036+00:00"}}, {"id": "e70209c0-993c-4635-9378-fe0876bf6c88", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:50.634256+00:00", "label": "free", "label_explanation": "The road is free of any blockades or obstructions. All lanes are open to traffic, and there are no signs of construction or accidents.", "snapshot": {"id": "1b98c69e-3426-4fab-859d-62ab276510d0", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1b98c69e-3426-4fab-859d-62ab276510d0.png", "timestamp": "2024-02-15T20:52:37.230523+00:00"}}, {"id": "a1f2707d-4aba-4605-8b60-5b2c20497cbe", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:50.362506+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "1b98c69e-3426-4fab-859d-62ab276510d0", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1b98c69e-3426-4fab-859d-62ab276510d0.png", "timestamp": "2024-02-15T20:52:37.230523+00:00"}}, {"id": "15ee8648-47a2-4a21-9677-9868a6edd81a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:50.163399+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is still visible and passable.", "snapshot": {"id": "1b98c69e-3426-4fab-859d-62ab276510d0", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1b98c69e-3426-4fab-859d-62ab276510d0.png", "timestamp": "2024-02-15T20:52:37.230523+00:00"}}, {"id": "0f75a814-b3a8-4732-b1fc-8fb06ea6ac0c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.956981+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which could pose a hazard to drivers and pedestrians.", "snapshot": {"id": "1b98c69e-3426-4fab-859d-62ab276510d0", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1b98c69e-3426-4fab-859d-62ab276510d0.png", "timestamp": "2024-02-15T20:52:37.230523+00:00"}}, {"id": "3e85c534-f41c-4f9f-a856-a92d3a90c614", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.469910+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1b98c69e-3426-4fab-859d-62ab276510d0", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1b98c69e-3426-4fab-859d-62ab276510d0.png", "timestamp": "2024-02-15T20:52:37.230523+00:00"}}, {"id": "02c6df05-1eb4-4772-8fff-db3c6293633a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:49.751437+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road scene during the day. It features multiple lanes of traffic, with buses, cars, and motorcycles moving in both directions. The road is lined with tall buildings and lush trees, and there are pedestrians crossing the street in the background.", "snapshot": {"id": "1b98c69e-3426-4fab-859d-62ab276510d0", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/1b98c69e-3426-4fab-859d-62ab276510d0.png", "timestamp": "2024-02-15T20:52:37.230523+00:00"}}, {"id": "d32d0ee7-af9e-4e6e-a695-19e3651ec7d0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.227977+00:00", "label": "low", "label_explanation": "There is no standing water on the road.", "snapshot": {"id": "065ba132-f9e3-4ad3-bdba-e200b0df548e", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/065ba132-f9e3-4ad3-bdba-e200b0df548e.png", "timestamp": "2024-02-15T20:50:13.508208+00:00"}}, {"id": "24eb4940-682d-4711-837b-6083c318b781", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.019252+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, but there is no standing water.", "snapshot": {"id": "065ba132-f9e3-4ad3-bdba-e200b0df548e", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/065ba132-f9e3-4ad3-bdba-e200b0df548e.png", "timestamp": "2024-02-15T20:50:13.508208+00:00"}}, {"id": "d502dae8-51ca-4af5-8dc9-6ff4c5dd98ab", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.554350+00:00", "label": "easy", "label_explanation": "There is moderate traffic on the road, but it is still flowing smoothly.", "snapshot": {"id": "065ba132-f9e3-4ad3-bdba-e200b0df548e", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/065ba132-f9e3-4ad3-bdba-e200b0df548e.png", "timestamp": "2024-02-15T20:50:13.508208+00:00"}}, {"id": "1307e786-2c5d-47a7-890c-3db2ef38af37", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.621468+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "065ba132-f9e3-4ad3-bdba-e200b0df548e", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/065ba132-f9e3-4ad3-bdba-e200b0df548e.png", "timestamp": "2024-02-15T20:50:13.508208+00:00"}}, {"id": "a38f54b4-fec4-473e-a165-360f4c3c1d86", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:25.813281+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "065ba132-f9e3-4ad3-bdba-e200b0df548e", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/065ba132-f9e3-4ad3-bdba-e200b0df548e.png", "timestamp": "2024-02-15T20:50:13.508208+00:00"}}, {"id": "01e39e7f-acc8-4ba3-8cf9-21b513740b4c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:24.827537+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is rush hour, and there is moderate traffic on the road. The road is wet from recent rain, but there are no large puddles or standing water. The sidewalks are lined with trees and buildings.", "snapshot": {"id": "065ba132-f9e3-4ad3-bdba-e200b0df548e", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/065ba132-f9e3-4ad3-bdba-e200b0df548e.png", "timestamp": "2024-02-15T20:50:13.508208+00:00"}}, {"id": "aab86d36-3d52-42f6-b477-b4f0a9d64161", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.453839+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "bc85261a-ed60-41a3-923f-dfabbf14e67f", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/bc85261a-ed60-41a3-923f-dfabbf14e67f.png", "timestamp": "2024-02-15T20:55:05.217368+00:00"}}, {"id": "00683737-fe15-4aad-b41d-abfe3b01a649", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.769410+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "bc85261a-ed60-41a3-923f-dfabbf14e67f", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/bc85261a-ed60-41a3-923f-dfabbf14e67f.png", "timestamp": "2024-02-15T20:55:05.217368+00:00"}}, {"id": "769cab02-0d3f-49d8-b360-6263ef216f63", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.261104+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "bc85261a-ed60-41a3-923f-dfabbf14e67f", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/bc85261a-ed60-41a3-923f-dfabbf14e67f.png", "timestamp": "2024-02-15T20:55:05.217368+00:00"}}, {"id": "5cd9ab3d-41cb-4a3f-9136-40bf8b2fe236", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.331807+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bc85261a-ed60-41a3-923f-dfabbf14e67f", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/bc85261a-ed60-41a3-923f-dfabbf14e67f.png", "timestamp": "2024-02-15T20:55:05.217368+00:00"}}, {"id": "4221b131-2879-4a7f-b76b-33b7647f967b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:16.041105+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "bc85261a-ed60-41a3-923f-dfabbf14e67f", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/bc85261a-ed60-41a3-923f-dfabbf14e67f.png", "timestamp": "2024-02-15T20:55:05.217368+00:00"}}, {"id": "9c4dd5f4-5ed3-4986-bcc5-ab6ec8e33544", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:15.566658+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with tall buildings on the left and the right. There are several vehicles on the road, including a bus, a yellow taxi, and a red smart car. Trees are present on the left side of the road, and the weather appears to be cloudy.", "snapshot": {"id": "bc85261a-ed60-41a3-923f-dfabbf14e67f", "camera_id": "001483", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001483/bc85261a-ed60-41a3-923f-dfabbf14e67f.png", "timestamp": "2024-02-15T20:55:05.217368+00:00"}}]}, {"id": "001539", "name": "R. EPITACIO PESSOA X R. VINICIUS DE MORAIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979458, "longitude": -43.202361, "objects": ["traffic", "image_description", "road_blockade", "water_level", "image_corrupted", "rain"], "identifications": [{"id": "66590d82-fd37-432f-ac4e-3a81c4242855", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.681830+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18.png", "timestamp": "2024-02-15T20:30:35.509043+00:00"}}, {"id": "7c42cbf2-23a1-4c4d-bc0d-61886854848f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.429918+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18.png", "timestamp": "2024-02-15T20:30:35.509043+00:00"}}, {"id": "a698cd4c-6044-44aa-9453-6d6052377647", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.546396+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18.png", "timestamp": "2024-02-15T20:30:35.509043+00:00"}}, {"id": "15b22bdf-19ed-476c-9f04-788fbe85dad7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.970362+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing freely.", "snapshot": {"id": "70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18.png", "timestamp": "2024-02-15T20:30:35.509043+00:00"}}, {"id": "0a452d65-36af-4116-afeb-3da37585a22d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:49.114941+00:00", "label": "true", "label_explanation": "There is some light rain falling, but the road surface is still mostly dry.", "snapshot": {"id": "70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18.png", "timestamp": "2024-02-15T20:30:35.509043+00:00"}}, {"id": "25996def-23a2-4dad-b15d-8c600cb7b568", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:48.861330+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/70f68c6b-93bb-43e4-9fe0-51a9d3ff6f18.png", "timestamp": "2024-02-15T20:30:35.509043+00:00"}}, {"id": "c1ca9a62-1f8e-418f-9e8b-06e574d3da1b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:56.268997+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "e80845a1-566f-4125-ae1e-10b1eaaeb39c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/e80845a1-566f-4125-ae1e-10b1eaaeb39c.png", "timestamp": "2024-02-15T20:35:41.790448+00:00"}}, {"id": "ec803ea7-d30d-4a1d-9544-81ce14a29222", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:56.059424+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "e80845a1-566f-4125-ae1e-10b1eaaeb39c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/e80845a1-566f-4125-ae1e-10b1eaaeb39c.png", "timestamp": "2024-02-15T20:35:41.790448+00:00"}}, {"id": "e89ddd9f-810a-4848-8761-29ea5728dc91", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.855052+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "e80845a1-566f-4125-ae1e-10b1eaaeb39c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/e80845a1-566f-4125-ae1e-10b1eaaeb39c.png", "timestamp": "2024-02-15T20:35:41.790448+00:00"}}, {"id": "9ad5e8d4-154f-4e72-991d-71e5d0d517cd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.654080+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "e80845a1-566f-4125-ae1e-10b1eaaeb39c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/e80845a1-566f-4125-ae1e-10b1eaaeb39c.png", "timestamp": "2024-02-15T20:35:41.790448+00:00"}}, {"id": "1db4f41d-b603-4471-8199-7fa9186386eb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.175852+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e80845a1-566f-4125-ae1e-10b1eaaeb39c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/e80845a1-566f-4125-ae1e-10b1eaaeb39c.png", "timestamp": "2024-02-15T20:35:41.790448+00:00"}}, {"id": "b59d380e-2492-4452-8855-87b9b197843b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:55.408409+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "e80845a1-566f-4125-ae1e-10b1eaaeb39c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/e80845a1-566f-4125-ae1e-10b1eaaeb39c.png", "timestamp": "2024-02-15T20:35:41.790448+00:00"}}, {"id": "3fb611c2-c5be-4abd-9faa-10496efd4b73", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.725506+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no visible details.", "snapshot": {"id": "f0228ddd-9378-4ac4-b216-a6580af938c6", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/f0228ddd-9378-4ac4-b216-a6580af938c6.png", "timestamp": "2024-02-15T20:38:14.498518+00:00"}}, {"id": "dd39c872-4ee1-46f7-ab47-ff0f3b199416", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:23.982146+00:00", "label": "null", "label_explanation": "null", "snapshot": {"id": "f0228ddd-9378-4ac4-b216-a6580af938c6", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/f0228ddd-9378-4ac4-b216-a6580af938c6.png", "timestamp": "2024-02-15T20:38:14.498518+00:00"}}, {"id": "2dfc3008-73e3-4218-8512-9949e658fef3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.799758+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "6f93b9f4-6b98-4ff9-8ef4-e7040684c402", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6f93b9f4-6b98-4ff9-8ef4-e7040684c402.png", "timestamp": "2024-02-15T20:40:39.902917+00:00"}}, {"id": "d27c8129-8fea-4296-a8cb-38d4782b48ed", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.601464+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "6f93b9f4-6b98-4ff9-8ef4-e7040684c402", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6f93b9f4-6b98-4ff9-8ef4-e7040684c402.png", "timestamp": "2024-02-15T20:40:39.902917+00:00"}}, {"id": "dcd8cb44-9d2e-40f7-8110-022f8c4f0f14", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.379725+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "6f93b9f4-6b98-4ff9-8ef4-e7040684c402", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6f93b9f4-6b98-4ff9-8ef4-e7040684c402.png", "timestamp": "2024-02-15T20:40:39.902917+00:00"}}, {"id": "0d2cb8b0-bed5-4077-8507-a7fc58a5f981", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.920227+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "6f93b9f4-6b98-4ff9-8ef4-e7040684c402", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6f93b9f4-6b98-4ff9-8ef4-e7040684c402.png", "timestamp": "2024-02-15T20:40:39.902917+00:00"}}, {"id": "1b7b57b4-4b36-4ae5-a81f-18086a67497a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:49.704336+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6f93b9f4-6b98-4ff9-8ef4-e7040684c402", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6f93b9f4-6b98-4ff9-8ef4-e7040684c402.png", "timestamp": "2024-02-15T20:40:39.902917+00:00"}}, {"id": "377853ec-84a0-4cd3-9242-c5befc0e24c0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:50.122695+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "6f93b9f4-6b98-4ff9-8ef4-e7040684c402", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6f93b9f4-6b98-4ff9-8ef4-e7040684c402.png", "timestamp": "2024-02-15T20:40:39.902917+00:00"}}, {"id": "9f49061c-f7d9-47ce-ac22-428c44431ca6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.386765+00:00", "label": "null", "label_explanation": "Due to the image corruption, no meaningful description can be provided.", "snapshot": {"id": "111f76ed-02f1-467d-94e3-a3b01ee52f5e", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/111f76ed-02f1-467d-94e3-a3b01ee52f5e.png", "timestamp": "2024-02-15T20:47:51.992597+00:00"}}, {"id": "aa62bdfc-ec8d-45d3-a966-3873c8049bff", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:48:02.191902+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "111f76ed-02f1-467d-94e3-a3b01ee52f5e", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/111f76ed-02f1-467d-94e3-a3b01ee52f5e.png", "timestamp": "2024-02-15T20:47:51.992597+00:00"}}, {"id": "bd90728f-edf4-4e58-854e-a47e17546caf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:24.180128+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, and traffic is flowing smoothly.", "snapshot": {"id": "9010fe8c-4b66-488d-b9de-db147158411c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/9010fe8c-4b66-488d-b9de-db147158411c.png", "timestamp": "2024-02-15T20:43:05.186790+00:00"}}, {"id": "e1d0aa9b-a318-4909-b382-284f53fe04a3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:23.961789+00:00", "label": "easy", "label_explanation": "The road is moderately busy with cars and motorbikes, but there are no major traffic disruptions or congestion.", "snapshot": {"id": "9010fe8c-4b66-488d-b9de-db147158411c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/9010fe8c-4b66-488d-b9de-db147158411c.png", "timestamp": "2024-02-15T20:43:05.186790+00:00"}}, {"id": "7d63aa1c-ef8b-4042-a5b8-c06ad1c293dc", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:23.675231+00:00", "label": "low", "label_explanation": "There is no standing water or puddles on the road surface.", "snapshot": {"id": "9010fe8c-4b66-488d-b9de-db147158411c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/9010fe8c-4b66-488d-b9de-db147158411c.png", "timestamp": "2024-02-15T20:43:05.186790+00:00"}}, {"id": "54da307d-5237-4356-9425-7d158fe6e933", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:23.396418+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "9010fe8c-4b66-488d-b9de-db147158411c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/9010fe8c-4b66-488d-b9de-db147158411c.png", "timestamp": "2024-02-15T20:43:05.186790+00:00"}}, {"id": "24061183-3daa-40c5-b597-e9de262e8b43", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:23.204145+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both cars and motorbikes. The road surface is wet from recent rain, but there are no significant puddles or standing water. The parked cars are orderly arranged on the side of the road, and the trees are lush with green foliage.", "snapshot": {"id": "9010fe8c-4b66-488d-b9de-db147158411c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/9010fe8c-4b66-488d-b9de-db147158411c.png", "timestamp": "2024-02-15T20:43:05.186790+00:00"}}, {"id": "eef629fa-e0f7-4e33-88c9-6727c75e8dd2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:22.975515+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9010fe8c-4b66-488d-b9de-db147158411c", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/9010fe8c-4b66-488d-b9de-db147158411c.png", "timestamp": "2024-02-15T20:43:05.186790+00:00"}}, {"id": "8135eb69-dba3-496b-b703-e3b05c1b82f1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:40.500743+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free passage of vehicles.", "snapshot": {"id": "47f12548-7171-4984-82d5-58f6f132cc07", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/47f12548-7171-4984-82d5-58f6f132cc07.png", "timestamp": "2024-02-15T20:45:28.654336+00:00"}}, {"id": "d91720c5-652d-4abe-9e49-7209726792c6", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:40.222500+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or disruptions.", "snapshot": {"id": "47f12548-7171-4984-82d5-58f6f132cc07", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/47f12548-7171-4984-82d5-58f6f132cc07.png", "timestamp": "2024-02-15T20:45:28.654336+00:00"}}, {"id": "833100a6-8cdf-45b1-b9f3-86cd80c07893", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.798091+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "47f12548-7171-4984-82d5-58f6f132cc07", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/47f12548-7171-4984-82d5-58f6f132cc07.png", "timestamp": "2024-02-15T20:45:28.654336+00:00"}}, {"id": "941485a7-43cf-498d-af70-e266bd6ea5b6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:40.007655+00:00", "label": "low", "label_explanation": "There is no standing water or puddles on the road surface.", "snapshot": {"id": "47f12548-7171-4984-82d5-58f6f132cc07", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/47f12548-7171-4984-82d5-58f6f132cc07.png", "timestamp": "2024-02-15T20:45:28.654336+00:00"}}, {"id": "1cea4c29-36ae-4ae5-93e7-9e6820023b5c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.537146+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both parked and moving vehicles. The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "47f12548-7171-4984-82d5-58f6f132cc07", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/47f12548-7171-4984-82d5-58f6f132cc07.png", "timestamp": "2024-02-15T20:45:28.654336+00:00"}}, {"id": "209491c5-2b55-469c-91b1-32ec95cd468e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:39.321390+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "47f12548-7171-4984-82d5-58f6f132cc07", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/47f12548-7171-4984-82d5-58f6f132cc07.png", "timestamp": "2024-02-15T20:45:28.654336+00:00"}}, {"id": "ece80a02-52f6-46c9-9196-5e1e4a1c8ede", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:32.697959+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "820bbd79-d59f-4495-8d01-e41829e23eaf", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/820bbd79-d59f-4495-8d01-e41829e23eaf.png", "timestamp": "2024-02-15T20:33:21.061872+00:00"}}, {"id": "6d2dbafe-3ced-4e2f-b2d1-181f6af6eb1b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:32.497471+00:00", "label": "true", "label_explanation": "The image is corrupted and contains significant visual interference, making it difficult to analyze road conditions accurately.", "snapshot": {"id": "820bbd79-d59f-4495-8d01-e41829e23eaf", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/820bbd79-d59f-4495-8d01-e41829e23eaf.png", "timestamp": "2024-02-15T20:33:21.061872+00:00"}}, {"id": "1c5076f1-0e31-43ca-aa64-761fd282a15a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:28.364399+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also small puddles of water on the road.", "snapshot": {"id": "d5d75581-0bae-4f37-8620-aa47f7312f7b", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/d5d75581-0bae-4f37-8620-aa47f7312f7b.png", "timestamp": "2024-02-15T20:50:16.943635+00:00"}}, {"id": "c8573493-b105-4abb-b237-ff5b498163bc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:28.147501+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles parked on the side of the road and trees lining the street.", "snapshot": {"id": "d5d75581-0bae-4f37-8620-aa47f7312f7b", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/d5d75581-0bae-4f37-8620-aa47f7312f7b.png", "timestamp": "2024-02-15T20:50:16.943635+00:00"}}, {"id": "d0157eab-a934-4227-9c09-28d0f3fcce3e", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:29.066494+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades present. Vehicles can\u901a\u884c without any hindrance.", "snapshot": {"id": "d5d75581-0bae-4f37-8620-aa47f7312f7b", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/d5d75581-0bae-4f37-8620-aa47f7312f7b.png", "timestamp": "2024-02-15T20:50:16.943635+00:00"}}, {"id": "64fcf73b-2d90-4d04-b4ba-07041b013c9e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:28.858418+00:00", "label": "easy", "label_explanation": "The traffic flow is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "d5d75581-0bae-4f37-8620-aa47f7312f7b", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/d5d75581-0bae-4f37-8620-aa47f7312f7b.png", "timestamp": "2024-02-15T20:50:16.943635+00:00"}}, {"id": "719ba746-43f4-49dc-a59c-f91f3586a6c7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:28.666112+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry and not affected by water.", "snapshot": {"id": "d5d75581-0bae-4f37-8620-aa47f7312f7b", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/d5d75581-0bae-4f37-8620-aa47f7312f7b.png", "timestamp": "2024-02-15T20:50:16.943635+00:00"}}, {"id": "c5b41530-d2ad-42c4-8c4a-0d972025eb1f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:27.944980+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d5d75581-0bae-4f37-8620-aa47f7312f7b", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/d5d75581-0bae-4f37-8620-aa47f7312f7b.png", "timestamp": "2024-02-15T20:50:16.943635+00:00"}}, {"id": "cda26687-7d4e-4a10-83e4-1237ca6e99c5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:20.867929+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is flowing freely.", "snapshot": {"id": "6c4c9013-3b45-4081-8417-30c3ef5b3152", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6c4c9013-3b45-4081-8417-30c3ef5b3152.png", "timestamp": "2024-02-15T20:55:09.431848+00:00"}}, {"id": "9effaffb-850f-46ef-9ea1-53b8e66a45e1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:20.604955+00:00", "label": "easy", "label_explanation": "The road is moderately busy with both cars and motorbikes. Traffic appears to be flowing smoothly with no major congestion or disruptions.", "snapshot": {"id": "6c4c9013-3b45-4081-8417-30c3ef5b3152", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6c4c9013-3b45-4081-8417-30c3ef5b3152.png", "timestamp": "2024-02-15T20:55:09.431848+00:00"}}, {"id": "35e9c370-c017-4963-abe9-e5cee9e53646", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:20.392160+00:00", "label": "low", "label_explanation": "The road surface is dry with no signs of water accumulation.", "snapshot": {"id": "6c4c9013-3b45-4081-8417-30c3ef5b3152", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6c4c9013-3b45-4081-8417-30c3ef5b3152.png", "timestamp": "2024-02-15T20:55:09.431848+00:00"}}, {"id": "00a07fec-10f5-49a7-8cae-8564a8d427f7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:20.113673+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry and there are no signs of water accumulation.", "snapshot": {"id": "6c4c9013-3b45-4081-8417-30c3ef5b3152", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6c4c9013-3b45-4081-8417-30c3ef5b3152.png", "timestamp": "2024-02-15T20:55:09.431848+00:00"}}, {"id": "c855b9ca-d5ed-418a-96bd-7b94e010cd5f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:19.888238+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime and the road is moderately busy with both cars and motorbikes.", "snapshot": {"id": "6c4c9013-3b45-4081-8417-30c3ef5b3152", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6c4c9013-3b45-4081-8417-30c3ef5b3152.png", "timestamp": "2024-02-15T20:55:09.431848+00:00"}}, {"id": "e328dfef-8060-494b-b10d-0602b8bfc197", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:19.681091+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "6c4c9013-3b45-4081-8417-30c3ef5b3152", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/6c4c9013-3b45-4081-8417-30c3ef5b3152.png", "timestamp": "2024-02-15T20:55:09.431848+00:00"}}, {"id": "ad5c7b58-75e1-45b2-923e-f2429077fdbe", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:50.796690+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "baaaabd3-045c-4c93-a971-a51200a9ba54", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/baaaabd3-045c-4c93-a971-a51200a9ba54.png", "timestamp": "2024-02-15T20:52:39.713963+00:00"}}, {"id": "319e703c-a748-4025-94c4-62edaa944518", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:52.019062+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible in the image. Traffic is able to flow freely in both directions.", "snapshot": {"id": "baaaabd3-045c-4c93-a971-a51200a9ba54", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/baaaabd3-045c-4c93-a971-a51200a9ba54.png", "timestamp": "2024-02-15T20:52:39.713963+00:00"}}, {"id": "f0cdecf3-207c-45d9-abda-f7a8078bfe4b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:51.767146+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "baaaabd3-045c-4c93-a971-a51200a9ba54", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/baaaabd3-045c-4c93-a971-a51200a9ba54.png", "timestamp": "2024-02-15T20:52:39.713963+00:00"}}, {"id": "f8f62a16-c90a-4251-8298-4952de198b7a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:51.498545+00:00", "label": "low", "label_explanation": "The water level on the road is low, with no significant accumulation of water. The road surface is merely wet from the recent rain.", "snapshot": {"id": "baaaabd3-045c-4c93-a971-a51200a9ba54", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/baaaabd3-045c-4c93-a971-a51200a9ba54.png", "timestamp": "2024-02-15T20:52:39.713963+00:00"}}, {"id": "f61f6eae-12ed-455f-960a-ca42a78490d0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:51.236520+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain appears to have been light, as there is no standing water or significant puddles.", "snapshot": {"id": "baaaabd3-045c-4c93-a971-a51200a9ba54", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/baaaabd3-045c-4c93-a971-a51200a9ba54.png", "timestamp": "2024-02-15T20:52:39.713963+00:00"}}, {"id": "ffda40ba-1eb6-4f45-a1de-6f8f6bacadf8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:51.024860+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy and overcast. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are several cars parked on either side of the road, and trees can be seen lining the street.", "snapshot": {"id": "baaaabd3-045c-4c93-a971-a51200a9ba54", "camera_id": "001539", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001539/baaaabd3-045c-4c93-a971-a51200a9ba54.png", "timestamp": "2024-02-15T20:52:39.713963+00:00"}}]}, {"id": "001524", "name": "AV. BRASIL ALT. RUA BELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885262, "longitude": -43.22757, "objects": ["traffic", "image_corrupted", "image_description", "water_level", "rain", "road_blockade"], "identifications": []}, {"id": "001475", "name": "R. DO CATETE X R. SILVEIRA MARTINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.220/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.926, "longitude": -43.176602, "objects": ["rain", "water_level", "image_corrupted", "traffic", "image_description", "road_blockade"], "identifications": []}, {"id": "001531", "name": "R. HADDOCK LOBO 282 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.184/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919783, "longitude": -43.215367, "objects": ["water_level", "image_description", "rain", "traffic", "image_corrupted", "road_blockade"], "identifications": [{"id": "9b02fb1a-e756-4782-8579-9eadce136c30", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.055465+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b.png", "timestamp": "2024-02-15T20:30:18.607964+00:00"}}, {"id": "b090856c-e1f9-4258-b15a-e81d0e5b1b86", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.102336+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b.png", "timestamp": "2024-02-15T20:30:18.607964+00:00"}}, {"id": "378cb743-511a-4728-a783-779eb5ffeaa1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.882861+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b.png", "timestamp": "2024-02-15T20:30:18.607964+00:00"}}, {"id": "34020206-c3ea-4ed4-888b-e3683bc398c3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:32.401487+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b.png", "timestamp": "2024-02-15T20:30:18.607964+00:00"}}, {"id": "9476138f-9872-49e1-b857-215209dfa014", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.636896+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b.png", "timestamp": "2024-02-15T20:30:18.607964+00:00"}}, {"id": "70fb1c54-90cd-4288-a719-064c9ba35a6b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.315282+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9c6a48d2-4d87-4e01-8b3a-f74e5ac9c41b.png", "timestamp": "2024-02-15T20:30:18.607964+00:00"}}, {"id": "7f7ce3a9-9586-4aec-a4f4-6210c8cc63d9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.213991+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "76f33330-0e81-434c-8044-97f8fe7e8c34", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/76f33330-0e81-434c-8044-97f8fe7e8c34.png", "timestamp": "2024-02-15T20:42:46.822897+00:00"}}, {"id": "57c5cd14-b89c-49ee-ae66-a4f067cab4e3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.034843+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "76f33330-0e81-434c-8044-97f8fe7e8c34", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/76f33330-0e81-434c-8044-97f8fe7e8c34.png", "timestamp": "2024-02-15T20:42:46.822897+00:00"}}, {"id": "0f9d6628-720d-40d7-bedb-cb2d2a7d872e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.936226+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is dry.", "snapshot": {"id": "76f33330-0e81-434c-8044-97f8fe7e8c34", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/76f33330-0e81-434c-8044-97f8fe7e8c34.png", "timestamp": "2024-02-15T20:42:46.822897+00:00"}}, {"id": "a302123f-f011-4600-b894-c280fbcfc81a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:58.400598+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "76f33330-0e81-434c-8044-97f8fe7e8c34", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/76f33330-0e81-434c-8044-97f8fe7e8c34.png", "timestamp": "2024-02-15T20:42:46.822897+00:00"}}, {"id": "72f3d3c0-796a-4b35-97f0-5c23c4773df4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:58.183670+00:00", "label": "moderate", "label_explanation": "The road has moderate traffic. There are several vehicles parked on the side of the road and a few cars driving in both directions.", "snapshot": {"id": "76f33330-0e81-434c-8044-97f8fe7e8c34", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/76f33330-0e81-434c-8044-97f8fe7e8c34.png", "timestamp": "2024-02-15T20:42:46.822897+00:00"}}, {"id": "37c32ba1-0bb1-44d1-aebd-25963e415a6f", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.575727+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "76f33330-0e81-434c-8044-97f8fe7e8c34", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/76f33330-0e81-434c-8044-97f8fe7e8c34.png", "timestamp": "2024-02-15T20:42:46.822897+00:00"}}, {"id": "edd6096d-0d6d-4a0d-ba71-a8a00bd446d4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:06.835112+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "387f7a70-b043-44b4-a912-91cb0c5011e2", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/387f7a70-b043-44b4-a912-91cb0c5011e2.png", "timestamp": "2024-02-15T20:32:44.002269+00:00"}}, {"id": "af5df7e7-e394-4861-91a6-da1ed2834ef7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:08.435703+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and passable.", "snapshot": {"id": "387f7a70-b043-44b4-a912-91cb0c5011e2", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/387f7a70-b043-44b4-a912-91cb0c5011e2.png", "timestamp": "2024-02-15T20:32:44.002269+00:00"}}, {"id": "264efdd9-a3fc-4809-bf88-643ad35693ec", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:07.232716+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "387f7a70-b043-44b4-a912-91cb0c5011e2", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/387f7a70-b043-44b4-a912-91cb0c5011e2.png", "timestamp": "2024-02-15T20:32:44.002269+00:00"}}, {"id": "e16462df-d7e3-4bc4-9e13-d81b9fa739ec", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:05.950965+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "387f7a70-b043-44b4-a912-91cb0c5011e2", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/387f7a70-b043-44b4-a912-91cb0c5011e2.png", "timestamp": "2024-02-15T20:32:44.002269+00:00"}}, {"id": "7f140074-04a7-4ba5-95d0-1283e5050689", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:07.983203+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move freely.", "snapshot": {"id": "387f7a70-b043-44b4-a912-91cb0c5011e2", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/387f7a70-b043-44b4-a912-91cb0c5011e2.png", "timestamp": "2024-02-15T20:32:44.002269+00:00"}}, {"id": "9fb0b93f-fb23-4f7e-9553-7f7dbb776cc8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:06.290516+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy and overcast. There are several vehicles parked on the side of the road and pedestrians are walking on the sidewalk.", "snapshot": {"id": "387f7a70-b043-44b4-a912-91cb0c5011e2", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/387f7a70-b043-44b4-a912-91cb0c5011e2.png", "timestamp": "2024-02-15T20:32:44.002269+00:00"}}, {"id": "d29fa6c7-c4ae-42c7-be97-f68247d65ab1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.879315+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "9f856617-481e-4455-b368-8f71fa1318ed", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9f856617-481e-4455-b368-8f71fa1318ed.png", "timestamp": "2024-02-15T20:45:11.379791+00:00"}}, {"id": "7aca418e-2bf7-4d01-b1a8-c01f3d747aa8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.666422+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "9f856617-481e-4455-b368-8f71fa1318ed", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9f856617-481e-4455-b368-8f71fa1318ed.png", "timestamp": "2024-02-15T20:45:11.379791+00:00"}}, {"id": "36cb7ee6-c1eb-4fce-9350-0e906c9c9cb7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.264699+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several parked cars on the side of the road and pedestrians are walking on the sidewalk.", "snapshot": {"id": "9f856617-481e-4455-b368-8f71fa1318ed", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9f856617-481e-4455-b368-8f71fa1318ed.png", "timestamp": "2024-02-15T20:45:11.379791+00:00"}}, {"id": "fef3f625-eead-4013-bb9e-5f778d61d1ae", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.007924+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9f856617-481e-4455-b368-8f71fa1318ed", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9f856617-481e-4455-b368-8f71fa1318ed.png", "timestamp": "2024-02-15T20:45:11.379791+00:00"}}, {"id": "cf5d0bf8-3f15-4f73-a620-9bb4cfd86f0c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.212102+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several cars on the road, but they are able to move without any significant delays.", "snapshot": {"id": "9f856617-481e-4455-b368-8f71fa1318ed", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9f856617-481e-4455-b368-8f71fa1318ed.png", "timestamp": "2024-02-15T20:45:11.379791+00:00"}}, {"id": "5bb2c951-50f0-4852-94bf-1ff5ff1351e2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.660655+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable.", "snapshot": {"id": "9f856617-481e-4455-b368-8f71fa1318ed", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/9f856617-481e-4455-b368-8f71fa1318ed.png", "timestamp": "2024-02-15T20:45:11.379791+00:00"}}, {"id": "37071f60-2908-4234-9c69-92110051e372", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.232384+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "a21b8370-d1a5-4cb9-8bcf-2cb430507e05", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/a21b8370-d1a5-4cb9-8bcf-2cb430507e05.png", "timestamp": "2024-02-15T20:35:17.011382+00:00"}}, {"id": "6aaf755d-0c66-490d-8049-9833c8365aa3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:34.595773+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "a21b8370-d1a5-4cb9-8bcf-2cb430507e05", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/a21b8370-d1a5-4cb9-8bcf-2cb430507e05.png", "timestamp": "2024-02-15T20:35:17.011382+00:00"}}, {"id": "ca8c831c-4396-4d3e-8bb8-cbfb8b54b03b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.367974+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "a21b8370-d1a5-4cb9-8bcf-2cb430507e05", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/a21b8370-d1a5-4cb9-8bcf-2cb430507e05.png", "timestamp": "2024-02-15T20:35:17.011382+00:00"}}, {"id": "a396b4aa-ea16-4ee0-bff3-904915a90caa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:32.689221+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "a21b8370-d1a5-4cb9-8bcf-2cb430507e05", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/a21b8370-d1a5-4cb9-8bcf-2cb430507e05.png", "timestamp": "2024-02-15T20:35:17.011382+00:00"}}, {"id": "4a8b57f5-7116-476e-8f55-35b422f870e2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:32.099044+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a21b8370-d1a5-4cb9-8bcf-2cb430507e05", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/a21b8370-d1a5-4cb9-8bcf-2cb430507e05.png", "timestamp": "2024-02-15T20:35:17.011382+00:00"}}, {"id": "9bc87c82-3034-4826-ad36-ed38266b444f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.821550+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "a21b8370-d1a5-4cb9-8bcf-2cb430507e05", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/a21b8370-d1a5-4cb9-8bcf-2cb430507e05.png", "timestamp": "2024-02-15T20:35:17.011382+00:00"}}, {"id": "09bb422a-33b4-41bf-9fd8-bd08911de2e2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:03.159292+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "d8e683f2-f982-4c20-9e5e-19146c4397dd", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/d8e683f2-f982-4c20-9e5e-19146c4397dd.png", "timestamp": "2024-02-15T20:37:49.048347+00:00"}}, {"id": "d82d25ef-c064-48dd-b2db-9d14b8fbd507", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:04.434278+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several cars parked on the side of the road and some vehicles are driving on the street.", "snapshot": {"id": "d8e683f2-f982-4c20-9e5e-19146c4397dd", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/d8e683f2-f982-4c20-9e5e-19146c4397dd.png", "timestamp": "2024-02-15T20:37:49.048347+00:00"}}, {"id": "2fbb1075-2601-4510-848a-c428c614073d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:01.891604+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d8e683f2-f982-4c20-9e5e-19146c4397dd", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/d8e683f2-f982-4c20-9e5e-19146c4397dd.png", "timestamp": "2024-02-15T20:37:49.048347+00:00"}}, {"id": "4ec98cb5-191e-4203-90c3-daa82437ea82", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:03.836842+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "d8e683f2-f982-4c20-9e5e-19146c4397dd", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/d8e683f2-f982-4c20-9e5e-19146c4397dd.png", "timestamp": "2024-02-15T20:37:49.048347+00:00"}}, {"id": "96e4cb19-df5c-46f4-aa45-e25ff312d073", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.419846+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several parked cars on the side of the road and pedestrians walking on the sidewalk.", "snapshot": {"id": "d8e683f2-f982-4c20-9e5e-19146c4397dd", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/d8e683f2-f982-4c20-9e5e-19146c4397dd.png", "timestamp": "2024-02-15T20:37:49.048347+00:00"}}, {"id": "7f9c6a9e-5c7f-4f8a-833f-c10e4709b12f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:05.166021+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable.", "snapshot": {"id": "d8e683f2-f982-4c20-9e5e-19146c4397dd", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/d8e683f2-f982-4c20-9e5e-19146c4397dd.png", "timestamp": "2024-02-15T20:37:49.048347+00:00"}}, {"id": "38077927-7254-41d7-8d73-5d5e77fe0ffa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.885044+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles parked on the side of the road and people walking on the sidewalk.", "snapshot": {"id": "abf838b3-eff1-4e69-925f-83dbb06bc059", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/abf838b3-eff1-4e69-925f-83dbb06bc059.png", "timestamp": "2024-02-15T20:40:20.591848+00:00"}}, {"id": "9ae666f8-238f-4927-b0e1-bc0aa011965c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.234428+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. Traffic is able to flow freely.", "snapshot": {"id": "abf838b3-eff1-4e69-925f-83dbb06bc059", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/abf838b3-eff1-4e69-925f-83dbb06bc059.png", "timestamp": "2024-02-15T20:40:20.591848+00:00"}}, {"id": "3fa0dd03-08c7-4a35-b199-cdcee5dd2429", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.633431+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "abf838b3-eff1-4e69-925f-83dbb06bc059", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/abf838b3-eff1-4e69-925f-83dbb06bc059.png", "timestamp": "2024-02-15T20:40:20.591848+00:00"}}, {"id": "62f893a7-1fb9-46ee-b35d-a1882fbf9977", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.608340+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "abf838b3-eff1-4e69-925f-83dbb06bc059", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/abf838b3-eff1-4e69-925f-83dbb06bc059.png", "timestamp": "2024-02-15T20:40:20.591848+00:00"}}, {"id": "7c5a76a7-fb16-4b7d-a403-fd2a84f9bbb4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.940947+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move without significant hindrance.", "snapshot": {"id": "abf838b3-eff1-4e69-925f-83dbb06bc059", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/abf838b3-eff1-4e69-925f-83dbb06bc059.png", "timestamp": "2024-02-15T20:40:20.591848+00:00"}}, {"id": "7362ff16-9338-4850-bb34-605d7fc29614", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.326019+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "abf838b3-eff1-4e69-925f-83dbb06bc059", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/abf838b3-eff1-4e69-925f-83dbb06bc059.png", "timestamp": "2024-02-15T20:40:20.591848+00:00"}}, {"id": "227fa3d4-68e2-4e19-a4a3-712c971593c5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.264850+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "b41beafd-b789-4a2d-a811-6dc098a72d78", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/b41beafd-b789-4a2d-a811-6dc098a72d78.png", "timestamp": "2024-02-15T20:47:33.187096+00:00"}}, {"id": "f2019aa4-909c-4a7e-aa9b-b66ca5e12af9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:44.962692+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "b41beafd-b789-4a2d-a811-6dc098a72d78", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/b41beafd-b789-4a2d-a811-6dc098a72d78.png", "timestamp": "2024-02-15T20:47:33.187096+00:00"}}, {"id": "8e618846-e04d-40af-9b48-0143097ab34c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.831161+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "b41beafd-b789-4a2d-a811-6dc098a72d78", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/b41beafd-b789-4a2d-a811-6dc098a72d78.png", "timestamp": "2024-02-15T20:47:33.187096+00:00"}}, {"id": "2960dd59-d152-4360-acdb-1ea5690b3ebd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:45.502722+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "b41beafd-b789-4a2d-a811-6dc098a72d78", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/b41beafd-b789-4a2d-a811-6dc098a72d78.png", "timestamp": "2024-02-15T20:47:33.187096+00:00"}}, {"id": "38534b57-f261-4aa7-a6e9-a1a163434d77", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:44.465381+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b41beafd-b789-4a2d-a811-6dc098a72d78", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/b41beafd-b789-4a2d-a811-6dc098a72d78.png", "timestamp": "2024-02-15T20:47:33.187096+00:00"}}, {"id": "6599eb82-c2dd-431f-ab5e-29149463b648", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:44.775522+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "b41beafd-b789-4a2d-a811-6dc098a72d78", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/b41beafd-b789-4a2d-a811-6dc098a72d78.png", "timestamp": "2024-02-15T20:47:33.187096+00:00"}}, {"id": "b2e1976f-aab4-477a-9f30-d614a1af4dcd", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.695086+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible in the image.", "snapshot": {"id": "5238d0fb-477d-4a79-8f9d-c96677556020", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/5238d0fb-477d-4a79-8f9d-c96677556020.png", "timestamp": "2024-02-15T20:52:22.656883+00:00"}}, {"id": "29d06440-a051-4e01-8e38-f81e6904f9d8", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.214828+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "5238d0fb-477d-4a79-8f9d-c96677556020", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/5238d0fb-477d-4a79-8f9d-c96677556020.png", "timestamp": "2024-02-15T20:52:22.656883+00:00"}}, {"id": "2ac7a11a-372c-4406-93db-c61b54a3b07b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.438079+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible in the image.", "snapshot": {"id": "5238d0fb-477d-4a79-8f9d-c96677556020", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/5238d0fb-477d-4a79-8f9d-c96677556020.png", "timestamp": "2024-02-15T20:52:22.656883+00:00"}}, {"id": "0893c199-1b4b-41c0-8b92-e954bc0846f0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:33.208901+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. There are several vehicles parked on the side of the road and a few pedestrians are walking on the sidewalk.", "snapshot": {"id": "5238d0fb-477d-4a79-8f9d-c96677556020", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/5238d0fb-477d-4a79-8f9d-c96677556020.png", "timestamp": "2024-02-15T20:52:22.656883+00:00"}}, {"id": "02c84af9-6b40-4233-9edc-0cf3419ebcf2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:32.907526+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5238d0fb-477d-4a79-8f9d-c96677556020", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/5238d0fb-477d-4a79-8f9d-c96677556020.png", "timestamp": "2024-02-15T20:52:22.656883+00:00"}}, {"id": "73663cde-3081-4bcd-a9c3-31641dfe2895", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:33.783735+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road from other sources such as sprinklers or a nearby water body.", "snapshot": {"id": "5238d0fb-477d-4a79-8f9d-c96677556020", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/5238d0fb-477d-4a79-8f9d-c96677556020.png", "timestamp": "2024-02-15T20:52:22.656883+00:00"}}, {"id": "7333e8bd-a2a7-4589-af99-b11bce80bd4f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.930121+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions.", "snapshot": {"id": "3a8b229e-a153-4f65-a3c5-3c80521586e7", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/3a8b229e-a153-4f65-a3c5-3c80521586e7.png", "timestamp": "2024-02-15T20:49:58.675544+00:00"}}, {"id": "3f4a39da-14f2-4664-ab82-1fb02e5e7325", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.324264+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "3a8b229e-a153-4f65-a3c5-3c80521586e7", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/3a8b229e-a153-4f65-a3c5-3c80521586e7.png", "timestamp": "2024-02-15T20:49:58.675544+00:00"}}, {"id": "7bd4c9ba-1e36-4309-bf21-95f39c0d6775", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:10.240218+00:00", "label": "free", "label_explanation": "The road is free of any obstructions, allowing for smooth traffic flow.", "snapshot": {"id": "3a8b229e-a153-4f65-a3c5-3c80521586e7", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/3a8b229e-a153-4f65-a3c5-3c80521586e7.png", "timestamp": "2024-02-15T20:49:58.675544+00:00"}}, {"id": "63c6293a-5c7b-4f65-9567-959c7e2f930e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.643517+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible signs of water.", "snapshot": {"id": "3a8b229e-a153-4f65-a3c5-3c80521586e7", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/3a8b229e-a153-4f65-a3c5-3c80521586e7.png", "timestamp": "2024-02-15T20:49:58.675544+00:00"}}, {"id": "45c871e0-d9f0-41ea-b429-68775b83915a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.697773+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3a8b229e-a153-4f65-a3c5-3c80521586e7", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/3a8b229e-a153-4f65-a3c5-3c80521586e7.png", "timestamp": "2024-02-15T20:49:58.675544+00:00"}}, {"id": "71b0c699-c339-4a2b-875e-db596dc6f8d7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.105403+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a street with parked cars on one side and buildings on the other. The weather appears to be cloudy and there are no visible signs of rain.", "snapshot": {"id": "3a8b229e-a153-4f65-a3c5-3c80521586e7", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/3a8b229e-a153-4f65-a3c5-3c80521586e7.png", "timestamp": "2024-02-15T20:49:58.675544+00:00"}}, {"id": "426a0955-49a1-42a3-84af-e67a5c766c3a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:02.577860+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "32ee70ef-8716-4305-bb73-83d75b35c7fe", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/32ee70ef-8716-4305-bb73-83d75b35c7fe.png", "timestamp": "2024-02-15T20:54:52.788365+00:00"}}, {"id": "0e118ce8-12e9-4001-93f2-bbc5a2631709", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:03.362016+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "32ee70ef-8716-4305-bb73-83d75b35c7fe", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/32ee70ef-8716-4305-bb73-83d75b35c7fe.png", "timestamp": "2024-02-15T20:54:52.788365+00:00"}}, {"id": "884b08a6-a114-4a87-bd8d-7a5f1bda9fd5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:03.853977+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "32ee70ef-8716-4305-bb73-83d75b35c7fe", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/32ee70ef-8716-4305-bb73-83d75b35c7fe.png", "timestamp": "2024-02-15T20:54:52.788365+00:00"}}, {"id": "8e8218c8-7b17-4076-913d-c74f49d9e891", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:03.613634+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "32ee70ef-8716-4305-bb73-83d75b35c7fe", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/32ee70ef-8716-4305-bb73-83d75b35c7fe.png", "timestamp": "2024-02-15T20:54:52.788365+00:00"}}, {"id": "773725cd-40fa-47ca-b64e-96cba3143d11", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:03.136184+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "32ee70ef-8716-4305-bb73-83d75b35c7fe", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/32ee70ef-8716-4305-bb73-83d75b35c7fe.png", "timestamp": "2024-02-15T20:54:52.788365+00:00"}}, {"id": "80a0638e-7723-47bb-8df2-5b27313bcbdb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:02.846374+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "32ee70ef-8716-4305-bb73-83d75b35c7fe", "camera_id": "001531", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001531/32ee70ef-8716-4305-bb73-83d75b35c7fe.png", "timestamp": "2024-02-15T20:54:52.788365+00:00"}}]}, {"id": "000276", "name": "AV. VIEIRA SOUTO X R. VIN\u00cdCIUS DE MORAES", "rtsp_url": "rtsp://admin2:7lanmstr@10.52.22.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986577, "longitude": -43.203073, "objects": ["image_description", "image_corrupted", "water_level", "rain", "road_blockade", "traffic"], "identifications": [{"id": "da87ac46-3933-42c7-b815-3c4e2f684a79", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.838754+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "d583530f-f1f3-49a8-9388-d632dfda2c71", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/d583530f-f1f3-49a8-9388-d632dfda2c71.png", "timestamp": "2024-02-15T20:35:31.380787+00:00"}}, {"id": "06c8198d-cedc-42e4-8884-398d4aeccdcb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.624549+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "d583530f-f1f3-49a8-9388-d632dfda2c71", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/d583530f-f1f3-49a8-9388-d632dfda2c71.png", "timestamp": "2024-02-15T20:35:31.380787+00:00"}}, {"id": "b046fd5d-087d-40f7-9bb2-fc8985b61e33", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.159885+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d583530f-f1f3-49a8-9388-d632dfda2c71", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/d583530f-f1f3-49a8-9388-d632dfda2c71.png", "timestamp": "2024-02-15T20:35:31.380787+00:00"}}, {"id": "0c640d53-7afd-4ccb-8c38-a1c55c46f6ae", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:44.933363+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a pedestrian walkway on the left and tall buildings on the right. Trees are present on both sides of the road, and the weather appears cloudy.", "snapshot": {"id": "d583530f-f1f3-49a8-9388-d632dfda2c71", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/d583530f-f1f3-49a8-9388-d632dfda2c71.png", "timestamp": "2024-02-15T20:35:31.380787+00:00"}}, {"id": "fe0acc1a-da55-4c50-9228-87e05bfb03d8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:44.724982+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d583530f-f1f3-49a8-9388-d632dfda2c71", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/d583530f-f1f3-49a8-9388-d632dfda2c71.png", "timestamp": "2024-02-15T20:35:31.380787+00:00"}}, {"id": "82b8c37c-5933-408e-a71b-23a09570fd9e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.386133+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not impede traffic flow.", "snapshot": {"id": "d583530f-f1f3-49a8-9388-d632dfda2c71", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/d583530f-f1f3-49a8-9388-d632dfda2c71.png", "timestamp": "2024-02-15T20:35:31.380787+00:00"}}, {"id": "3f547a54-1d91-42c1-9992-5250e2e5fdab", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.640187+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a steady flow of vehicles. Traffic appears to be moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "ef005627-650c-43ba-bf94-3ca2e19617ee", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/ef005627-650c-43ba-bf94-3ca2e19617ee.png", "timestamp": "2024-02-15T20:40:21.682380+00:00"}}, {"id": "35f75bb4-0960-4969-8d0f-f87c02b217ab", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.887808+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "ef005627-650c-43ba-bf94-3ca2e19617ee", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/ef005627-650c-43ba-bf94-3ca2e19617ee.png", "timestamp": "2024-02-15T20:40:21.682380+00:00"}}, {"id": "b4accbc9-6f11-4ef9-a8b5-4ab101061a7c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.600212+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a pedestrian crossing, traffic lights, and buildings in the background. Trees are present on the left side of the road, and the sky appears cloudy.", "snapshot": {"id": "ef005627-650c-43ba-bf94-3ca2e19617ee", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/ef005627-650c-43ba-bf94-3ca2e19617ee.png", "timestamp": "2024-02-15T20:40:21.682380+00:00"}}, {"id": "65c44a93-0510-4e6a-8b86-784dd0c7378c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.369973+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation. Therefore, the water level is low.", "snapshot": {"id": "ef005627-650c-43ba-bf94-3ca2e19617ee", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/ef005627-650c-43ba-bf94-3ca2e19617ee.png", "timestamp": "2024-02-15T20:40:21.682380+00:00"}}, {"id": "6fa44993-fbe8-469b-abfa-88cc50c5b51c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.988205+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is flowing freely in both directions.", "snapshot": {"id": "ef005627-650c-43ba-bf94-3ca2e19617ee", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/ef005627-650c-43ba-bf94-3ca2e19617ee.png", "timestamp": "2024-02-15T20:40:21.682380+00:00"}}, {"id": "b598ec70-9153-4041-85ce-f3eb631cd827", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.359228+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ef005627-650c-43ba-bf94-3ca2e19617ee", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/ef005627-650c-43ba-bf94-3ca2e19617ee.png", "timestamp": "2024-02-15T20:40:21.682380+00:00"}}, {"id": "9b7e2082-1fa9-41a8-a101-cf74760c1e3a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.901630+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime and the road is moderately wide, with multiple lanes for traffic in both directions. The road is lined with buildings and trees, and there are traffic lights and signs present. There are several vehicles visible on the road, including cars and buses.", "snapshot": {"id": "5749d557-c8ea-4b99-a246-b6b96e487e17", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/5749d557-c8ea-4b99-a246-b6b96e487e17.png", "timestamp": "2024-02-15T20:42:44.703645+00:00"}}, {"id": "847480a0-dadd-463c-a7f5-a2246c1c5847", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.415073+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "5749d557-c8ea-4b99-a246-b6b96e487e17", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/5749d557-c8ea-4b99-a246-b6b96e487e17.png", "timestamp": "2024-02-15T20:42:44.703645+00:00"}}, {"id": "b4fe08b3-bff6-4531-aed0-2a91c3456135", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.226770+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry and there are no visible signs of water.", "snapshot": {"id": "5749d557-c8ea-4b99-a246-b6b96e487e17", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/5749d557-c8ea-4b99-a246-b6b96e487e17.png", "timestamp": "2024-02-15T20:42:44.703645+00:00"}}, {"id": "b5f96b7f-ef5a-49f1-b676-6381d75a2e1d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.741528+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "5749d557-c8ea-4b99-a246-b6b96e487e17", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/5749d557-c8ea-4b99-a246-b6b96e487e17.png", "timestamp": "2024-02-15T20:42:44.703645+00:00"}}, {"id": "eeb7d1ff-a693-4e46-ac76-8702db417c7f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.073475+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is clear and free of any obstructions.", "snapshot": {"id": "5749d557-c8ea-4b99-a246-b6b96e487e17", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/5749d557-c8ea-4b99-a246-b6b96e487e17.png", "timestamp": "2024-02-15T20:42:44.703645+00:00"}}, {"id": "816f4a5c-ffe6-41e5-8be7-5a4125cca797", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.600266+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5749d557-c8ea-4b99-a246-b6b96e487e17", "camera_id": "000276", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000276/5749d557-c8ea-4b99-a246-b6b96e487e17.png", "timestamp": "2024-02-15T20:42:44.703645+00:00"}}]}, {"id": "001613", "name": "R. DR. LAGDEN, N.30 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914635, "longitude": -43.195109, "objects": ["image_description", "road_blockade", "image_corrupted", "traffic", "water_level", "rain"], "identifications": [{"id": "6d8bc25f-0d21-4710-81aa-1d3fbf55c57c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:57.803748+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move freely. The traffic is not significantly affected by the rain.", "snapshot": {"id": "51aca8f9-d192-4c97-b307-0f35d7a525db", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/51aca8f9-d192-4c97-b307-0f35d7a525db.png", "timestamp": "2024-02-15T20:32:38.446168+00:00"}}, {"id": "a44dc0f4-a69b-40b5-928e-305e9d13b16b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:58.286200+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "51aca8f9-d192-4c97-b307-0f35d7a525db", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/51aca8f9-d192-4c97-b307-0f35d7a525db.png", "timestamp": "2024-02-15T20:32:38.446168+00:00"}}, {"id": "836911db-1b21-4c95-81ef-5505d7adca67", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:56.459383+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also puddles of water on the road, which are reflecting the light from the streetlights.", "snapshot": {"id": "51aca8f9-d192-4c97-b307-0f35d7a525db", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/51aca8f9-d192-4c97-b307-0f35d7a525db.png", "timestamp": "2024-02-15T20:32:38.446168+00:00"}}, {"id": "6be216c8-ea26-4eb1-a680-948ebe94f350", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:54.827210+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "51aca8f9-d192-4c97-b307-0f35d7a525db", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/51aca8f9-d192-4c97-b307-0f35d7a525db.png", "timestamp": "2024-02-15T20:32:38.446168+00:00"}}, {"id": "4b9040f0-2b99-497e-9bae-c99367c4eda2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:57.136411+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and the road surface is still visible. There is no significant accumulation of water on the road.", "snapshot": {"id": "51aca8f9-d192-4c97-b307-0f35d7a525db", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/51aca8f9-d192-4c97-b307-0f35d7a525db.png", "timestamp": "2024-02-15T20:32:38.446168+00:00"}}, {"id": "fb4971ab-5f3f-4007-baab-01a72a4481f6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:55.519178+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, straight road with multiple lanes, surrounded by buildings and trees. The weather appears to be cloudy and overcast.", "snapshot": {"id": "51aca8f9-d192-4c97-b307-0f35d7a525db", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/51aca8f9-d192-4c97-b307-0f35d7a525db.png", "timestamp": "2024-02-15T20:32:38.446168+00:00"}}, {"id": "1cee7b3d-40be-4dec-a976-d7cd5ee56312", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.694289+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the road.", "snapshot": {"id": "a8585a1c-568b-440b-b4f2-8ef1ba3b0eca", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/a8585a1c-568b-440b-b4f2-8ef1ba3b0eca.png", "timestamp": "2024-02-15T20:35:13.050035+00:00"}}, {"id": "112c2929-f6bd-4974-83ad-7db672098c1f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.853136+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "a8585a1c-568b-440b-b4f2-8ef1ba3b0eca", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/a8585a1c-568b-440b-b4f2-8ef1ba3b0eca.png", "timestamp": "2024-02-15T20:35:13.050035+00:00"}}, {"id": "c53d4017-915c-4327-89b4-65d756611814", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:26.553812+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a8585a1c-568b-440b-b4f2-8ef1ba3b0eca", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/a8585a1c-568b-440b-b4f2-8ef1ba3b0eca.png", "timestamp": "2024-02-15T20:35:13.050035+00:00"}}, {"id": "677bdac4-d5f2-40b0-af56-5a36f28bd082", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.460617+00:00", "label": "easy", "label_explanation": "The traffic is light, with only a few cars visible on the road.", "snapshot": {"id": "a8585a1c-568b-440b-b4f2-8ef1ba3b0eca", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/a8585a1c-568b-440b-b4f2-8ef1ba3b0eca.png", "timestamp": "2024-02-15T20:35:13.050035+00:00"}}, {"id": "86330cf6-c5c7-40a2-8ad0-d2b14af133e0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:28.151140+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles of water present.", "snapshot": {"id": "a8585a1c-568b-440b-b4f2-8ef1ba3b0eca", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/a8585a1c-568b-440b-b4f2-8ef1ba3b0eca.png", "timestamp": "2024-02-15T20:35:13.050035+00:00"}}, {"id": "9677fc73-20bf-4b5e-adb4-abc45140dd93", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:27.068088+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during the day. It is a four-lane road with a painted median strip. There are trees on either side of the road, and buildings and a stadium in the background. The weather appears to be overcast, and the road is wet from recent rain.", "snapshot": {"id": "a8585a1c-568b-440b-b4f2-8ef1ba3b0eca", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/a8585a1c-568b-440b-b4f2-8ef1ba3b0eca.png", "timestamp": "2024-02-15T20:35:13.050035+00:00"}}, {"id": "1c081c56-3233-43f2-89a8-5f1fe8b625f3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:01.851839+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades hindering traffic flow.", "snapshot": {"id": "3f1be178-d60c-4e04-a542-693bf0943ab6", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3f1be178-d60c-4e04-a542-693bf0943ab6.png", "timestamp": "2024-02-15T20:37:44.394043+00:00"}}, {"id": "525c63b5-fc85-4181-9f91-b9a64dca23ab", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.795840+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no significant congestion or obstacles observed.", "snapshot": {"id": "3f1be178-d60c-4e04-a542-693bf0943ab6", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3f1be178-d60c-4e04-a542-693bf0943ab6.png", "timestamp": "2024-02-15T20:37:44.394043+00:00"}}, {"id": "1cdadc51-d03f-4607-a853-7fa405a2b88a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.039750+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "3f1be178-d60c-4e04-a542-693bf0943ab6", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3f1be178-d60c-4e04-a542-693bf0943ab6.png", "timestamp": "2024-02-15T20:37:44.394043+00:00"}}, {"id": "3d8b5d09-aa2a-44f7-a2b4-fa376ec1eac1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:58.940935+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3f1be178-d60c-4e04-a542-693bf0943ab6", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3f1be178-d60c-4e04-a542-693bf0943ab6.png", "timestamp": "2024-02-15T20:37:44.394043+00:00"}}, {"id": "654abc40-304b-4250-a649-d1d4b3675df5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.727904+00:00", "label": "false", "label_explanation": "There are no visible signs of rain or wetness on the road surface.", "snapshot": {"id": "3f1be178-d60c-4e04-a542-693bf0943ab6", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3f1be178-d60c-4e04-a542-693bf0943ab6.png", "timestamp": "2024-02-15T20:37:44.394043+00:00"}}, {"id": "df9fd770-6224-46ec-8309-b11f8fd1a620", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:37:59.241341+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with a mix of sunlight and shadows.", "snapshot": {"id": "3f1be178-d60c-4e04-a542-693bf0943ab6", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3f1be178-d60c-4e04-a542-693bf0943ab6.png", "timestamp": "2024-02-15T20:37:44.394043+00:00"}}, {"id": "8773d369-12ed-4e6c-a368-4d891b26dd6b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:29.651336+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "b9e52073-e3fd-4263-9147-1a35484c5323", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/b9e52073-e3fd-4263-9147-1a35484c5323.png", "timestamp": "2024-02-15T20:40:14.944376+00:00"}}, {"id": "08041d77-131f-472e-98c0-04f4c481178e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:30.245985+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "b9e52073-e3fd-4263-9147-1a35484c5323", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/b9e52073-e3fd-4263-9147-1a35484c5323.png", "timestamp": "2024-02-15T20:40:14.944376+00:00"}}, {"id": "b35f203b-970e-407d-b47d-836a7839f54e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:55.756881+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "addebe95-cb50-4f08-b28e-84c80c62d5e9", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/addebe95-cb50-4f08-b28e-84c80c62d5e9.png", "timestamp": "2024-02-15T20:42:45.173964+00:00"}}, {"id": "21a26785-e2dc-4e18-90f8-ecc88d254cdf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.001753+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road.", "snapshot": {"id": "addebe95-cb50-4f08-b28e-84c80c62d5e9", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/addebe95-cb50-4f08-b28e-84c80c62d5e9.png", "timestamp": "2024-02-15T20:42:45.173964+00:00"}}, {"id": "7ed45d95-147d-4f31-b86f-c8b291b2a670", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.557797+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "addebe95-cb50-4f08-b28e-84c80c62d5e9", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/addebe95-cb50-4f08-b28e-84c80c62d5e9.png", "timestamp": "2024-02-15T20:42:45.173964+00:00"}}, {"id": "f824fe32-b9ed-4dcd-b21c-bb02af61a282", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.807753+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with a steady flow of vehicles.", "snapshot": {"id": "addebe95-cb50-4f08-b28e-84c80c62d5e9", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/addebe95-cb50-4f08-b28e-84c80c62d5e9.png", "timestamp": "2024-02-15T20:42:45.173964+00:00"}}, {"id": "7b25b283-e083-47bd-b168-5d89ae834ebe", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.320564+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "addebe95-cb50-4f08-b28e-84c80c62d5e9", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/addebe95-cb50-4f08-b28e-84c80c62d5e9.png", "timestamp": "2024-02-15T20:42:45.173964+00:00"}}, {"id": "1815a524-df82-416a-91fd-3e2a9ea0c011", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.022716+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street, buildings, and surrounding environment.", "snapshot": {"id": "addebe95-cb50-4f08-b28e-84c80c62d5e9", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/addebe95-cb50-4f08-b28e-84c80c62d5e9.png", "timestamp": "2024-02-15T20:42:45.173964+00:00"}}, {"id": "99e22eb0-45da-4edf-9d5d-8bc3e95f0661", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.441821+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "137502e1-a462-4d54-a86b-40cc6e3b3289", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/137502e1-a462-4d54-a86b-40cc6e3b3289.png", "timestamp": "2024-02-15T20:45:08.298268+00:00"}}, {"id": "96ac153b-92ac-4302-9d50-d954eb8a3cfb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.752043+00:00", "label": "true", "label_explanation": "The image is corrupted, with significant visual interference affecting clarity. There are large areas of uniform grey and green color distortions, indicating data loss or corruption.", "snapshot": {"id": "137502e1-a462-4d54-a86b-40cc6e3b3289", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/137502e1-a462-4d54-a86b-40cc6e3b3289.png", "timestamp": "2024-02-15T20:45:08.298268+00:00"}}, {"id": "5d0a6cb0-6deb-4827-9c0b-d3b7dbf8f188", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.247592+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "3ac95901-c0f8-4dba-a576-273e4e63de2a", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3ac95901-c0f8-4dba-a576-273e4e63de2a.png", "timestamp": "2024-02-15T20:47:28.387833+00:00"}}, {"id": "a0ceb5ab-1a8d-4559-8153-835bc5e1843e", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.629208+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present. The majority of the road surface is dry and visible.", "snapshot": {"id": "3ac95901-c0f8-4dba-a576-273e4e63de2a", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3ac95901-c0f8-4dba-a576-273e4e63de2a.png", "timestamp": "2024-02-15T20:47:28.387833+00:00"}}, {"id": "10904734-69a1-4147-a7f9-2efd07d2cd4d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.343213+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also small puddles of water on the road.", "snapshot": {"id": "3ac95901-c0f8-4dba-a576-273e4e63de2a", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3ac95901-c0f8-4dba-a576-273e4e63de2a.png", "timestamp": "2024-02-15T20:47:28.387833+00:00"}}, {"id": "d1a807ae-fdb3-4c43-9401-f8146e58a29d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.718889+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "3ac95901-c0f8-4dba-a576-273e4e63de2a", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3ac95901-c0f8-4dba-a576-273e4e63de2a.png", "timestamp": "2024-02-15T20:47:28.387833+00:00"}}, {"id": "45cc2cf8-5675-4850-8a56-135d5f9fbcb7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.967384+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a steady flow of vehicles moving in both directions. There are no major obstructions or delays visible.", "snapshot": {"id": "3ac95901-c0f8-4dba-a576-273e4e63de2a", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3ac95901-c0f8-4dba-a576-273e4e63de2a.png", "timestamp": "2024-02-15T20:47:28.387833+00:00"}}, {"id": "173e94b0-f24e-4865-a0cf-3ce0a455b0dd", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:40.927966+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street and surrounding buildings. It is daytime and the weather appears to be overcast, with a grey sky.", "snapshot": {"id": "3ac95901-c0f8-4dba-a576-273e4e63de2a", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/3ac95901-c0f8-4dba-a576-273e4e63de2a.png", "timestamp": "2024-02-15T20:47:28.387833+00:00"}}, {"id": "9bdb0313-afa8-4b04-bd82-8de1b3361a36", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.557878+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road.", "snapshot": {"id": "dbbc54b2-c420-485f-93db-7091ae0c1626", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/dbbc54b2-c420-485f-93db-7091ae0c1626.png", "timestamp": "2024-02-15T20:30:11.921987+00:00"}}, {"id": "e5aed36e-49cb-45d0-aa39-74fc5519323e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.297736+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "dbbc54b2-c420-485f-93db-7091ae0c1626", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/dbbc54b2-c420-485f-93db-7091ae0c1626.png", "timestamp": "2024-02-15T20:30:11.921987+00:00"}}, {"id": "df070976-6a05-447f-a8cb-ab5e527b4324", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:27.974560+00:00", "label": "low", "label_explanation": "There is no standing water or puddles on the road surface.", "snapshot": {"id": "dbbc54b2-c420-485f-93db-7091ae0c1626", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/dbbc54b2-c420-485f-93db-7091ae0c1626.png", "timestamp": "2024-02-15T20:30:11.921987+00:00"}}, {"id": "a967fd44-2645-47eb-9ce8-ffc2c86e250b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:27.113779+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "dbbc54b2-c420-485f-93db-7091ae0c1626", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/dbbc54b2-c420-485f-93db-7091ae0c1626.png", "timestamp": "2024-02-15T20:30:11.921987+00:00"}}, {"id": "0af10d57-997a-435a-8cea-f40ba1fc6d46", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:27.369698+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a few vehicles, including a bus, cars, and motorbikes. The road is wet from recent rain, but there are no significant puddles or standing water. On the left side of the road, there is a blue fence, trees, and buildings in the background. On the right side, there is a grey building and a container.", "snapshot": {"id": "dbbc54b2-c420-485f-93db-7091ae0c1626", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/dbbc54b2-c420-485f-93db-7091ae0c1626.png", "timestamp": "2024-02-15T20:30:11.921987+00:00"}}, {"id": "8e6bae45-15b8-459b-affc-7473c1e79632", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:27.629044+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "dbbc54b2-c420-485f-93db-7091ae0c1626", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/dbbc54b2-c420-485f-93db-7091ae0c1626.png", "timestamp": "2024-02-15T20:30:11.921987+00:00"}}, {"id": "c03a69be-e5cb-47d5-8231-47265ca0efc3", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.331490+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion.", "snapshot": {"id": "d7d7ed3e-d8b0-4a84-b7b5-37900521b654", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/d7d7ed3e-d8b0-4a84-b7b5-37900521b654.png", "timestamp": "2024-02-15T20:49:53.719738+00:00"}}, {"id": "0e5a6544-5bab-4cd0-aa84-12461237285f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.908630+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "d7d7ed3e-d8b0-4a84-b7b5-37900521b654", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/d7d7ed3e-d8b0-4a84-b7b5-37900521b654.png", "timestamp": "2024-02-15T20:49:53.719738+00:00"}}, {"id": "cc7dbb9b-630c-4e93-a266-47409a7149cd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.627146+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d7d7ed3e-d8b0-4a84-b7b5-37900521b654", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/d7d7ed3e-d8b0-4a84-b7b5-37900521b654.png", "timestamp": "2024-02-15T20:49:53.719738+00:00"}}, {"id": "7e8d1874-eb45-4df2-b99d-e1b9570bbaa1", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.201418+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d7d7ed3e-d8b0-4a84-b7b5-37900521b654", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/d7d7ed3e-d8b0-4a84-b7b5-37900521b654.png", "timestamp": "2024-02-15T20:49:53.719738+00:00"}}, {"id": "167409c5-7407-491b-85f4-d0592a08f461", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:06.438090+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It is a four-lane road with a painted median and trees on either side. There are cars parked on the side of the road and buildings and a stadium in the background.", "snapshot": {"id": "d7d7ed3e-d8b0-4a84-b7b5-37900521b654", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/d7d7ed3e-d8b0-4a84-b7b5-37900521b654.png", "timestamp": "2024-02-15T20:49:53.719738+00:00"}}, {"id": "4581ad97-8d63-4160-9efd-1e2c3f2d5b7c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:07.563980+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "d7d7ed3e-d8b0-4a84-b7b5-37900521b654", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/d7d7ed3e-d8b0-4a84-b7b5-37900521b654.png", "timestamp": "2024-02-15T20:49:53.719738+00:00"}}, {"id": "b9a8858e-5f92-43a5-9583-0c7869847b4a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.157905+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water accumulation or reflection.", "snapshot": {"id": "17d6c4fe-b6b0-445d-837b-8bbe4366add0", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/17d6c4fe-b6b0-445d-837b-8bbe4366add0.png", "timestamp": "2024-02-15T20:52:17.041559+00:00"}}, {"id": "c4bd8cfc-39ce-4acc-8b52-006f7a4e5755", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.943877+00:00", "label": "null", "label_explanation": "The image captures a moderately busy urban road with a clear, dry road surface. There are several vehicles on the road, including cars and buses, moving smoothly without any apparent congestion or hazards.", "snapshot": {"id": "17d6c4fe-b6b0-445d-837b-8bbe4366add0", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/17d6c4fe-b6b0-445d-837b-8bbe4366add0.png", "timestamp": "2024-02-15T20:52:17.041559+00:00"}}, {"id": "7e733ce8-a7fe-408f-afba-ca1d10fd87ef", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.934670+00:00", "label": "free", "label_explanation": "The road is free, with no obstructions or blockades. Vehicles can move freely without any hindrance.", "snapshot": {"id": "17d6c4fe-b6b0-445d-837b-8bbe4366add0", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/17d6c4fe-b6b0-445d-837b-8bbe4366add0.png", "timestamp": "2024-02-15T20:52:17.041559+00:00"}}, {"id": "05006f37-a4f5-4097-adce-9730931b9a7f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.506441+00:00", "label": "low", "label_explanation": "The water level on the road is low. There is no visible water on the road surface, and the road is completely dry.", "snapshot": {"id": "17d6c4fe-b6b0-445d-837b-8bbe4366add0", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/17d6c4fe-b6b0-445d-837b-8bbe4366add0.png", "timestamp": "2024-02-15T20:52:17.041559+00:00"}}, {"id": "ee5f6b36-585f-4249-987e-82350824af5f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:28.725733+00:00", "label": "easy", "label_explanation": "The traffic flow is easy. Vehicles are moving smoothly without any significant congestion or delays. There are no visible obstacles or hazards on the road that could impede traffic flow.", "snapshot": {"id": "17d6c4fe-b6b0-445d-837b-8bbe4366add0", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/17d6c4fe-b6b0-445d-837b-8bbe4366add0.png", "timestamp": "2024-02-15T20:52:17.041559+00:00"}}, {"id": "8404215b-c2dd-427f-8fa3-da2c71b6ec91", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:27.688567+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "17d6c4fe-b6b0-445d-837b-8bbe4366add0", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/17d6c4fe-b6b0-445d-837b-8bbe4366add0.png", "timestamp": "2024-02-15T20:52:17.041559+00:00"}}, {"id": "d5b487f3-2ed0-492b-ab96-f736cafe6a5c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:58.816893+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars on the road, but they are able to move freely.", "snapshot": {"id": "2e7064c8-1b2f-4101-affe-9914770975fd", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/2e7064c8-1b2f-4101-affe-9914770975fd.png", "timestamp": "2024-02-15T20:54:46.110042+00:00"}}, {"id": "83a4e07c-a6db-44d1-bd4f-8298014fef4f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:58.566985+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not cover a significant portion of the road surface.", "snapshot": {"id": "2e7064c8-1b2f-4101-affe-9914770975fd", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/2e7064c8-1b2f-4101-affe-9914770975fd.png", "timestamp": "2024-02-15T20:54:46.110042+00:00"}}, {"id": "0a9cfddc-f6a9-47ab-b2b7-8cd464cfd2b1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:58.046298+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with multiple lanes, surrounded by buildings and trees. The weather appears to be overcast, with dark clouds covering the sky.", "snapshot": {"id": "2e7064c8-1b2f-4101-affe-9914770975fd", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/2e7064c8-1b2f-4101-affe-9914770975fd.png", "timestamp": "2024-02-15T20:54:46.110042+00:00"}}, {"id": "d7a88f04-907f-49f6-a8a3-a9dff63d931b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:57.573989+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2e7064c8-1b2f-4101-affe-9914770975fd", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/2e7064c8-1b2f-4101-affe-9914770975fd.png", "timestamp": "2024-02-15T20:54:46.110042+00:00"}}, {"id": "4f50bcb1-f1db-49c8-9d49-9e91d31b2a32", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:58.328200+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also puddles of water on the road, which are reflecting the light from the streetlights.", "snapshot": {"id": "2e7064c8-1b2f-4101-affe-9914770975fd", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/2e7064c8-1b2f-4101-affe-9914770975fd.png", "timestamp": "2024-02-15T20:54:46.110042+00:00"}}, {"id": "6a09cf2f-d81e-4f9d-9574-c261f351b20b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:54:59.094634+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable.", "snapshot": {"id": "2e7064c8-1b2f-4101-affe-9914770975fd", "camera_id": "001613", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001613/2e7064c8-1b2f-4101-affe-9914770975fd.png", "timestamp": "2024-02-15T20:54:46.110042+00:00"}}]}, {"id": "000270", "name": "R. VISCONDE DE PIRAJ\u00c1 X AV. HENRIQUE DUMONT", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983701, "longitude": -43.213552, "objects": ["image_description", "rain", "image_corrupted", "road_blockade", "water_level", "traffic"], "identifications": [{"id": "f0675a40-7507-4cd0-a0bb-627dc092c934", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.897461+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7637d080-40bc-4b55-85f6-9acf0024e529", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/7637d080-40bc-4b55-85f6-9acf0024e529.png", "timestamp": "2024-02-15T20:30:17.693033+00:00"}}, {"id": "71e27862-2632-43d0-800c-132895948938", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.349538+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "7637d080-40bc-4b55-85f6-9acf0024e529", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/7637d080-40bc-4b55-85f6-9acf0024e529.png", "timestamp": "2024-02-15T20:30:17.693033+00:00"}}, {"id": "871a2f28-61ae-4167-93d8-40bf4eb762fc", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.724716+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "7637d080-40bc-4b55-85f6-9acf0024e529", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/7637d080-40bc-4b55-85f6-9acf0024e529.png", "timestamp": "2024-02-15T20:30:17.693033+00:00"}}, {"id": "98019699-d776-4553-8dce-32ba475d4796", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.420468+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. The road is surrounded by trees and buildings.", "snapshot": {"id": "7637d080-40bc-4b55-85f6-9acf0024e529", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/7637d080-40bc-4b55-85f6-9acf0024e529.png", "timestamp": "2024-02-15T20:30:17.693033+00:00"}}, {"id": "a7a1ebdb-540f-4a05-8eca-b7cd18225734", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:31.057897+00:00", "label": "low", "label_explanation": "There is a small amount of water on the road surface, but it is not enough to cause any significant traffic disruptions.", "snapshot": {"id": "7637d080-40bc-4b55-85f6-9acf0024e529", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/7637d080-40bc-4b55-85f6-9acf0024e529.png", "timestamp": "2024-02-15T20:30:17.693033+00:00"}}, {"id": "79cb019e-0f40-4bdb-b7b2-4163485360ee", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:30.777473+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or there is water on the road.", "snapshot": {"id": "7637d080-40bc-4b55-85f6-9acf0024e529", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/7637d080-40bc-4b55-85f6-9acf0024e529.png", "timestamp": "2024-02-15T20:30:17.693033+00:00"}}, {"id": "0c5c6481-b6ee-4e31-95ef-266230bd6202", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:03.846113+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "4187554e-ef3a-4605-9456-87647ccaa619", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4187554e-ef3a-4605-9456-87647ccaa619.png", "timestamp": "2024-02-15T20:32:42.325196+00:00"}}, {"id": "746a20b2-ea20-4693-b545-c4d6ec6f1299", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:01.428582+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be overcast, with no direct sunlight. The road is surrounded by tall buildings and lush green trees, with a few cars parked along the side of the road.", "snapshot": {"id": "4187554e-ef3a-4605-9456-87647ccaa619", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4187554e-ef3a-4605-9456-87647ccaa619.png", "timestamp": "2024-02-15T20:32:42.325196+00:00"}}, {"id": "74b9eb27-78b7-4464-a2ab-2a6df00a3f25", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:03.268864+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "4187554e-ef3a-4605-9456-87647ccaa619", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4187554e-ef3a-4605-9456-87647ccaa619.png", "timestamp": "2024-02-15T20:32:42.325196+00:00"}}, {"id": "f1dd87be-1dac-47a9-a608-78aa96b09f49", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:02.642149+00:00", "label": "low", "label_explanation": "There is no standing water visible on the road surface. The water from the rain appears to have drained away or evaporated.", "snapshot": {"id": "4187554e-ef3a-4605-9456-87647ccaa619", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4187554e-ef3a-4605-9456-87647ccaa619.png", "timestamp": "2024-02-15T20:32:42.325196+00:00"}}, {"id": "f404d758-18f2-4f90-a663-e334146a07a0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:02.033351+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall. There are also droplets of water visible on the leaves of the trees and on the parked cars.", "snapshot": {"id": "4187554e-ef3a-4605-9456-87647ccaa619", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4187554e-ef3a-4605-9456-87647ccaa619.png", "timestamp": "2024-02-15T20:32:42.325196+00:00"}}, {"id": "8d5d116d-0b11-4156-8148-d55a91985d0d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:00.741302+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4187554e-ef3a-4605-9456-87647ccaa619", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4187554e-ef3a-4605-9456-87647ccaa619.png", "timestamp": "2024-02-15T20:32:42.325196+00:00"}}, {"id": "b983971c-068d-4e72-a207-0f363e753c90", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.767867+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "f872a284-080d-406f-98ed-cf211e9d95a5", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/f872a284-080d-406f-98ed-cf211e9d95a5.png", "timestamp": "2024-02-15T20:35:17.107885+00:00"}}, {"id": "e07a7200-13d2-4354-9272-be0e29b30e04", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:33.485757+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f872a284-080d-406f-98ed-cf211e9d95a5", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/f872a284-080d-406f-98ed-cf211e9d95a5.png", "timestamp": "2024-02-15T20:35:17.107885+00:00"}}, {"id": "1ea83167-2410-4b3a-af15-7fc33d490a52", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.716228+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades.", "snapshot": {"id": "f872a284-080d-406f-98ed-cf211e9d95a5", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/f872a284-080d-406f-98ed-cf211e9d95a5.png", "timestamp": "2024-02-15T20:35:17.107885+00:00"}}, {"id": "2cde9a1c-fb2e-412c-87ba-6305095d536b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:34.124614+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "f872a284-080d-406f-98ed-cf211e9d95a5", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/f872a284-080d-406f-98ed-cf211e9d95a5.png", "timestamp": "2024-02-15T20:35:17.107885+00:00"}}, {"id": "d23e3846-fec5-463e-bd18-732ada525d12", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.378073+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hindrance to traffic.", "snapshot": {"id": "f872a284-080d-406f-98ed-cf211e9d95a5", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/f872a284-080d-406f-98ed-cf211e9d95a5.png", "timestamp": "2024-02-15T20:35:17.107885+00:00"}}, {"id": "769374eb-fa21-46de-b28e-ed8b29897e6a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:34.620279+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "f872a284-080d-406f-98ed-cf211e9d95a5", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/f872a284-080d-406f-98ed-cf211e9d95a5.png", "timestamp": "2024-02-15T20:35:17.107885+00:00"}}, {"id": "8e32e8df-3728-49b8-b47d-0c0ef870872d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.228889+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "93978bf2-6f4d-482e-8843-0b498a4098cf", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/93978bf2-6f4d-482e-8843-0b498a4098cf.png", "timestamp": "2024-02-15T20:37:47.469424+00:00"}}, {"id": "59740616-75a3-43e1-8abd-ae6a56d092a2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:01.844707+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with lush green trees on either side. It is daytime and there are a few vehicles on the road, including a bus and a yellow car. The road surface is wet from the rain, but there are no significant obstructions or hazards visible.", "snapshot": {"id": "93978bf2-6f4d-482e-8843-0b498a4098cf", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/93978bf2-6f4d-482e-8843-0b498a4098cf.png", "timestamp": "2024-02-15T20:37:47.469424+00:00"}}, {"id": "b7cc2d66-b882-47e8-be6c-b372f2f07b2a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:04.059624+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "93978bf2-6f4d-482e-8843-0b498a4098cf", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/93978bf2-6f4d-482e-8843-0b498a4098cf.png", "timestamp": "2024-02-15T20:37:47.469424+00:00"}}, {"id": "5af9daef-923e-45c7-b750-9eae258e3219", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:03.481519+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a few vehicles visible in both directions. Traffic appears to be flowing smoothly, with no major disruptions or congestion.", "snapshot": {"id": "93978bf2-6f4d-482e-8843-0b498a4098cf", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/93978bf2-6f4d-482e-8843-0b498a4098cf.png", "timestamp": "2024-02-15T20:37:47.469424+00:00"}}, {"id": "c6342590-96da-4362-a540-3cecbcc0f0cd", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.988133+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "93978bf2-6f4d-482e-8843-0b498a4098cf", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/93978bf2-6f4d-482e-8843-0b498a4098cf.png", "timestamp": "2024-02-15T20:37:47.469424+00:00"}}, {"id": "8c2d26b3-5345-4ad6-b65c-7950441b6b1e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.887028+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "93978bf2-6f4d-482e-8843-0b498a4098cf", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/93978bf2-6f4d-482e-8843-0b498a4098cf.png", "timestamp": "2024-02-15T20:37:47.469424+00:00"}}, {"id": "31bc2ba7-eae1-452d-871f-8f4a8b517c53", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.488224+00:00", "label": "false", "label_explanation": "While the image shows a wet road surface, there is no active rain visible in the image.", "snapshot": {"id": "fea0aff7-ede8-47d1-aa30-0d6c282b5d7a", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/fea0aff7-ede8-47d1-aa30-0d6c282b5d7a.png", "timestamp": "2024-02-15T20:40:20.000964+00:00"}}, {"id": "4f120569-69fb-4147-82d6-ced515dce890", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.475126+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for the free flow of traffic.", "snapshot": {"id": "fea0aff7-ede8-47d1-aa30-0d6c282b5d7a", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/fea0aff7-ede8-47d1-aa30-0d6c282b5d7a.png", "timestamp": "2024-02-15T20:40:20.000964+00:00"}}, {"id": "d820767b-603c-4eb9-b201-850984448429", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:35.286466+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "fea0aff7-ede8-47d1-aa30-0d6c282b5d7a", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/fea0aff7-ede8-47d1-aa30-0d6c282b5d7a.png", "timestamp": "2024-02-15T20:40:20.000964+00:00"}}, {"id": "cca0a0cd-769d-40ba-8bae-8d2f15b5c351", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:33.869718+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fea0aff7-ede8-47d1-aa30-0d6c282b5d7a", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/fea0aff7-ede8-47d1-aa30-0d6c282b5d7a.png", "timestamp": "2024-02-15T20:40:20.000964+00:00"}}, {"id": "ed36618c-7634-46f8-af42-20e83467708a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.836050+00:00", "label": "low", "label_explanation": "There is no standing water or flooding observed on the road surface.", "snapshot": {"id": "fea0aff7-ede8-47d1-aa30-0d6c282b5d7a", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/fea0aff7-ede8-47d1-aa30-0d6c282b5d7a.png", "timestamp": "2024-02-15T20:40:20.000964+00:00"}}, {"id": "a6cc109d-83ca-4341-be8e-2ca014dd983e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.139097+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. The road is lined with mature trees and there are buildings and foliage in the background.", "snapshot": {"id": "fea0aff7-ede8-47d1-aa30-0d6c282b5d7a", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/fea0aff7-ede8-47d1-aa30-0d6c282b5d7a.png", "timestamp": "2024-02-15T20:40:20.000964+00:00"}}, {"id": "9cee92be-f458-4769-86e4-dc16776bc124", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.465937+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with some cars parked on the street.", "snapshot": {"id": "1b3284d6-61d7-4985-bd4a-e871d131ad1c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/1b3284d6-61d7-4985-bd4a-e871d131ad1c.png", "timestamp": "2024-02-15T20:42:49.166710+00:00"}}, {"id": "58922068-ec17-4612-9597-6f54895f1935", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.672908+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "1b3284d6-61d7-4985-bd4a-e871d131ad1c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/1b3284d6-61d7-4985-bd4a-e871d131ad1c.png", "timestamp": "2024-02-15T20:42:49.166710+00:00"}}, {"id": "0932db61-f30e-4b8b-ac4a-35e213dc0366", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.416200+00:00", "label": "null", "label_explanation": "The image shows a street scene in an urban area. It is daytime and the weather is clear. There are several cars parked on the street, and the street is lined with trees.", "snapshot": {"id": "1b3284d6-61d7-4985-bd4a-e871d131ad1c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/1b3284d6-61d7-4985-bd4a-e871d131ad1c.png", "timestamp": "2024-02-15T20:42:49.166710+00:00"}}, {"id": "f434e18a-9d53-4b41-a455-13f01825c352", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.128820+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1b3284d6-61d7-4985-bd4a-e871d131ad1c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/1b3284d6-61d7-4985-bd4a-e871d131ad1c.png", "timestamp": "2024-02-15T20:42:49.166710+00:00"}}, {"id": "029a9703-19aa-477b-8866-d0f8501ba7fa", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.992916+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "1b3284d6-61d7-4985-bd4a-e871d131ad1c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/1b3284d6-61d7-4985-bd4a-e871d131ad1c.png", "timestamp": "2024-02-15T20:42:49.166710+00:00"}}, {"id": "6acfec79-559f-41e0-beff-c4e8ff35d5b3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.780137+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "1b3284d6-61d7-4985-bd4a-e871d131ad1c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/1b3284d6-61d7-4985-bd4a-e871d131ad1c.png", "timestamp": "2024-02-15T20:42:49.166710+00:00"}}, {"id": "642e49a2-824f-4c10-b6c1-8320a3c9ed3b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.772762+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "74022d00-3c79-4835-b839-dfa5b08b949c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/74022d00-3c79-4835-b839-dfa5b08b949c.png", "timestamp": "2024-02-15T20:45:07.140304+00:00"}}, {"id": "f0983213-d7f1-487b-8d2d-707aafe0cc1d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.659792+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with some congestion in the left lane due to a bus.", "snapshot": {"id": "74022d00-3c79-4835-b839-dfa5b08b949c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/74022d00-3c79-4835-b839-dfa5b08b949c.png", "timestamp": "2024-02-15T20:45:07.140304+00:00"}}, {"id": "6f706a1f-5304-4c97-bc3e-6da7c6300602", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.916680+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "74022d00-3c79-4835-b839-dfa5b08b949c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/74022d00-3c79-4835-b839-dfa5b08b949c.png", "timestamp": "2024-02-15T20:45:07.140304+00:00"}}, {"id": "537bdad0-66c9-4f5b-97c1-877c06a2dd2d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.457555+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "74022d00-3c79-4835-b839-dfa5b08b949c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/74022d00-3c79-4835-b839-dfa5b08b949c.png", "timestamp": "2024-02-15T20:45:07.140304+00:00"}}, {"id": "f78fae0b-657c-4396-950d-7948d729a9e0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.215526+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "74022d00-3c79-4835-b839-dfa5b08b949c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/74022d00-3c79-4835-b839-dfa5b08b949c.png", "timestamp": "2024-02-15T20:45:07.140304+00:00"}}, {"id": "04de18c4-8613-47fd-ac41-d365ac220983", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.527111+00:00", "label": "null", "label_explanation": "The image shows a four-lane urban road with trees on either side. It is daytime and the weather is clear.", "snapshot": {"id": "74022d00-3c79-4835-b839-dfa5b08b949c", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/74022d00-3c79-4835-b839-dfa5b08b949c.png", "timestamp": "2024-02-15T20:45:07.140304+00:00"}}, {"id": "2bee4653-abaf-4881-a40c-403fdc3f7b69", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.934478+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "5126c2b7-e2b4-4864-aa25-ecd699f195eb", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/5126c2b7-e2b4-4864-aa25-ecd699f195eb.png", "timestamp": "2024-02-15T20:47:37.638802+00:00"}}, {"id": "76a7eb14-01d8-4458-9c51-81c48b436b8e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.708287+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few cars and buses on the road, but they are able to move freely.", "snapshot": {"id": "5126c2b7-e2b4-4864-aa25-ecd699f195eb", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/5126c2b7-e2b4-4864-aa25-ecd699f195eb.png", "timestamp": "2024-02-15T20:47:37.638802+00:00"}}, {"id": "2088d12e-c7ad-400b-a4d7-80855694314d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.188062+00:00", "label": "true", "label_explanation": "The road is wet, and there are some small puddles visible. The rain is not heavy, but it is enough to make the road slippery and hazardous.", "snapshot": {"id": "5126c2b7-e2b4-4864-aa25-ecd699f195eb", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/5126c2b7-e2b4-4864-aa25-ecd699f195eb.png", "timestamp": "2024-02-15T20:47:37.638802+00:00"}}, {"id": "b9c6f4c9-02e8-403c-9eb6-f3fa500db1a1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.431431+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are some small puddles, but they are not deep enough to cause any significant problems for traffic.", "snapshot": {"id": "5126c2b7-e2b4-4864-aa25-ecd699f195eb", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/5126c2b7-e2b4-4864-aa25-ecd699f195eb.png", "timestamp": "2024-02-15T20:47:37.638802+00:00"}}, {"id": "b986ed6f-6a6e-46c5-8afd-dfd0956b226c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.918748+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a bus and several cars on it. The road is lined with trees, and the weather appears to be overcast with some rain.", "snapshot": {"id": "5126c2b7-e2b4-4864-aa25-ecd699f195eb", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/5126c2b7-e2b4-4864-aa25-ecd699f195eb.png", "timestamp": "2024-02-15T20:47:37.638802+00:00"}}, {"id": "fbe41720-8bd2-474c-9c52-4e664c058ce6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.589156+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5126c2b7-e2b4-4864-aa25-ecd699f195eb", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/5126c2b7-e2b4-4864-aa25-ecd699f195eb.png", "timestamp": "2024-02-15T20:47:37.638802+00:00"}}, {"id": "608ef522-c86c-4502-989d-75f10993e8b3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.407691+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with a row of trees on either side. The road is wet from recent rain, and there are a few cars parked along the side of the road. The trees are lush and green, and the leaves are dripping wet from the rain. The sky is overcast, and there is a light mist in the air.", "snapshot": {"id": "a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3.png", "timestamp": "2024-02-15T20:52:23.321945+00:00"}}, {"id": "68e7890c-06da-4895-91e7-0c9f260fb805", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.196321+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3.png", "timestamp": "2024-02-15T20:52:23.321945+00:00"}}, {"id": "1c5e917a-302a-4cf7-aded-339759fd91ce", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.804866+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and the trees are dripping wet. The sky is overcast, and there is a light mist in the air.", "snapshot": {"id": "a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3.png", "timestamp": "2024-02-15T20:52:23.321945+00:00"}}, {"id": "0d18f410-d04d-4014-88fa-2e74e6c370d9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.387467+00:00", "label": "easy", "label_explanation": "There are a few cars parked along the side of the road, but traffic is flowing smoothly.", "snapshot": {"id": "a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3.png", "timestamp": "2024-02-15T20:52:23.321945+00:00"}}, {"id": "3e5f74da-9bce-457b-83a7-c81dfdc426c7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.780011+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3.png", "timestamp": "2024-02-15T20:52:23.321945+00:00"}}, {"id": "43a96680-e4c4-45ab-a001-6fac09f2262f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.015779+00:00", "label": "low", "label_explanation": "There is no standing water on the road, but the road is wet from the rain.", "snapshot": {"id": "a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/a13daeb6-dad9-4a6b-83db-0d4f6ed24ee3.png", "timestamp": "2024-02-15T20:52:23.321945+00:00"}}, {"id": "bc64e10d-f7e0-4979-82ec-000991f66db0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.075602+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "e809eadf-c965-4ce8-85e8-234471a38a6f", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/e809eadf-c965-4ce8-85e8-234471a38a6f.png", "timestamp": "2024-02-15T20:50:02.174855+00:00"}}, {"id": "a77c3cce-85bd-4e02-818f-dfb8e44f617f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.606043+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e809eadf-c965-4ce8-85e8-234471a38a6f", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/e809eadf-c965-4ce8-85e8-234471a38a6f.png", "timestamp": "2024-02-15T20:50:02.174855+00:00"}}, {"id": "179e4939-af00-42fe-bca0-2de3621850b8", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.577538+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "e809eadf-c965-4ce8-85e8-234471a38a6f", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/e809eadf-c965-4ce8-85e8-234471a38a6f.png", "timestamp": "2024-02-15T20:50:02.174855+00:00"}}, {"id": "6e7553df-94a3-4000-8329-020d646afb19", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.793062+00:00", "label": "null", "label_explanation": "The image shows an urban road with moderate traffic. The road is surrounded by trees and buildings, and the weather appears to be clear.", "snapshot": {"id": "e809eadf-c965-4ce8-85e8-234471a38a6f", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/e809eadf-c965-4ce8-85e8-234471a38a6f.png", "timestamp": "2024-02-15T20:50:02.174855+00:00"}}, {"id": "28c33897-67c1-48fa-8d81-267aa675f69a", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.346083+00:00", "label": "low", "label_explanation": "There is no visible water on the road surface.", "snapshot": {"id": "e809eadf-c965-4ce8-85e8-234471a38a6f", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/e809eadf-c965-4ce8-85e8-234471a38a6f.png", "timestamp": "2024-02-15T20:50:02.174855+00:00"}}, {"id": "56e006ce-02c2-419d-8310-acd67df97b43", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.799215+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "e809eadf-c965-4ce8-85e8-234471a38a6f", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/e809eadf-c965-4ce8-85e8-234471a38a6f.png", "timestamp": "2024-02-15T20:50:02.174855+00:00"}}, {"id": "21238640-614b-4426-b9d1-ef4b1e154047", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.909934+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no visible accidents or obstructions on the road.", "snapshot": {"id": "4913a933-7088-4071-b050-abf8c8051f02", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4913a933-7088-4071-b050-abf8c8051f02.png", "timestamp": "2024-02-15T20:54:53.571241+00:00"}}, {"id": "49946e16-3be8-47bf-a2a6-16d7c88a1c6e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.257731+00:00", "label": "false", "label_explanation": "There is no visible rain in the image.", "snapshot": {"id": "4913a933-7088-4071-b050-abf8c8051f02", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4913a933-7088-4071-b050-abf8c8051f02.png", "timestamp": "2024-02-15T20:54:53.571241+00:00"}}, {"id": "ab5d26ba-c97f-4221-98e5-2d63c964d5e5", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.015670+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy, with no visible signs of rain or water on the road surface. The road is in good condition, with no visible potholes or cracks. There are trees on either side of the road, and buildings and other structures in the background.", "snapshot": {"id": "4913a933-7088-4071-b050-abf8c8051f02", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4913a933-7088-4071-b050-abf8c8051f02.png", "timestamp": "2024-02-15T20:54:53.571241+00:00"}}, {"id": "31f166fc-ff2a-426b-99ee-0f67ef8c3728", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.526129+00:00", "label": "low", "label_explanation": "There is no visible water on the road surface.", "snapshot": {"id": "4913a933-7088-4071-b050-abf8c8051f02", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4913a933-7088-4071-b050-abf8c8051f02.png", "timestamp": "2024-02-15T20:54:53.571241+00:00"}}, {"id": "6da4bec6-2c9c-43f8-8c68-36b9434f62d6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.519336+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions.", "snapshot": {"id": "4913a933-7088-4071-b050-abf8c8051f02", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4913a933-7088-4071-b050-abf8c8051f02.png", "timestamp": "2024-02-15T20:54:53.571241+00:00"}}, {"id": "3d937ab1-424c-452c-a53c-93c426533ae5", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:06.829202+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4913a933-7088-4071-b050-abf8c8051f02", "camera_id": "000270", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000270/4913a933-7088-4071-b050-abf8c8051f02.png", "timestamp": "2024-02-15T20:54:53.571241+00:00"}}]}, {"id": "001159", "name": "PRA\u00c7A PARIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91460013, "longitude": -43.17578516, "objects": ["traffic", "image_corrupted", "water_level", "rain", "road_blockade", "image_description"], "identifications": [{"id": "a0df6bce-2bd8-48f8-a0b5-6abf4cfb3f13", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:57.843008+00:00", "label": "null", "label_explanation": "The image is too distorted to provide a meaningful description.", "snapshot": {"id": "ff7fd81d-8077-4eb9-8d49-9e39fad5915b", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/ff7fd81d-8077-4eb9-8d49-9e39fad5915b.png", "timestamp": "2024-02-15T20:32:40.620417+00:00"}}, {"id": "66bcdac2-3f07-4236-b714-0509ef4cbf91", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:32:57.219400+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with green and purple color distortions and a lack of discernible details. This indicates significant data loss or image corruption.", "snapshot": {"id": "ff7fd81d-8077-4eb9-8d49-9e39fad5915b", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/ff7fd81d-8077-4eb9-8d49-9e39fad5915b.png", "timestamp": "2024-02-15T20:32:40.620417+00:00"}}, {"id": "fb78d1cb-25ce-4f79-b56d-9f67b8f6c13e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.093894+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ea78d85c-3399-4124-9433-cad240a9dde5", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/ea78d85c-3399-4124-9433-cad240a9dde5.png", "timestamp": "2024-02-15T20:30:13.129990+00:00"}}, {"id": "d660a7dc-dee6-481c-aa66-e71fa6ba9323", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.399399+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street, trees, and surrounding buildings. The road is wet from recent rain, with small puddles scattered across the surface. There is moderate traffic on the road, with cars and buses moving in both directions. The image is taken from a slightly elevated angle, providing a good perspective of the overall scene.", "snapshot": {"id": "ea78d85c-3399-4124-9433-cad240a9dde5", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/ea78d85c-3399-4124-9433-cad240a9dde5.png", "timestamp": "2024-02-15T20:30:13.129990+00:00"}}, {"id": "2698dea9-33ef-4f28-8c40-fc91c22d5820", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.898205+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "ea78d85c-3399-4124-9433-cad240a9dde5", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/ea78d85c-3399-4124-9433-cad240a9dde5.png", "timestamp": "2024-02-15T20:30:13.129990+00:00"}}, {"id": "9731a92e-86e2-4510-a159-c410a6fa0143", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:28.697108+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining recently. The water is not deep and does not appear to be causing any significant traffic disruptions.", "snapshot": {"id": "ea78d85c-3399-4124-9433-cad240a9dde5", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/ea78d85c-3399-4124-9433-cad240a9dde5.png", "timestamp": "2024-02-15T20:30:13.129990+00:00"}}, {"id": "201c6a83-db48-494f-bdf2-436d4f72bdc3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.164922+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles scattered across the surface. The majority of the road is dry and passable.", "snapshot": {"id": "ea78d85c-3399-4124-9433-cad240a9dde5", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/ea78d85c-3399-4124-9433-cad240a9dde5.png", "timestamp": "2024-02-15T20:30:13.129990+00:00"}}, {"id": "ce031775-ce58-42a0-92ee-2fee776f4a1d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:29.514245+00:00", "label": "moderate", "label_explanation": "The traffic on the road is moderate, with cars and buses moving in both directions. The wet road conditions may cause some minor traffic disruptions, but overall the flow of traffic appears to be smooth.", "snapshot": {"id": "ea78d85c-3399-4124-9433-cad240a9dde5", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/ea78d85c-3399-4124-9433-cad240a9dde5.png", "timestamp": "2024-02-15T20:30:13.129990+00:00"}}, {"id": "9c523c09-7d1c-4bb2-aa64-5941a8b34be2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.962224+00:00", "label": "easy", "label_explanation": "The road is clear and traffic is flowing smoothly, with no major obstructions or hazards visible.", "snapshot": {"id": "afeffcaf-7318-4ca0-9943-202a23cbeb7e", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/afeffcaf-7318-4ca0-9943-202a23cbeb7e.png", "timestamp": "2024-02-15T20:37:45.833120+00:00"}}, {"id": "4cb89650-e3e4-4fbd-b92f-8670fb476286", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:02.222998+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "afeffcaf-7318-4ca0-9943-202a23cbeb7e", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/afeffcaf-7318-4ca0-9943-202a23cbeb7e.png", "timestamp": "2024-02-15T20:37:45.833120+00:00"}}, {"id": "0318a8d6-58e2-4535-96de-faceb8c191a3", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:01.770650+00:00", "label": "true", "label_explanation": "The image shows a wet road surface, indicating recent rainfall.", "snapshot": {"id": "afeffcaf-7318-4ca0-9943-202a23cbeb7e", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/afeffcaf-7318-4ca0-9943-202a23cbeb7e.png", "timestamp": "2024-02-15T20:37:45.833120+00:00"}}, {"id": "dfdfb222-c43a-4cb6-99b3-e4cd90646da8", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.160618+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "afeffcaf-7318-4ca0-9943-202a23cbeb7e", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/afeffcaf-7318-4ca0-9943-202a23cbeb7e.png", "timestamp": "2024-02-15T20:37:45.833120+00:00"}}, {"id": "2497d9a0-87ea-4256-8071-b38f2d3860d9", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:00.890496+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a park on one side and a street on the other. It is daytime and the weather appears to be cloudy and wet.", "snapshot": {"id": "afeffcaf-7318-4ca0-9943-202a23cbeb7e", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/afeffcaf-7318-4ca0-9943-202a23cbeb7e.png", "timestamp": "2024-02-15T20:37:45.833120+00:00"}}, {"id": "b6f61d26-1ede-477f-b80a-b9f8bd0dab14", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:03.671648+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free and uninterrupted traffic flow.", "snapshot": {"id": "afeffcaf-7318-4ca0-9943-202a23cbeb7e", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/afeffcaf-7318-4ca0-9943-202a23cbeb7e.png", "timestamp": "2024-02-15T20:37:45.833120+00:00"}}, {"id": "7b80fb2d-e2e0-480b-9c40-70b170bd5c83", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.678701+00:00", "label": "easy", "label_explanation": "The traffic is light, and there are no major obstructions visible. Vehicles can navigate the intersection without difficulty.", "snapshot": {"id": "2a42db71-073e-42a9-a217-a47159efb4b0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/2a42db71-073e-42a9-a217-a47159efb4b0.png", "timestamp": "2024-02-15T20:35:15.868605+00:00"}}, {"id": "568c1a22-c2eb-4a65-80a4-e60cb361b97c", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:37.079754+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The intersection is clear, and traffic can flow freely.", "snapshot": {"id": "2a42db71-073e-42a9-a217-a47159efb4b0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/2a42db71-073e-42a9-a217-a47159efb4b0.png", "timestamp": "2024-02-15T20:35:15.868605+00:00"}}, {"id": "c3d64825-1c3b-4643-9b86-0ba478a97920", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.420615+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some small puddles visible. This indicates that it has been raining recently.", "snapshot": {"id": "2a42db71-073e-42a9-a217-a47159efb4b0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/2a42db71-073e-42a9-a217-a47159efb4b0.png", "timestamp": "2024-02-15T20:35:15.868605+00:00"}}, {"id": "45a66f21-aa0a-4546-ad92-e8000ce73e17", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.911330+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they do not cover a significant portion of the road surface.", "snapshot": {"id": "2a42db71-073e-42a9-a217-a47159efb4b0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/2a42db71-073e-42a9-a217-a47159efb4b0.png", "timestamp": "2024-02-15T20:35:15.868605+00:00"}}, {"id": "d91198a4-5fc1-4c39-8791-3bd979e0afc7", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:34.723240+00:00", "label": "null", "label_explanation": "The image captures a four-way urban road intersection. It is daytime, and the weather appears to be cloudy. There are several trees on the left side of the intersection, and buildings can be seen in the background. The road surface is wet, with some small puddles visible.", "snapshot": {"id": "2a42db71-073e-42a9-a217-a47159efb4b0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/2a42db71-073e-42a9-a217-a47159efb4b0.png", "timestamp": "2024-02-15T20:35:15.868605+00:00"}}, {"id": "6c223004-b8eb-4063-b92e-ff3439edc21f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:34.131827+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2a42db71-073e-42a9-a217-a47159efb4b0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/2a42db71-073e-42a9-a217-a47159efb4b0.png", "timestamp": "2024-02-15T20:35:15.868605+00:00"}}, {"id": "9ee8eeab-514e-46d3-90ca-3dbd8d78bf78", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.484815+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades visible on the road. Traffic can move freely without encountering any obstacles.", "snapshot": {"id": "5746a2ee-0709-4e92-b7f5-e77ee3afba37", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/5746a2ee-0709-4e92-b7f5-e77ee3afba37.png", "timestamp": "2024-02-15T20:40:16.612677+00:00"}}, {"id": "604db1a7-8c8d-4ec0-8f2b-fa24fffa55ce", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:33.126364+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street, sidewalks, and surrounding buildings. It is daytime, and the weather appears to be overcast but dry, with no visible signs of rain or water on the road.", "snapshot": {"id": "5746a2ee-0709-4e92-b7f5-e77ee3afba37", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/5746a2ee-0709-4e92-b7f5-e77ee3afba37.png", "timestamp": "2024-02-15T20:40:16.612677+00:00"}}, {"id": "0abcf1b8-f096-4eb8-a619-b3d7fc11d0ad", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:32.863215+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5746a2ee-0709-4e92-b7f5-e77ee3afba37", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/5746a2ee-0709-4e92-b7f5-e77ee3afba37.png", "timestamp": "2024-02-15T20:40:16.612677+00:00"}}, {"id": "94722f8f-0666-480f-bcf6-b8f3a92636db", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:33.785585+00:00", "label": "low", "label_explanation": "Since there is no visible water on the road, the water level can be labeled as 'low.'", "snapshot": {"id": "5746a2ee-0709-4e92-b7f5-e77ee3afba37", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/5746a2ee-0709-4e92-b7f5-e77ee3afba37.png", "timestamp": "2024-02-15T20:40:16.612677+00:00"}}, {"id": "68dc9f06-08c1-4415-be6a-238166d65280", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:33.471773+00:00", "label": "false", "label_explanation": "As mentioned earlier, there are no visible signs of rain or water on the road surface. The road appears dry, with no puddles or reflections indicating wetness.", "snapshot": {"id": "5746a2ee-0709-4e92-b7f5-e77ee3afba37", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/5746a2ee-0709-4e92-b7f5-e77ee3afba37.png", "timestamp": "2024-02-15T20:40:16.612677+00:00"}}, {"id": "3d7b3664-706b-4512-8b3d-090ef2df082c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:34.143586+00:00", "label": "easy", "label_explanation": "The road is dry and free of obstructions, allowing for smooth traffic flow. Vehicles can safely navigate the road without any hindrance caused by water.", "snapshot": {"id": "5746a2ee-0709-4e92-b7f5-e77ee3afba37", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/5746a2ee-0709-4e92-b7f5-e77ee3afba37.png", "timestamp": "2024-02-15T20:40:16.612677+00:00"}}, {"id": "837016aa-145f-4c9c-bba5-43bda1b3ec72", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.258877+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are small and shallow, and they do not pose a significant hazard to vehicles or pedestrians.", "snapshot": {"id": "eaba65d8-0fc1-4bd9-8f44-f65de1b2850a", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/eaba65d8-0fc1-4bd9-8f44-f65de1b2850a.png", "timestamp": "2024-02-15T20:42:45.311008+00:00"}}, {"id": "a7682a1b-67cb-45cf-b2de-083c532b9dcb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.458535+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "eaba65d8-0fc1-4bd9-8f44-f65de1b2850a", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/eaba65d8-0fc1-4bd9-8f44-f65de1b2850a.png", "timestamp": "2024-02-15T20:42:45.311008+00:00"}}, {"id": "9da4137e-a86c-4c60-a74f-6604d6de4d4c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.576063+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are several cars on the road, but they are able to move at a reasonable speed. The traffic lights are functional, and they help to keep the traffic flowing smoothly.", "snapshot": {"id": "eaba65d8-0fc1-4bd9-8f44-f65de1b2850a", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/eaba65d8-0fc1-4bd9-8f44-f65de1b2850a.png", "timestamp": "2024-02-15T20:42:45.311008+00:00"}}, {"id": "0cd761d4-4d33-4549-b44e-2e48e30f936f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.913292+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear, and there are no obstructions that would prevent vehicles from passing through.", "snapshot": {"id": "eaba65d8-0fc1-4bd9-8f44-f65de1b2850a", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/eaba65d8-0fc1-4bd9-8f44-f65de1b2850a.png", "timestamp": "2024-02-15T20:42:45.311008+00:00"}}, {"id": "70a72e71-9e5f-40ac-a889-fae179034685", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:57.076892+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are some puddles on the ground. This indicates that it has been raining recently.", "snapshot": {"id": "eaba65d8-0fc1-4bd9-8f44-f65de1b2850a", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/eaba65d8-0fc1-4bd9-8f44-f65de1b2850a.png", "timestamp": "2024-02-15T20:42:45.311008+00:00"}}, {"id": "c46e9d24-9658-4cfd-840e-c93ac45f41ad", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:56.748898+00:00", "label": "null", "label_explanation": "The image captures a four-way intersection on an urban road. It is daytime, and the weather appears to be overcast. There are several cars on the road, and the traffic lights are functional. The road surface is wet, and there are some puddles on the ground. There are trees and buildings in the background.", "snapshot": {"id": "eaba65d8-0fc1-4bd9-8f44-f65de1b2850a", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/eaba65d8-0fc1-4bd9-8f44-f65de1b2850a.png", "timestamp": "2024-02-15T20:42:45.311008+00:00"}}, {"id": "5dd42f61-3ac3-408c-af38-be500bdd01ac", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:43.726053+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing traffic to pass freely.", "snapshot": {"id": "c98fa8e7-41eb-437c-a3c6-10ec8b899755", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/c98fa8e7-41eb-437c-a3c6-10ec8b899755.png", "timestamp": "2024-02-15T20:47:31.030544+00:00"}}, {"id": "c81e7f4c-591d-4e68-9f31-ae0c27a7e7c0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:43.282595+00:00", "label": "easy", "label_explanation": "The road is relatively clear, with only a few cars visible. Traffic is able to flow smoothly without any major disruptions.", "snapshot": {"id": "c98fa8e7-41eb-437c-a3c6-10ec8b899755", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/c98fa8e7-41eb-437c-a3c6-10ec8b899755.png", "timestamp": "2024-02-15T20:47:31.030544+00:00"}}, {"id": "4d130cbe-7f3e-4913-a8e9-3953125b4e48", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.683067+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining.", "snapshot": {"id": "c98fa8e7-41eb-437c-a3c6-10ec8b899755", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/c98fa8e7-41eb-437c-a3c6-10ec8b899755.png", "timestamp": "2024-02-15T20:47:31.030544+00:00"}}, {"id": "38802d5a-9c21-48a8-b6d3-677c025622b3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:41.966597+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "c98fa8e7-41eb-437c-a3c6-10ec8b899755", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/c98fa8e7-41eb-437c-a3c6-10ec8b899755.png", "timestamp": "2024-02-15T20:47:31.030544+00:00"}}, {"id": "23832b27-2a1c-40d0-bf69-6bf3a84aeee0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.968856+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "c98fa8e7-41eb-437c-a3c6-10ec8b899755", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/c98fa8e7-41eb-437c-a3c6-10ec8b899755.png", "timestamp": "2024-02-15T20:47:31.030544+00:00"}}, {"id": "7c87c622-67bd-493b-b584-cad7bb184e12", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:42.251345+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a park on one side and a street on the other. It is daytime and the weather appears to be overcast with some light rain.", "snapshot": {"id": "c98fa8e7-41eb-437c-a3c6-10ec8b899755", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/c98fa8e7-41eb-437c-a3c6-10ec8b899755.png", "timestamp": "2024-02-15T20:47:31.030544+00:00"}}, {"id": "f3ecb572-ce87-42ce-99d8-9c7edc48152b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.481324+00:00", "label": "true", "label_explanation": "The presence of water on the road surface and the wet appearance of the surroundings indicate that it has been raining recently.", "snapshot": {"id": "b722ab9e-cb89-46c1-94ac-9d722c14e6d9", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b722ab9e-cb89-46c1-94ac-9d722c14e6d9.png", "timestamp": "2024-02-15T20:45:06.239389+00:00"}}, {"id": "75fdaf64-7acc-4018-9fbf-14e0d4faa50b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.889458+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a park on the left side, separated by a fence. There are trees on both sides of the road, and the weather appears overcast. The road surface is wet from recent rain, with some small puddles visible.", "snapshot": {"id": "b722ab9e-cb89-46c1-94ac-9d722c14e6d9", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b722ab9e-cb89-46c1-94ac-9d722c14e6d9.png", "timestamp": "2024-02-15T20:45:06.239389+00:00"}}, {"id": "c100528e-c874-4fa3-a6a7-d314b25aeeff", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:20.070479+00:00", "label": "easy", "label_explanation": "The road is wet but still navigable, with no major disruptions to traffic flow. Vehicles can safely navigate the puddles without difficulty.", "snapshot": {"id": "b722ab9e-cb89-46c1-94ac-9d722c14e6d9", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b722ab9e-cb89-46c1-94ac-9d722c14e6d9.png", "timestamp": "2024-02-15T20:45:06.239389+00:00"}}, {"id": "2b0bdbaf-5396-4709-adf3-f538144ac8bf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:20.303565+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free and unimpeded traffic flow.", "snapshot": {"id": "b722ab9e-cb89-46c1-94ac-9d722c14e6d9", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b722ab9e-cb89-46c1-94ac-9d722c14e6d9.png", "timestamp": "2024-02-15T20:45:06.239389+00:00"}}, {"id": "386f474e-fabb-4949-92fe-648b4b150946", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:19.792111+00:00", "label": "low", "label_explanation": "The water on the road surface is limited to small, shallow puddles, with no significant accumulation or coverage.", "snapshot": {"id": "b722ab9e-cb89-46c1-94ac-9d722c14e6d9", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b722ab9e-cb89-46c1-94ac-9d722c14e6d9.png", "timestamp": "2024-02-15T20:45:06.239389+00:00"}}, {"id": "495003c4-002e-493f-905d-e1e2b4e5917a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:18.620334+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b722ab9e-cb89-46c1-94ac-9d722c14e6d9", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b722ab9e-cb89-46c1-94ac-9d722c14e6d9.png", "timestamp": "2024-02-15T20:45:06.239389+00:00"}}, {"id": "0c187b89-7e3a-4af6-858b-e09b6f0653c1", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.181474+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a park on the left side, separated by a metal fence. The road is wet from recent rain, with small puddles scattered across the surface. There are trees on both sides of the road, and the sky is overcast.", "snapshot": {"id": "6af17065-796b-43d7-bf78-3f716f0b39b8", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/6af17065-796b-43d7-bf78-3f716f0b39b8.png", "timestamp": "2024-02-15T20:49:56.577418+00:00"}}, {"id": "0fa8f522-fffa-477d-93c2-7dde673cd2c6", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.459462+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining recently.", "snapshot": {"id": "6af17065-796b-43d7-bf78-3f716f0b39b8", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/6af17065-796b-43d7-bf78-3f716f0b39b8.png", "timestamp": "2024-02-15T20:49:56.577418+00:00"}}, {"id": "f0dcce4a-89c1-40f5-995e-5eabf64f096c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.185732+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a few cars visible in the image. Traffic is able to move without any significant hindrance caused by the puddles.", "snapshot": {"id": "6af17065-796b-43d7-bf78-3f716f0b39b8", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/6af17065-796b-43d7-bf78-3f716f0b39b8.png", "timestamp": "2024-02-15T20:49:56.577418+00:00"}}, {"id": "89d7a0a9-98c7-4087-a69e-62482750d381", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.002536+00:00", "label": "false", "label_explanation": "The image is clear with no visible signs of corruption or data loss.", "snapshot": {"id": "6af17065-796b-43d7-bf78-3f716f0b39b8", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/6af17065-796b-43d7-bf78-3f716f0b39b8.png", "timestamp": "2024-02-15T20:49:56.577418+00:00"}}, {"id": "51d61c3e-38c6-4fa9-9f00-2077380f948d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:09.392195+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is able to flow freely.", "snapshot": {"id": "6af17065-796b-43d7-bf78-3f716f0b39b8", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/6af17065-796b-43d7-bf78-3f716f0b39b8.png", "timestamp": "2024-02-15T20:49:56.577418+00:00"}}, {"id": "4d06b4e5-c128-4134-8a4a-1bb6b398882c", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:08.742575+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles scattered around. The majority of the road surface is still visible and dry.", "snapshot": {"id": "6af17065-796b-43d7-bf78-3f716f0b39b8", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/6af17065-796b-43d7-bf78-3f716f0b39b8.png", "timestamp": "2024-02-15T20:49:56.577418+00:00"}}, {"id": "76222c40-1147-4e9c-aef3-9f56f530cf68", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:32.353351+00:00", "label": "easy", "label_explanation": "There are no vehicles or pedestrians visible in the image, so it is difficult to assess the traffic conditions. However, the road surface is wet, which could make it slippery and hazardous for drivers.", "snapshot": {"id": "9a2402c4-969c-4944-9cee-f84bd8654ab0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/9a2402c4-969c-4944-9cee-f84bd8654ab0.png", "timestamp": "2024-02-15T20:52:19.054524+00:00"}}, {"id": "1bfd057a-c62d-4290-a0aa-a74f77612878", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:31.347560+00:00", "label": "null", "label_explanation": "The image captures a four-way intersection on an urban road. It is daytime, and the weather is overcast. There are trees on either side of the road, and the road surface is wet from recent rain. There is a pedestrian crossing at the intersection, and traffic lights are visible at each corner. There are no vehicles or pedestrians visible in the image.", "snapshot": {"id": "9a2402c4-969c-4944-9cee-f84bd8654ab0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/9a2402c4-969c-4944-9cee-f84bd8654ab0.png", "timestamp": "2024-02-15T20:52:19.054524+00:00"}}, {"id": "2a73bfb1-f563-4261-b0cb-dfb1273cd543", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:32.646721+00:00", "label": "free", "label_explanation": "There are no obstructions visible in the image, so the road is clear for traffic.", "snapshot": {"id": "9a2402c4-969c-4944-9cee-f84bd8654ab0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/9a2402c4-969c-4944-9cee-f84bd8654ab0.png", "timestamp": "2024-02-15T20:52:19.054524+00:00"}}, {"id": "013ceb56-32f6-481d-8d15-10831d48ce9b", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:31.640207+00:00", "label": "true", "label_explanation": "The road surface is wet, and there are small puddles of water on the ground. The sky is overcast, and the trees are dripping wet, indicating that it has been raining recently.", "snapshot": {"id": "9a2402c4-969c-4944-9cee-f84bd8654ab0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/9a2402c4-969c-4944-9cee-f84bd8654ab0.png", "timestamp": "2024-02-15T20:52:19.054524+00:00"}}, {"id": "c24e5c22-a43e-4410-a08a-57f72efa3282", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:32.096115+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are small puddles of water on the ground, but they are not deep enough to cause any significant problems for traffic.", "snapshot": {"id": "9a2402c4-969c-4944-9cee-f84bd8654ab0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/9a2402c4-969c-4944-9cee-f84bd8654ab0.png", "timestamp": "2024-02-15T20:52:19.054524+00:00"}}, {"id": "14161871-ea2b-437c-afc0-1384f37ba773", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:31.227235+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "9a2402c4-969c-4944-9cee-f84bd8654ab0", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/9a2402c4-969c-4944-9cee-f84bd8654ab0.png", "timestamp": "2024-02-15T20:52:19.054524+00:00"}}, {"id": "d1fe6656-c0d2-4f0f-86b3-adbaa95c70af", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.199980+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles present.", "snapshot": {"id": "b487bdb3-2fb7-4f10-8f52-61b8abb679e4", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b487bdb3-2fb7-4f10-8f52-61b8abb679e4.png", "timestamp": "2024-02-15T20:54:49.551411+00:00"}}, {"id": "0165458f-3f8d-4d8c-88c3-b8d11ddede79", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.706229+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "b487bdb3-2fb7-4f10-8f52-61b8abb679e4", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b487bdb3-2fb7-4f10-8f52-61b8abb679e4.png", "timestamp": "2024-02-15T20:54:49.551411+00:00"}}, {"id": "4740c115-5d8f-42e2-80ed-275e8b962d76", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:01.431831+00:00", "label": "easy", "label_explanation": "The traffic appears to be light, with only a few cars on the road.", "snapshot": {"id": "b487bdb3-2fb7-4f10-8f52-61b8abb679e4", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b487bdb3-2fb7-4f10-8f52-61b8abb679e4.png", "timestamp": "2024-02-15T20:54:49.551411+00:00"}}, {"id": "ba9fe107-20ec-47e2-9e28-f39ddb0dcff5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.914392+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, with small puddles scattered across the surface.", "snapshot": {"id": "b487bdb3-2fb7-4f10-8f52-61b8abb679e4", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b487bdb3-2fb7-4f10-8f52-61b8abb679e4.png", "timestamp": "2024-02-15T20:54:49.551411+00:00"}}, {"id": "f09240c1-b5ad-4924-a6a9-e3078597594f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.695306+00:00", "label": "null", "label_explanation": "The image captures a four-lane urban road with a traffic light and several trees on either side. The road is wet from recent rain, with small puddles scattered across the surface. There are a few cars on the road, and the traffic appears to be light.", "snapshot": {"id": "b487bdb3-2fb7-4f10-8f52-61b8abb679e4", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b487bdb3-2fb7-4f10-8f52-61b8abb679e4.png", "timestamp": "2024-02-15T20:54:49.551411+00:00"}}, {"id": "568e4342-9547-4847-aa8a-ba9ed5efd87f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:00.479415+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b487bdb3-2fb7-4f10-8f52-61b8abb679e4", "camera_id": "001159", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001159/b487bdb3-2fb7-4f10-8f52-61b8abb679e4.png", "timestamp": "2024-02-15T20:54:49.551411+00:00"}}]}, {"id": "000222", "name": "R. FREI CANECA X R. HEITOR CARRILHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914365, "longitude": -43.199465, "objects": ["image_corrupted", "traffic", "road_blockade", "image_description", "water_level", "rain"], "identifications": [{"id": "71fd6289-0a1d-4a04-908c-090c82c2f3d5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.182056+00:00", "label": "low", "label_explanation": "There is no water on the road.", "snapshot": {"id": "0b087028-5b65-4fa0-a507-789ca4bb6f7b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/0b087028-5b65-4fa0-a507-789ca4bb6f7b.png", "timestamp": "2024-02-15T20:30:20.299200+00:00"}}, {"id": "b0ab3789-c676-4671-8209-864b3df739e1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.809139+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "0b087028-5b65-4fa0-a507-789ca4bb6f7b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/0b087028-5b65-4fa0-a507-789ca4bb6f7b.png", "timestamp": "2024-02-15T20:30:20.299200+00:00"}}, {"id": "1cfb9fc2-0d52-406d-ab62-079b06f57e9a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.004696+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "0b087028-5b65-4fa0-a507-789ca4bb6f7b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/0b087028-5b65-4fa0-a507-789ca4bb6f7b.png", "timestamp": "2024-02-15T20:30:20.299200+00:00"}}, {"id": "85c5c323-de6d-462d-90ed-e5aca7008a5e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.452321+00:00", "label": "easy", "label_explanation": "There is no traffic on the road.", "snapshot": {"id": "0b087028-5b65-4fa0-a507-789ca4bb6f7b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/0b087028-5b65-4fa0-a507-789ca4bb6f7b.png", "timestamp": "2024-02-15T20:30:20.299200+00:00"}}, {"id": "dc5ec077-c7eb-4568-85e9-30f6d091a66e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.536415+00:00", "label": "null", "label_explanation": "The image shows a residential area with a few trees and buildings in the background.", "snapshot": {"id": "0b087028-5b65-4fa0-a507-789ca4bb6f7b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/0b087028-5b65-4fa0-a507-789ca4bb6f7b.png", "timestamp": "2024-02-15T20:30:20.299200+00:00"}}, {"id": "530bb623-0232-45d9-9708-d77c0d822d73", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.236861+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0b087028-5b65-4fa0-a507-789ca4bb6f7b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/0b087028-5b65-4fa0-a507-789ca4bb6f7b.png", "timestamp": "2024-02-15T20:30:20.299200+00:00"}}, {"id": "fe36bc96-163d-408e-bf4e-cac427e49acb", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.367361+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion or obstacles.", "snapshot": {"id": "a1b67b58-c2bb-4117-89ec-63f65313022b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/a1b67b58-c2bb-4117-89ec-63f65313022b.png", "timestamp": "2024-02-15T20:47:37.341670+00:00"}}, {"id": "790985b5-50e1-4ff9-aa8d-1be3020d92ff", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:47.517002+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "a1b67b58-c2bb-4117-89ec-63f65313022b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/a1b67b58-c2bb-4117-89ec-63f65313022b.png", "timestamp": "2024-02-15T20:47:37.341670+00:00"}}, {"id": "f30cfe17-dc94-4d31-905c-31d3dd7774c6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.957150+00:00", "label": "free", "label_explanation": "The road is free of any obstructions, allowing smooth traffic flow.", "snapshot": {"id": "a1b67b58-c2bb-4117-89ec-63f65313022b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/a1b67b58-c2bb-4117-89ec-63f65313022b.png", "timestamp": "2024-02-15T20:47:37.341670+00:00"}}, {"id": "29148ee9-2293-4a41-8479-6144c06a73aa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:47.693103+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with residential buildings in the background.", "snapshot": {"id": "a1b67b58-c2bb-4117-89ec-63f65313022b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/a1b67b58-c2bb-4117-89ec-63f65313022b.png", "timestamp": "2024-02-15T20:47:37.341670+00:00"}}, {"id": "bd9f37a1-fb74-418e-b2bd-8fa3215a42a1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.136365+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "a1b67b58-c2bb-4117-89ec-63f65313022b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/a1b67b58-c2bb-4117-89ec-63f65313022b.png", "timestamp": "2024-02-15T20:47:37.341670+00:00"}}, {"id": "4ca7cdbe-5695-49a1-be27-60a142392a26", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:47.918703+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "a1b67b58-c2bb-4117-89ec-63f65313022b", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/a1b67b58-c2bb-4117-89ec-63f65313022b.png", "timestamp": "2024-02-15T20:47:37.341670+00:00"}}, {"id": "553a5106-27a9-4af1-bd55-f99e4b7b4e7a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:26.024112+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is completely clear.", "snapshot": {"id": "de2adfc6-7f35-4a84-9c64-9adc99cb5ae5", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/de2adfc6-7f35-4a84-9c64-9adc99cb5ae5.png", "timestamp": "2024-02-15T20:45:13.204096+00:00"}}, {"id": "b6b2acaa-1ad4-41df-90b4-8f6f05c4bbdf", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.542827+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "de2adfc6-7f35-4a84-9c64-9adc99cb5ae5", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/de2adfc6-7f35-4a84-9c64-9adc99cb5ae5.png", "timestamp": "2024-02-15T20:45:13.204096+00:00"}}, {"id": "ebae2e2f-e3a4-41fd-866a-02c944651190", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.699264+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "de2adfc6-7f35-4a84-9c64-9adc99cb5ae5", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/de2adfc6-7f35-4a84-9c64-9adc99cb5ae5.png", "timestamp": "2024-02-15T20:45:13.204096+00:00"}}, {"id": "6b856855-8e64-4b98-9b70-3237b64dda84", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.842229+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions. Traffic is flowing smoothly.", "snapshot": {"id": "de2adfc6-7f35-4a84-9c64-9adc99cb5ae5", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/de2adfc6-7f35-4a84-9c64-9adc99cb5ae5.png", "timestamp": "2024-02-15T20:45:13.204096+00:00"}}, {"id": "ca993f6f-fd56-45ac-afa3-2cf4880c8df4", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.025722+00:00", "label": "null", "label_explanation": "The image captures an urban road scene during daytime. There are residential buildings on the left and the right, and a wide road in the middle. The road is divided into two lanes, one for each direction. There are trees on the left side of the road, and the sky is cloudy.", "snapshot": {"id": "de2adfc6-7f35-4a84-9c64-9adc99cb5ae5", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/de2adfc6-7f35-4a84-9c64-9adc99cb5ae5.png", "timestamp": "2024-02-15T20:45:13.204096+00:00"}}, {"id": "0e3fea39-92a9-4e2a-9302-0d370636ad44", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:25.265658+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "de2adfc6-7f35-4a84-9c64-9adc99cb5ae5", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/de2adfc6-7f35-4a84-9c64-9adc99cb5ae5.png", "timestamp": "2024-02-15T20:45:13.204096+00:00"}}, {"id": "b98512e5-32ab-4afd-8b7c-190752a5ee4f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.741725+00:00", "label": "low", "label_explanation": "There is no water present on the road.", "snapshot": {"id": "f6456a50-26ac-4648-96b3-1b6ca8a22241", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/f6456a50-26ac-4648-96b3-1b6ca8a22241.png", "timestamp": "2024-02-15T20:35:23.598227+00:00"}}, {"id": "e2ff918c-2cd4-436a-ac4b-f0b9a5d637d4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.036475+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "f6456a50-26ac-4648-96b3-1b6ca8a22241", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/f6456a50-26ac-4648-96b3-1b6ca8a22241.png", "timestamp": "2024-02-15T20:35:23.598227+00:00"}}, {"id": "5a0ad43d-ec8d-49b5-a18f-ff939112a4b6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.486709+00:00", "label": "free", "label_explanation": "There is no road visible in the image.", "snapshot": {"id": "f6456a50-26ac-4648-96b3-1b6ca8a22241", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/f6456a50-26ac-4648-96b3-1b6ca8a22241.png", "timestamp": "2024-02-15T20:35:23.598227+00:00"}}, {"id": "c8ad3112-8fec-4d4b-a702-5476dee6b15a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.571843+00:00", "label": "null", "label_explanation": "The image shows a residential building with multiple units. The exterior of the building is visible, and the surroundings include trees and other buildings.", "snapshot": {"id": "f6456a50-26ac-4648-96b3-1b6ca8a22241", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/f6456a50-26ac-4648-96b3-1b6ca8a22241.png", "timestamp": "2024-02-15T20:35:23.598227+00:00"}}, {"id": "4d9cbc42-9f75-4991-b3f0-bf7453f44d68", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.159091+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f6456a50-26ac-4648-96b3-1b6ca8a22241", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/f6456a50-26ac-4648-96b3-1b6ca8a22241.png", "timestamp": "2024-02-15T20:35:23.598227+00:00"}}, {"id": "c83ac28d-edbe-4115-a285-7eca6ff6fb8d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.585685+00:00", "label": "free", "label_explanation": "There are no road blockades present in the image.", "snapshot": {"id": "ee7d9c7c-9753-4d5b-b4d9-5e837bcb1662", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/ee7d9c7c-9753-4d5b-b4d9-5e837bcb1662.png", "timestamp": "2024-02-15T20:37:53.590025+00:00"}}, {"id": "6e0cfc6c-33c0-489e-8d34-e8e3d3b22fee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.813420+00:00", "label": "null", "label_explanation": "The image shows a residential area with a building in the center. The building is a few stories tall and has a flat roof. The exterior is made of concrete and has a few windows and air conditioning units. The sky is cloudy, and the sun is shining brightly. There are a few trees in the foreground.", "snapshot": {"id": "ee7d9c7c-9753-4d5b-b4d9-5e837bcb1662", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/ee7d9c7c-9753-4d5b-b4d9-5e837bcb1662.png", "timestamp": "2024-02-15T20:37:53.590025+00:00"}}, {"id": "ea6bd675-6f5e-4d7e-bdc0-af612887be1a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.274369+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "ee7d9c7c-9753-4d5b-b4d9-5e837bcb1662", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/ee7d9c7c-9753-4d5b-b4d9-5e837bcb1662.png", "timestamp": "2024-02-15T20:37:53.590025+00:00"}}, {"id": "7a24d59e-5508-4a61-a557-2f45f601ff97", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.214408+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ee7d9c7c-9753-4d5b-b4d9-5e837bcb1662", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/ee7d9c7c-9753-4d5b-b4d9-5e837bcb1662.png", "timestamp": "2024-02-15T20:37:53.590025+00:00"}}, {"id": "67c95baa-7355-4970-97c9-accefd418794", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.611716+00:00", "label": "low", "label_explanation": "There is no water present on the road.", "snapshot": {"id": "ee7d9c7c-9753-4d5b-b4d9-5e837bcb1662", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/ee7d9c7c-9753-4d5b-b4d9-5e837bcb1662.png", "timestamp": "2024-02-15T20:37:53.590025+00:00"}}, {"id": "ab828d72-f481-4b6d-aa70-e2c45138cfaa", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.378460+00:00", "label": "null", "label_explanation": "The image shows a residential area with a row of apartment buildings in the background. The buildings are mostly uniform in height and color, with the exception of one building that is taller and has a different color. The sky is cloudy, and the sun is not visible. There are a few trees in the foreground, and the ground appears to be covered in grass.", "snapshot": {"id": "8085b380-265c-48e8-a253-65a557d43b6e", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/8085b380-265c-48e8-a253-65a557d43b6e.png", "timestamp": "2024-02-15T20:40:26.422137+00:00"}}, {"id": "24d73ec5-e219-452a-808b-650d04434695", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.109496+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "8085b380-265c-48e8-a253-65a557d43b6e", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/8085b380-265c-48e8-a253-65a557d43b6e.png", "timestamp": "2024-02-15T20:40:26.422137+00:00"}}, {"id": "0db89ddf-cb53-4658-a3e3-5a2495cb8a5d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.662824+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image.", "snapshot": {"id": "8085b380-265c-48e8-a253-65a557d43b6e", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/8085b380-265c-48e8-a253-65a557d43b6e.png", "timestamp": "2024-02-15T20:40:26.422137+00:00"}}, {"id": "d825e75f-d3de-4023-b7b5-3b6febe64ad9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.138413+00:00", "label": "low", "label_explanation": "There is no water present on the road.", "snapshot": {"id": "8085b380-265c-48e8-a253-65a557d43b6e", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/8085b380-265c-48e8-a253-65a557d43b6e.png", "timestamp": "2024-02-15T20:40:26.422137+00:00"}}, {"id": "df41fdb5-eaeb-4066-b8e2-db512e308d74", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.706835+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "8085b380-265c-48e8-a253-65a557d43b6e", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/8085b380-265c-48e8-a253-65a557d43b6e.png", "timestamp": "2024-02-15T20:40:26.422137+00:00"}}, {"id": "aa36aed6-b4ee-4a5c-9716-8e518fdb81cd", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.178974+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "499aa1c6-1785-4c21-88f7-7750765683e6", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/499aa1c6-1785-4c21-88f7-7750765683e6.png", "timestamp": "2024-02-15T20:42:51.088427+00:00"}}, {"id": "db1f284d-daeb-4eff-991b-cb1177dae059", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.696041+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "499aa1c6-1785-4c21-88f7-7750765683e6", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/499aa1c6-1785-4c21-88f7-7750765683e6.png", "timestamp": "2024-02-15T20:42:51.088427+00:00"}}, {"id": "a3186fd3-d055-431b-99c3-ac5b1ebdf6d7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.801623+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "499aa1c6-1785-4c21-88f7-7750765683e6", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/499aa1c6-1785-4c21-88f7-7750765683e6.png", "timestamp": "2024-02-15T20:42:51.088427+00:00"}}, {"id": "ef8d6221-deb8-4ed9-807c-960a0d7e9a96", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.526054+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "499aa1c6-1785-4c21-88f7-7750765683e6", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/499aa1c6-1785-4c21-88f7-7750765683e6.png", "timestamp": "2024-02-15T20:42:51.088427+00:00"}}, {"id": "5f1702ff-48e3-4a1f-b622-9eed5d9d6716", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:03.068275+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "499aa1c6-1785-4c21-88f7-7750765683e6", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/499aa1c6-1785-4c21-88f7-7750765683e6.png", "timestamp": "2024-02-15T20:42:51.088427+00:00"}}, {"id": "2c99287b-0a54-477d-8b09-7de44149d867", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.908376+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with residential buildings in the background. The sky is cloudy, and the road appears dry with no visible water.", "snapshot": {"id": "499aa1c6-1785-4c21-88f7-7750765683e6", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/499aa1c6-1785-4c21-88f7-7750765683e6.png", "timestamp": "2024-02-15T20:42:51.088427+00:00"}}, {"id": "5fe7fa6d-8c37-42dd-a9d2-e461be14ed26", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.589404+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "f134c9a4-fcb4-49fd-a261-238f50aa7d4a", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/f134c9a4-fcb4-49fd-a261-238f50aa7d4a.png", "timestamp": "2024-02-15T20:50:02.182027+00:00"}}, {"id": "67f268fd-c7ea-46d7-9e8c-156c25e6d5c2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.946282+00:00", "label": "low", "label_explanation": "The road surface is dry, with no signs of water accumulation.", "snapshot": {"id": "f134c9a4-fcb4-49fd-a261-238f50aa7d4a", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/f134c9a4-fcb4-49fd-a261-238f50aa7d4a.png", "timestamp": "2024-02-15T20:50:02.182027+00:00"}}, {"id": "12629bd7-d4da-409f-9143-ecc8f8c16a98", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.689540+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "f134c9a4-fcb4-49fd-a261-238f50aa7d4a", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/f134c9a4-fcb4-49fd-a261-238f50aa7d4a.png", "timestamp": "2024-02-15T20:50:02.182027+00:00"}}, {"id": "e374c699-aa9d-48f5-83bc-b8b269ac5005", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.429811+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with residential buildings in the background. The sky is partially cloudy, and the road surface appears dry.", "snapshot": {"id": "f134c9a4-fcb4-49fd-a261-238f50aa7d4a", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/f134c9a4-fcb4-49fd-a261-238f50aa7d4a.png", "timestamp": "2024-02-15T20:50:02.182027+00:00"}}, {"id": "893ef6c5-dd8b-419b-8aca-9850e0e00dae", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.236055+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic obstructions or congestion.", "snapshot": {"id": "f134c9a4-fcb4-49fd-a261-238f50aa7d4a", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/f134c9a4-fcb4-49fd-a261-238f50aa7d4a.png", "timestamp": "2024-02-15T20:50:02.182027+00:00"}}, {"id": "5f1585d7-0363-49be-a4ac-c7fa4a93c77f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.957118+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f134c9a4-fcb4-49fd-a261-238f50aa7d4a", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/f134c9a4-fcb4-49fd-a261-238f50aa7d4a.png", "timestamp": "2024-02-15T20:50:02.182027+00:00"}}, {"id": "ed1a198c-6c1f-483c-8d90-cc493dd80070", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.493850+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "3f5d63e4-1555-4e41-87e5-ec5ed2bfe507", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/3f5d63e4-1555-4e41-87e5-ec5ed2bfe507.png", "timestamp": "2024-02-15T20:54:53.249835+00:00"}}, {"id": "5bcfb77f-62bf-46e1-b1cb-0db98860148c", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.088517+00:00", "label": "true", "label_explanation": "The image is corrupted and has significant data loss, making it difficult to analyze.", "snapshot": {"id": "3f5d63e4-1555-4e41-87e5-ec5ed2bfe507", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/3f5d63e4-1555-4e41-87e5-ec5ed2bfe507.png", "timestamp": "2024-02-15T20:54:53.249835+00:00"}}, {"id": "5344b746-ed64-472c-8e2c-740b95381f39", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.964869+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "5adbca16-d077-4970-8939-8b91cd835f12", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/5adbca16-d077-4970-8939-8b91cd835f12.png", "timestamp": "2024-02-15T20:52:25.922772+00:00"}}, {"id": "740a64c1-f516-4a65-9258-8bbf03399446", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.751135+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "5adbca16-d077-4970-8939-8b91cd835f12", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/5adbca16-d077-4970-8939-8b91cd835f12.png", "timestamp": "2024-02-15T20:52:25.922772+00:00"}}, {"id": "3a819b63-7764-40af-b599-700e8068c60a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.532352+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible traffic congestion or obstacles.", "snapshot": {"id": "5adbca16-d077-4970-8939-8b91cd835f12", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/5adbca16-d077-4970-8939-8b91cd835f12.png", "timestamp": "2024-02-15T20:52:25.922772+00:00"}}, {"id": "11ba5ae8-9dfc-44b1-a71b-00cbe51d56c6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.297738+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "5adbca16-d077-4970-8939-8b91cd835f12", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/5adbca16-d077-4970-8939-8b91cd835f12.png", "timestamp": "2024-02-15T20:52:25.922772+00:00"}}, {"id": "08cdf50d-79ad-42c4-a4e3-1740d34f75d3", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.754956+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with residential buildings in the background.", "snapshot": {"id": "5adbca16-d077-4970-8939-8b91cd835f12", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/5adbca16-d077-4970-8939-8b91cd835f12.png", "timestamp": "2024-02-15T20:52:25.922772+00:00"}}, {"id": "69a4d18e-3301-4617-8e50-2c4059bbccc2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.581115+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5adbca16-d077-4970-8939-8b91cd835f12", "camera_id": "000222", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D000222/5adbca16-d077-4970-8939-8b91cd835f12.png", "timestamp": "2024-02-15T20:52:25.922772+00:00"}}]}, {"id": "001164", "name": "AV. LAURO SODR\u00c9 X R. GENERAL GOIS MONTEIRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95561163, "longitude": -43.17833547, "objects": ["traffic", "image_corrupted", "rain", "image_description", "water_level", "road_blockade"], "identifications": [{"id": "3d1abbfb-233d-47fb-a506-a9e8214a0baf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.443119+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with multiple lanes, surrounded by buildings and trees. The road is wet from recent rain, and there are several vehicles on it, including cars, buses, and motorcycles. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "289b427b-33d3-4b2a-9af2-e9242ab7c5b0", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/289b427b-33d3-4b2a-9af2-e9242ab7c5b0.png", "timestamp": "2024-02-15T20:30:18.466141+00:00"}}, {"id": "2b6bbd33-da0d-4d2f-899e-06dca31374a0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:34.191421+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "289b427b-33d3-4b2a-9af2-e9242ab7c5b0", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/289b427b-33d3-4b2a-9af2-e9242ab7c5b0.png", "timestamp": "2024-02-15T20:30:18.466141+00:00"}}, {"id": "1c2841ae-c67f-4242-8cb9-267aa5f9cdf9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.819987+00:00", "label": "easy", "label_explanation": "Traffic is flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "289b427b-33d3-4b2a-9af2-e9242ab7c5b0", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/289b427b-33d3-4b2a-9af2-e9242ab7c5b0.png", "timestamp": "2024-02-15T20:30:18.466141+00:00"}}, {"id": "b343edb2-dc26-4ff3-9f60-c3dbdbdad84f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.305030+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant hazard to traffic.", "snapshot": {"id": "289b427b-33d3-4b2a-9af2-e9242ab7c5b0", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/289b427b-33d3-4b2a-9af2-e9242ab7c5b0.png", "timestamp": "2024-02-15T20:30:18.466141+00:00"}}, {"id": "bfccfbe8-200d-4f83-982e-856c6e38dac8", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:35.005747+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "289b427b-33d3-4b2a-9af2-e9242ab7c5b0", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/289b427b-33d3-4b2a-9af2-e9242ab7c5b0.png", "timestamp": "2024-02-15T20:30:18.466141+00:00"}}, {"id": "ed94c062-b181-4bb3-ae50-40d1e13216dc", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.162350+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free and uninterrupted traffic flow.", "snapshot": {"id": "289b427b-33d3-4b2a-9af2-e9242ab7c5b0", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/289b427b-33d3-4b2a-9af2-e9242ab7c5b0.png", "timestamp": "2024-02-15T20:30:18.466141+00:00"}}, {"id": "edc12ee6-987a-4e05-8e26-06c4741d3dbe", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:07.782809+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which suggests that the rain was heavy.", "snapshot": {"id": "fd53ee0f-7b4f-43be-99bf-908016ebdbff", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/fd53ee0f-7b4f-43be-99bf-908016ebdbff.png", "timestamp": "2024-02-15T20:32:46.150820+00:00"}}, {"id": "709025b9-2a05-46a1-a675-d4b84f7923e6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:09.213195+00:00", "label": "free", "label_explanation": "There are no road blockades. The road is clear and passable in both directions.", "snapshot": {"id": "fd53ee0f-7b4f-43be-99bf-908016ebdbff", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/fd53ee0f-7b4f-43be-99bf-908016ebdbff.png", "timestamp": "2024-02-15T20:32:46.150820+00:00"}}, {"id": "fa585dab-9a2f-4f8f-80d6-62b2d9d278e0", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:07.070494+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars, buses, and motorcycles. The road is lined with trees, and there are buildings and other structures in the background.", "snapshot": {"id": "fd53ee0f-7b4f-43be-99bf-908016ebdbff", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/fd53ee0f-7b4f-43be-99bf-908016ebdbff.png", "timestamp": "2024-02-15T20:32:46.150820+00:00"}}, {"id": "46ac3cdf-8365-4c0b-8fc4-45bee4d0a348", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:06.456063+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fd53ee0f-7b4f-43be-99bf-908016ebdbff", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/fd53ee0f-7b4f-43be-99bf-908016ebdbff.png", "timestamp": "2024-02-15T20:32:46.150820+00:00"}}, {"id": "6d0b736a-e559-4033-b115-b6206f2e4c6a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:08.827090+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move at a reasonable speed. There are no major delays or obstructions.", "snapshot": {"id": "fd53ee0f-7b4f-43be-99bf-908016ebdbff", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/fd53ee0f-7b4f-43be-99bf-908016ebdbff.png", "timestamp": "2024-02-15T20:32:46.150820+00:00"}}, {"id": "ab55bbbd-a48b-476a-8737-6d6feb600bed", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:08.333554+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and the road surface is still visible. There is no significant risk of flooding.", "snapshot": {"id": "fd53ee0f-7b4f-43be-99bf-908016ebdbff", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/fd53ee0f-7b4f-43be-99bf-908016ebdbff.png", "timestamp": "2024-02-15T20:32:46.150820+00:00"}}, {"id": "71ff2d0b-63b3-48da-b50f-5937db3ba6d1", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.525101+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely. The road is clear and well-maintained, with no visible signs of damage or debris.", "snapshot": {"id": "327eeaa3-cc3b-4e0e-844d-df375a582a17", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/327eeaa3-cc3b-4e0e-844d-df375a582a17.png", "timestamp": "2024-02-15T20:42:48.223394+00:00"}}, {"id": "a21f5fff-5a47-4dd8-8eb6-3e3e98d13eb2", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:02.131897+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major congestion or delays. The vehicles are able to drive safely and at a reasonable speed.", "snapshot": {"id": "327eeaa3-cc3b-4e0e-844d-df375a582a17", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/327eeaa3-cc3b-4e0e-844d-df375a582a17.png", "timestamp": "2024-02-15T20:42:48.223394+00:00"}}, {"id": "73ba1227-5a4b-4342-bdda-c9b2824333d5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.653172+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. The rain is not heavy, as the vehicles on the road are still able to drive safely.", "snapshot": {"id": "327eeaa3-cc3b-4e0e-844d-df375a582a17", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/327eeaa3-cc3b-4e0e-844d-df375a582a17.png", "timestamp": "2024-02-15T20:42:48.223394+00:00"}}, {"id": "e9b288d2-981e-4783-986c-347fa3a2740d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.923798+00:00", "label": "low", "label_explanation": "There is some water on the road surface, but it is not enough to cause any significant problems for traffic. The water is mostly confined to the gutters and does not appear to be rising.", "snapshot": {"id": "327eeaa3-cc3b-4e0e-844d-df375a582a17", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/327eeaa3-cc3b-4e0e-844d-df375a582a17.png", "timestamp": "2024-02-15T20:42:48.223394+00:00"}}, {"id": "f8540dbf-b9b9-4e8e-9675-22114a97d548", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:01.210382+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars and buses, and a few pedestrians on the sidewalk.", "snapshot": {"id": "327eeaa3-cc3b-4e0e-844d-df375a582a17", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/327eeaa3-cc3b-4e0e-844d-df375a582a17.png", "timestamp": "2024-02-15T20:42:48.223394+00:00"}}, {"id": "42972b82-80e8-4b30-a8b7-07dcd8670882", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:00.993819+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "327eeaa3-cc3b-4e0e-844d-df375a582a17", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/327eeaa3-cc3b-4e0e-844d-df375a582a17.png", "timestamp": "2024-02-15T20:42:48.223394+00:00"}}, {"id": "fa5452e7-dd60-436a-8fdd-e49ae9efd40d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:40.144405+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for vehicles and pedestrians.", "snapshot": {"id": "4d74b488-b853-4cc0-8fd8-439b423fa117", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/4d74b488-b853-4cc0-8fd8-439b423fa117.png", "timestamp": "2024-02-15T20:35:18.052126+00:00"}}, {"id": "59620c17-b83f-4aea-8e15-b799175d9bbe", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.307051+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "4d74b488-b853-4cc0-8fd8-439b423fa117", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/4d74b488-b853-4cc0-8fd8-439b423fa117.png", "timestamp": "2024-02-15T20:35:18.052126+00:00"}}, {"id": "c37114b4-3651-4bc2-9bce-76a5e6f8796b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.952634+00:00", "label": "low", "label_explanation": "The water level on the road is low, as there are only small puddles of water and no significant accumulation.", "snapshot": {"id": "4d74b488-b853-4cc0-8fd8-439b423fa117", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/4d74b488-b853-4cc0-8fd8-439b423fa117.png", "timestamp": "2024-02-15T20:35:18.052126+00:00"}}, {"id": "5b9275e1-9a7b-410e-89ea-a8766a297661", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:37.607072+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4d74b488-b853-4cc0-8fd8-439b423fa117", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/4d74b488-b853-4cc0-8fd8-439b423fa117.png", "timestamp": "2024-02-15T20:35:18.052126+00:00"}}, {"id": "84dad771-2471-4c54-a6b8-9add60b4e197", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.028123+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars and buses, as well as pedestrians on the sidewalk.", "snapshot": {"id": "4d74b488-b853-4cc0-8fd8-439b423fa117", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/4d74b488-b853-4cc0-8fd8-439b423fa117.png", "timestamp": "2024-02-15T20:35:18.052126+00:00"}}, {"id": "fa2a5fc0-2431-42fe-8e6b-7156a4b08d2d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:39.635401+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "4d74b488-b853-4cc0-8fd8-439b423fa117", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/4d74b488-b853-4cc0-8fd8-439b423fa117.png", "timestamp": "2024-02-15T20:35:18.052126+00:00"}}, {"id": "58822348-9561-4928-b240-c6248666886d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:04.553218+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is wet from recent rain. There are several vehicles on the road, including cars and buses, as well as a few pedestrians on the sidewalk.", "snapshot": {"id": "76194964-ad93-4ecb-bf3f-8ecbc09ae8bd", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/76194964-ad93-4ecb-bf3f-8ecbc09ae8bd.png", "timestamp": "2024-02-15T20:37:50.067202+00:00"}}, {"id": "5ea1e6e3-860d-4871-98d6-c81c3cbeef16", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:05.221497+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road, which could pose a hazard to drivers.", "snapshot": {"id": "76194964-ad93-4ecb-bf3f-8ecbc09ae8bd", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/76194964-ad93-4ecb-bf3f-8ecbc09ae8bd.png", "timestamp": "2024-02-15T20:37:50.067202+00:00"}}, {"id": "6f8f0f17-0c6b-45f4-8842-4842ac648b77", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:06.776248+00:00", "label": "free", "label_explanation": "There are no road blockades present on the road. The road is clear and free of any obstructions, allowing vehicles and pedestrians to pass through without hindrance.", "snapshot": {"id": "76194964-ad93-4ecb-bf3f-8ecbc09ae8bd", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/76194964-ad93-4ecb-bf3f-8ecbc09ae8bd.png", "timestamp": "2024-02-15T20:37:50.067202+00:00"}}, {"id": "49c61129-0f9e-474c-9ab6-01ebff8113e7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:06.220616+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few puddles present. The majority of the road surface is dry, and there is no significant accumulation of water.", "snapshot": {"id": "76194964-ad93-4ecb-bf3f-8ecbc09ae8bd", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/76194964-ad93-4ecb-bf3f-8ecbc09ae8bd.png", "timestamp": "2024-02-15T20:37:50.067202+00:00"}}, {"id": "7b425051-73e4-40cc-a3c3-010eb784eb50", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:06.480811+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate, with a few vehicles present. The vehicles are able to move freely, and there are no major obstructions or delays.", "snapshot": {"id": "76194964-ad93-4ecb-bf3f-8ecbc09ae8bd", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/76194964-ad93-4ecb-bf3f-8ecbc09ae8bd.png", "timestamp": "2024-02-15T20:37:50.067202+00:00"}}, {"id": "3d703aa3-3d13-4a75-bdf7-df3550141324", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:04.087715+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "76194964-ad93-4ecb-bf3f-8ecbc09ae8bd", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/76194964-ad93-4ecb-bf3f-8ecbc09ae8bd.png", "timestamp": "2024-02-15T20:37:50.067202+00:00"}}, {"id": "7ec88c10-a8b9-4273-ad1a-950581e6c3a2", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.626468+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9.png", "timestamp": "2024-02-15T20:40:22.341636+00:00"}}, {"id": "f844ec8a-90c2-4542-81dc-e5b25e26ff65", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.964908+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow, and they do not cover a significant portion of the road surface.", "snapshot": {"id": "0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9.png", "timestamp": "2024-02-15T20:40:22.341636+00:00"}}, {"id": "5f9c3010-8838-4681-ad29-fa265d15502a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.261380+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate lighting conditions. It is daytime, and the weather appears to be overcast. The road is relatively wide, with multiple lanes in each direction. It is bordered by buildings and trees, and there are several vehicles visible, including cars and buses. There are also pedestrians on the sidewalk.", "snapshot": {"id": "0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9.png", "timestamp": "2024-02-15T20:40:22.341636+00:00"}}, {"id": "04b35603-8ebf-4459-a42f-5a59172ac028", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.318462+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9.png", "timestamp": "2024-02-15T20:40:22.341636+00:00"}}, {"id": "9aaa98e6-db22-4cb0-a6e3-cf8885a894c1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.608666+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9.png", "timestamp": "2024-02-15T20:40:22.341636+00:00"}}, {"id": "71adcd6c-b324-45c3-bbfd-8a860c2c174e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:36.887169+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/0f8aa944-edb6-4c9a-9dd2-a4a480c4e0d9.png", "timestamp": "2024-02-15T20:40:22.341636+00:00"}}, {"id": "90ce30a5-f2c9-441f-841f-fef2346d6297", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.394888+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain has stopped and the road is not flooded.", "snapshot": {"id": "1e5c72fc-d2f5-4a80-be34-054cb52399a6", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/1e5c72fc-d2f5-4a80-be34-054cb52399a6.png", "timestamp": "2024-02-15T20:47:36.131992+00:00"}}, {"id": "16528847-b627-4070-b6e6-bebc4eef1ed3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:47.910995+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1e5c72fc-d2f5-4a80-be34-054cb52399a6", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/1e5c72fc-d2f5-4a80-be34-054cb52399a6.png", "timestamp": "2024-02-15T20:47:36.131992+00:00"}}, {"id": "7dd4730c-c30f-4437-8bb5-1db261e0d0fc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.164281+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are trees on either side of the road and buildings in the background.", "snapshot": {"id": "1e5c72fc-d2f5-4a80-be34-054cb52399a6", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/1e5c72fc-d2f5-4a80-be34-054cb52399a6.png", "timestamp": "2024-02-15T20:47:36.131992+00:00"}}, {"id": "c417ff2c-ab3b-4e3a-a0f8-ecc26b5a6b07", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:48.684899+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water has drained away.", "snapshot": {"id": "1e5c72fc-d2f5-4a80-be34-054cb52399a6", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/1e5c72fc-d2f5-4a80-be34-054cb52399a6.png", "timestamp": "2024-02-15T20:47:36.131992+00:00"}}, {"id": "d6a0c1e6-264e-4bfd-b6dc-f73464dbb82d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.248984+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. Traffic is flowing smoothly.", "snapshot": {"id": "1e5c72fc-d2f5-4a80-be34-054cb52399a6", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/1e5c72fc-d2f5-4a80-be34-054cb52399a6.png", "timestamp": "2024-02-15T20:47:36.131992+00:00"}}, {"id": "6681f9c3-2e80-4c35-8d5c-0a9f0e0d4636", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.037597+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "1e5c72fc-d2f5-4a80-be34-054cb52399a6", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/1e5c72fc-d2f5-4a80-be34-054cb52399a6.png", "timestamp": "2024-02-15T20:47:36.131992+00:00"}}, {"id": "49007cd3-a34b-4ce8-b710-7c7965082077", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.769668+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water accumulation.", "snapshot": {"id": "39e1ff34-89e1-4f8e-addb-ebe4ef42ec84", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/39e1ff34-89e1-4f8e-addb-ebe4ef42ec84.png", "timestamp": "2024-02-15T20:45:11.172503+00:00"}}, {"id": "1a803e30-ca69-4a5f-80c5-b385362a8f48", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.011136+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no visible signs of water accumulation, and the road surface is dry.", "snapshot": {"id": "39e1ff34-89e1-4f8e-addb-ebe4ef42ec84", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/39e1ff34-89e1-4f8e-addb-ebe4ef42ec84.png", "timestamp": "2024-02-15T20:45:11.172503+00:00"}}, {"id": "6df10b1b-9fb5-48ff-a24d-b90c21983f12", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.252101+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for vehicle movement. The road surface is paved and in good condition, with no visible potholes or cracks. There are trees on either side of the road, and buildings and other structures can be seen in the background. The image is clear and well-lit, with good visibility.", "snapshot": {"id": "39e1ff34-89e1-4f8e-addb-ebe4ef42ec84", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/39e1ff34-89e1-4f8e-addb-ebe4ef42ec84.png", "timestamp": "2024-02-15T20:45:11.172503+00:00"}}, {"id": "e452fafd-f539-4ac3-93aa-9ce5f166278f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.666552+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and free of any obstructions, allowing for smooth traffic flow.", "snapshot": {"id": "39e1ff34-89e1-4f8e-addb-ebe4ef42ec84", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/39e1ff34-89e1-4f8e-addb-ebe4ef42ec84.png", "timestamp": "2024-02-15T20:45:11.172503+00:00"}}, {"id": "92213ab3-4854-4115-a8f1-ffcc393c6db0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.293847+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a few vehicles visible in the image, but they are all moving at a steady pace. There are no visible signs of congestion or delays.", "snapshot": {"id": "39e1ff34-89e1-4f8e-addb-ebe4ef42ec84", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/39e1ff34-89e1-4f8e-addb-ebe4ef42ec84.png", "timestamp": "2024-02-15T20:45:11.172503+00:00"}}, {"id": "5b02fe1d-4af0-4697-a8d1-70f2f7862434", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:22.911398+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "39e1ff34-89e1-4f8e-addb-ebe4ef42ec84", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/39e1ff34-89e1-4f8e-addb-ebe4ef42ec84.png", "timestamp": "2024-02-15T20:45:11.172503+00:00"}}, {"id": "95ae72d5-4362-46ee-92cf-34fe0f751a52", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.272724+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no visible signs of water accumulation or flooding.", "snapshot": {"id": "5d532424-ecb2-4970-b454-3f33b4a2a2b5", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/5d532424-ecb2-4970-b454-3f33b4a2a2b5.png", "timestamp": "2024-02-15T20:50:00.694472+00:00"}}, {"id": "e86e9f3b-08f3-43e4-b46f-46a6950ebe44", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.047045+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "5d532424-ecb2-4970-b454-3f33b4a2a2b5", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/5d532424-ecb2-4970-b454-3f33b4a2a2b5.png", "timestamp": "2024-02-15T20:50:00.694472+00:00"}}, {"id": "69c82ea9-90e3-44b4-99bc-d24f84f7ee3a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.758273+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "5d532424-ecb2-4970-b454-3f33b4a2a2b5", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/5d532424-ecb2-4970-b454-3f33b4a2a2b5.png", "timestamp": "2024-02-15T20:50:00.694472+00:00"}}, {"id": "2f387fd0-c3b8-4b54-b7bb-ca80d2318a7e", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.493756+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a few cars on the road, but they are able to move freely without any significant congestion.", "snapshot": {"id": "5d532424-ecb2-4970-b454-3f33b4a2a2b5", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/5d532424-ecb2-4970-b454-3f33b4a2a2b5.png", "timestamp": "2024-02-15T20:50:00.694472+00:00"}}, {"id": "c43d48e4-6b9e-4311-82ff-8c11f5587a74", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:18.802372+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately busy with both cars and pedestrians.", "snapshot": {"id": "5d532424-ecb2-4970-b454-3f33b4a2a2b5", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/5d532424-ecb2-4970-b454-3f33b4a2a2b5.png", "timestamp": "2024-02-15T20:50:00.694472+00:00"}}, {"id": "0758c46b-d708-44b6-93f0-cc1380e29955", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:18.576629+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5d532424-ecb2-4970-b454-3f33b4a2a2b5", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/5d532424-ecb2-4970-b454-3f33b4a2a2b5.png", "timestamp": "2024-02-15T20:50:00.694472+00:00"}}, {"id": "3a5d5613-f9ea-4629-8d84-bc21607c653b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.087482+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with vehicles moving at a reduced speed due to the wet road conditions.", "snapshot": {"id": "cef560df-0c07-4a45-a13f-cd5e1f3f0376", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/cef560df-0c07-4a45-a13f-cd5e1f3f0376.png", "timestamp": "2024-02-15T20:52:22.887645+00:00"}}, {"id": "2256d345-ddae-421d-8226-2c88bdfade22", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.575103+00:00", "label": "true", "label_explanation": "The road surface is wet from recent rain, and there are some puddles on the surface.", "snapshot": {"id": "cef560df-0c07-4a45-a13f-cd5e1f3f0376", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/cef560df-0c07-4a45-a13f-cd5e1f3f0376.png", "timestamp": "2024-02-15T20:52:22.887645+00:00"}}, {"id": "b32af8e2-d6be-4f58-9d50-07033335eb4d", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.322874+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "cef560df-0c07-4a45-a13f-cd5e1f3f0376", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/cef560df-0c07-4a45-a13f-cd5e1f3f0376.png", "timestamp": "2024-02-15T20:52:22.887645+00:00"}}, {"id": "c74d8e5e-3d2e-407a-9faa-305952a9ceb6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.744693+00:00", "label": "low", "label_explanation": "The water level on the road is low, with some puddles but no significant accumulation of water.", "snapshot": {"id": "cef560df-0c07-4a45-a13f-cd5e1f3f0376", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/cef560df-0c07-4a45-a13f-cd5e1f3f0376.png", "timestamp": "2024-02-15T20:52:22.887645+00:00"}}, {"id": "3b1db806-8c1e-4c54-8985-d80cb954510a", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.443129+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, four-lane road with a bus stop on the left side. There are several vehicles on the road, including buses and cars. The road is wet from recent rain, and there are some puddles on the surface. The sidewalk on the left side of the road is dry, and there are trees and buildings in the background.", "snapshot": {"id": "cef560df-0c07-4a45-a13f-cd5e1f3f0376", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/cef560df-0c07-4a45-a13f-cd5e1f3f0376.png", "timestamp": "2024-02-15T20:52:22.887645+00:00"}}, {"id": "77c4f4c1-d0a9-4649-b867-1841ef86e72b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:34.241083+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cef560df-0c07-4a45-a13f-cd5e1f3f0376", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/cef560df-0c07-4a45-a13f-cd5e1f3f0376.png", "timestamp": "2024-02-15T20:52:22.887645+00:00"}}, {"id": "7b01674f-367f-4cd6-96d0-535d7b72b46f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.218332+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades. Vehicles and pedestrians can move freely.", "snapshot": {"id": "de500780-b704-4ec1-8cbb-4240985e51a2", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/de500780-b704-4ec1-8cbb-4240985e51a2.png", "timestamp": "2024-02-15T20:54:52.696764+00:00"}}, {"id": "7f0f803d-8f22-4a62-9e70-89aefdcbec56", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.975708+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or disruptions.", "snapshot": {"id": "de500780-b704-4ec1-8cbb-4240985e51a2", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/de500780-b704-4ec1-8cbb-4240985e51a2.png", "timestamp": "2024-02-15T20:54:52.696764+00:00"}}, {"id": "da515708-86c2-4b83-8a4e-8992f08d7a61", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.232364+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with multiple lanes, surrounded by buildings and trees. The road is wet from recent rain, and there are several vehicles on it, including cars, buses, and motorcycles. There are also people walking on the sidewalks and crossing the street.", "snapshot": {"id": "de500780-b704-4ec1-8cbb-4240985e51a2", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/de500780-b704-4ec1-8cbb-4240985e51a2.png", "timestamp": "2024-02-15T20:54:52.696764+00:00"}}, {"id": "8d6e32de-0989-4e01-8010-bf54ea83401e", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:03.828793+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "de500780-b704-4ec1-8cbb-4240985e51a2", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/de500780-b704-4ec1-8cbb-4240985e51a2.png", "timestamp": "2024-02-15T20:54:52.696764+00:00"}}, {"id": "dfb6aa48-fe43-4423-b809-52ec840f3948", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.786302+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only a few puddles on the surface. The puddles are shallow and do not pose a hazard to vehicles or pedestrians.", "snapshot": {"id": "de500780-b704-4ec1-8cbb-4240985e51a2", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/de500780-b704-4ec1-8cbb-4240985e51a2.png", "timestamp": "2024-02-15T20:54:52.696764+00:00"}}, {"id": "da811e4d-0482-471d-b19c-4c497749ef6a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.482889+00:00", "label": "true", "label_explanation": "The road is wet from recent rain, and there are several puddles on the surface. However, the rain is not heavy enough to cause any significant traffic disruptions.", "snapshot": {"id": "de500780-b704-4ec1-8cbb-4240985e51a2", "camera_id": "001164", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001164/de500780-b704-4ec1-8cbb-4240985e51a2.png", "timestamp": "2024-02-15T20:54:52.696764+00:00"}}]}, {"id": "001501", "name": "AV. MARACAN\u00c3 X R. MAJOR \u00c1VILA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919462, "longitude": -43.234025, "objects": ["traffic", "water_level", "image_description", "image_corrupted", "road_blockade", "rain"], "identifications": [{"id": "bb559182-7047-4b41-85b0-417f39b05a90", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.167520+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bf0f8743-e5c0-4421-a90f-006a52f94399", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/bf0f8743-e5c0-4421-a90f-006a52f94399.png", "timestamp": "2024-02-15T20:30:19.620493+00:00"}}, {"id": "8bbb39c9-b47d-4b4f-afc4-d38f36cb7c87", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.275061+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several vehicles on the road, but they are able to move without significant congestion.", "snapshot": {"id": "bf0f8743-e5c0-4421-a90f-006a52f94399", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/bf0f8743-e5c0-4421-a90f-006a52f94399.png", "timestamp": "2024-02-15T20:30:19.620493+00:00"}}, {"id": "6e81c9b3-4a0b-4cd7-a7cc-e5db48418b52", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.578770+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable in all directions.", "snapshot": {"id": "bf0f8743-e5c0-4421-a90f-006a52f94399", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/bf0f8743-e5c0-4421-a90f-006a52f94399.png", "timestamp": "2024-02-15T20:30:19.620493+00:00"}}, {"id": "64c6607c-5c6a-4200-b90d-041a24f16044", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.992479+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "bf0f8743-e5c0-4421-a90f-006a52f94399", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/bf0f8743-e5c0-4421-a90f-006a52f94399.png", "timestamp": "2024-02-15T20:30:19.620493+00:00"}}, {"id": "7099133b-dfe5-4dc5-9b56-d7991f0880da", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.449639+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be clear. There are several vehicles on the road, including cars, a bus, and a motorcycle. Pedestrians are also visible on the sidewalks.", "snapshot": {"id": "bf0f8743-e5c0-4421-a90f-006a52f94399", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/bf0f8743-e5c0-4421-a90f-006a52f94399.png", "timestamp": "2024-02-15T20:30:19.620493+00:00"}}, {"id": "a4843df1-2c34-462b-ba9e-ffa7bffcabc9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.691277+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry and there are no signs of water accumulation.", "snapshot": {"id": "bf0f8743-e5c0-4421-a90f-006a52f94399", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/bf0f8743-e5c0-4421-a90f-006a52f94399.png", "timestamp": "2024-02-15T20:30:19.620493+00:00"}}, {"id": "7a48fb9b-2a88-4693-a40d-114dd8859d1c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.473517+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with a few cars and motorbikes visible on the road. The vehicles are moving smoothly without any congestion.", "snapshot": {"id": "5641aa59-25b6-44d8-8c48-baaf6b5ac962", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5641aa59-25b6-44d8-8c48-baaf6b5ac962.png", "timestamp": "2024-02-15T20:45:11.437481+00:00"}}, {"id": "0dc5a1ee-6a87-42c6-a209-329a29428b22", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.967705+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with a clear view of the road surface and surrounding buildings. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "5641aa59-25b6-44d8-8c48-baaf6b5ac962", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5641aa59-25b6-44d8-8c48-baaf6b5ac962.png", "timestamp": "2024-02-15T20:45:11.437481+00:00"}}, {"id": "577e8fe1-d178-44e4-bd8b-403ab4e8ee93", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.348843+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "5641aa59-25b6-44d8-8c48-baaf6b5ac962", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5641aa59-25b6-44d8-8c48-baaf6b5ac962.png", "timestamp": "2024-02-15T20:45:11.437481+00:00"}}, {"id": "b330971f-6367-4bcd-aeeb-321074828ffb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:23.660272+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5641aa59-25b6-44d8-8c48-baaf6b5ac962", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5641aa59-25b6-44d8-8c48-baaf6b5ac962.png", "timestamp": "2024-02-15T20:45:11.437481+00:00"}}, {"id": "4465c7ad-66b1-4f77-8b2b-94b286c26c29", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.872169+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is completely clear for traffic.", "snapshot": {"id": "5641aa59-25b6-44d8-8c48-baaf6b5ac962", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5641aa59-25b6-44d8-8c48-baaf6b5ac962.png", "timestamp": "2024-02-15T20:45:11.437481+00:00"}}, {"id": "b680c3cb-0466-4096-9f39-2976a3413c18", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:24.206731+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "5641aa59-25b6-44d8-8c48-baaf6b5ac962", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5641aa59-25b6-44d8-8c48-baaf6b5ac962.png", "timestamp": "2024-02-15T20:45:11.437481+00:00"}}, {"id": "b0d9f758-b5fa-4d68-9521-e1237789c3b2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:37.099104+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "d9a56557-74f2-424b-8a13-a153eaa756e9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d9a56557-74f2-424b-8a13-a153eaa756e9.png", "timestamp": "2024-02-15T20:35:20.101537+00:00"}}, {"id": "05f15bc5-8f2d-4499-837f-f64fabf3ac40", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:36.688996+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "d9a56557-74f2-424b-8a13-a153eaa756e9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d9a56557-74f2-424b-8a13-a153eaa756e9.png", "timestamp": "2024-02-15T20:35:20.101537+00:00"}}, {"id": "61011d0c-b892-4475-8c77-9a2126d30c7a", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:38.092118+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road, and traffic is able to flow freely.", "snapshot": {"id": "d9a56557-74f2-424b-8a13-a153eaa756e9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d9a56557-74f2-424b-8a13-a153eaa756e9.png", "timestamp": "2024-02-15T20:35:20.101537+00:00"}}, {"id": "5f1c74a2-ff62-4228-b7c2-0aae321585cf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.949099+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with several vehicles, cyclists, and pedestrians.", "snapshot": {"id": "d9a56557-74f2-424b-8a13-a153eaa756e9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d9a56557-74f2-424b-8a13-a153eaa756e9.png", "timestamp": "2024-02-15T20:35:20.101537+00:00"}}, {"id": "a2371100-0510-4301-9a4c-ffa7da596321", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:35.417056+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d9a56557-74f2-424b-8a13-a153eaa756e9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d9a56557-74f2-424b-8a13-a153eaa756e9.png", "timestamp": "2024-02-15T20:35:20.101537+00:00"}}, {"id": "89c55ca6-8743-4668-828e-08f641dc2e52", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:37.748758+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet conditions.", "snapshot": {"id": "d9a56557-74f2-424b-8a13-a153eaa756e9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d9a56557-74f2-424b-8a13-a153eaa756e9.png", "timestamp": "2024-02-15T20:35:20.101537+00:00"}}, {"id": "c9d9f956-8446-4680-a396-01ec5b8f25ef", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:11.175663+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable for all vehicles.", "snapshot": {"id": "71117d8e-34fb-4adb-9316-a8a4b9bf7467", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/71117d8e-34fb-4adb-9316-a8a4b9bf7467.png", "timestamp": "2024-02-15T20:37:52.288946+00:00"}}, {"id": "69db0a8a-07e9-4388-b138-be90acef4596", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.566194+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with several vehicles on the road. However, the traffic is moving smoothly and there are no major delays.", "snapshot": {"id": "71117d8e-34fb-4adb-9316-a8a4b9bf7467", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/71117d8e-34fb-4adb-9316-a8a4b9bf7467.png", "timestamp": "2024-02-15T20:37:52.288946+00:00"}}, {"id": "1ce77286-c50b-4da5-9c72-9293f06b6a97", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.580087+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain is not heavy and there is no standing water.", "snapshot": {"id": "71117d8e-34fb-4adb-9316-a8a4b9bf7467", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/71117d8e-34fb-4adb-9316-a8a4b9bf7467.png", "timestamp": "2024-02-15T20:37:52.288946+00:00"}}, {"id": "9e599af6-a779-4baf-ac0b-3804c6039047", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:09.146926+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, motorcycles, and bicycles. The road is wet from recent rain, but there are no large puddles or standing water. The traffic lights are not visible in the image.", "snapshot": {"id": "71117d8e-34fb-4adb-9316-a8a4b9bf7467", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/71117d8e-34fb-4adb-9316-a8a4b9bf7467.png", "timestamp": "2024-02-15T20:37:52.288946+00:00"}}, {"id": "ab0ca0d9-320a-4db0-ae0c-13bd66ec4658", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:08.587376+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "71117d8e-34fb-4adb-9316-a8a4b9bf7467", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/71117d8e-34fb-4adb-9316-a8a4b9bf7467.png", "timestamp": "2024-02-15T20:37:52.288946+00:00"}}, {"id": "b8d475b5-8417-44ae-81d3-63f5ee467648", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:10.147870+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water is not deep enough to cause any problems for vehicles or pedestrians.", "snapshot": {"id": "71117d8e-34fb-4adb-9316-a8a4b9bf7467", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/71117d8e-34fb-4adb-9316-a8a4b9bf7467.png", "timestamp": "2024-02-15T20:37:52.288946+00:00"}}, {"id": "7cb650b5-e8d0-4523-961f-005f9b960854", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.988658+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy with some light rain.", "snapshot": {"id": "266be255-9360-4607-bb0c-bbf1698fdea9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/266be255-9360-4607-bb0c-bbf1698fdea9.png", "timestamp": "2024-02-15T20:40:23.186133+00:00"}}, {"id": "e36f0dc7-758c-43b4-b8d8-a7a0f8b582d8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.363181+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free flow of traffic.", "snapshot": {"id": "266be255-9360-4607-bb0c-bbf1698fdea9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/266be255-9360-4607-bb0c-bbf1698fdea9.png", "timestamp": "2024-02-15T20:40:23.186133+00:00"}}, {"id": "4da4c38d-e925-47be-9561-830dd3079afa", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:37.687094+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "266be255-9360-4607-bb0c-bbf1698fdea9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/266be255-9360-4607-bb0c-bbf1698fdea9.png", "timestamp": "2024-02-15T20:40:23.186133+00:00"}}, {"id": "d76f1399-ac31-4bb9-9983-b5170de9a5c4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.334109+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "266be255-9360-4607-bb0c-bbf1698fdea9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/266be255-9360-4607-bb0c-bbf1698fdea9.png", "timestamp": "2024-02-15T20:40:23.186133+00:00"}}, {"id": "6127e8a8-2e4e-4219-8868-fdaedbe10164", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:39.126045+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or delays.", "snapshot": {"id": "266be255-9360-4607-bb0c-bbf1698fdea9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/266be255-9360-4607-bb0c-bbf1698fdea9.png", "timestamp": "2024-02-15T20:40:23.186133+00:00"}}, {"id": "e8413b2d-4156-4378-b8f1-7e8f3b633f81", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:38.704905+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they are shallow and do not pose a significant risk to traffic.", "snapshot": {"id": "266be255-9360-4607-bb0c-bbf1698fdea9", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/266be255-9360-4607-bb0c-bbf1698fdea9.png", "timestamp": "2024-02-15T20:40:23.186133+00:00"}}, {"id": "70377796-412e-4357-8374-cf982ba3be99", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.799480+00:00", "label": "free", "label_explanation": "There are no obstructions visible on the road, and traffic is able to pass through the intersection without hindrance.", "snapshot": {"id": "e5902e25-c6de-4410-8352-6703893c226f", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e5902e25-c6de-4410-8352-6703893c226f.png", "timestamp": "2024-02-15T20:42:50.470749+00:00"}}, {"id": "6a6c57aa-b25e-430b-961f-4f40f4709f15", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.515458+00:00", "label": "moderate", "label_explanation": "The road is moderately busy, with several cars visible in the image. Traffic appears to be flowing smoothly, with no major congestion or delays.", "snapshot": {"id": "e5902e25-c6de-4410-8352-6703893c226f", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e5902e25-c6de-4410-8352-6703893c226f.png", "timestamp": "2024-02-15T20:42:50.470749+00:00"}}, {"id": "a228d9fb-0432-42ce-bf41-e0d2a254f13f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.291573+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "e5902e25-c6de-4410-8352-6703893c226f", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e5902e25-c6de-4410-8352-6703893c226f.png", "timestamp": "2024-02-15T20:42:50.470749+00:00"}}, {"id": "6c4763a9-33d6-414a-a482-3aa0ed7d3140", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.635834+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e5902e25-c6de-4410-8352-6703893c226f", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e5902e25-c6de-4410-8352-6703893c226f.png", "timestamp": "2024-02-15T20:42:50.470749+00:00"}}, {"id": "b4a0eb28-6f77-46bd-a940-322179580c96", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:10.018032+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "e5902e25-c6de-4410-8352-6703893c226f", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e5902e25-c6de-4410-8352-6703893c226f.png", "timestamp": "2024-02-15T20:42:50.470749+00:00"}}, {"id": "2fc2d23a-7107-488d-8cd3-4485e5f32d3f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:09.824569+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with a white Toyota Vios car in the center, surrounded by buildings and trees. It appears to be daytime based on the lighting.", "snapshot": {"id": "e5902e25-c6de-4410-8352-6703893c226f", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e5902e25-c6de-4410-8352-6703893c226f.png", "timestamp": "2024-02-15T20:42:50.470749+00:00"}}, {"id": "53ef4361-deda-4dac-87ab-7e75b7efc20f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.153655+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with various vehicles, buildings, and people.", "snapshot": {"id": "5bcd2344-4492-47cd-952e-37934fd6b413", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5bcd2344-4492-47cd-952e-37934fd6b413.png", "timestamp": "2024-02-15T20:47:37.391872+00:00"}}, {"id": "cd0c7914-ba4b-43f9-aa90-394859d25deb", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:49.804716+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "5bcd2344-4492-47cd-952e-37934fd6b413", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5bcd2344-4492-47cd-952e-37934fd6b413.png", "timestamp": "2024-02-15T20:47:37.391872+00:00"}}, {"id": "48d06671-27fb-4392-825f-7ccbe0b57d7b", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:51.179101+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "5bcd2344-4492-47cd-952e-37934fd6b413", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5bcd2344-4492-47cd-952e-37934fd6b413.png", "timestamp": "2024-02-15T20:47:37.391872+00:00"}}, {"id": "375ee938-d4c6-4011-86d8-42a416ef2126", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.820719+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "5bcd2344-4492-47cd-952e-37934fd6b413", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5bcd2344-4492-47cd-952e-37934fd6b413.png", "timestamp": "2024-02-15T20:47:37.391872+00:00"}}, {"id": "3fcf5aa4-4f29-4776-adbb-96f05168e56f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.606281+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "5bcd2344-4492-47cd-952e-37934fd6b413", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5bcd2344-4492-47cd-952e-37934fd6b413.png", "timestamp": "2024-02-15T20:47:37.391872+00:00"}}, {"id": "323c7dfc-85f0-4933-a5c4-99c1cadf42f4", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:50.413028+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "5bcd2344-4492-47cd-952e-37934fd6b413", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/5bcd2344-4492-47cd-952e-37934fd6b413.png", "timestamp": "2024-02-15T20:47:37.391872+00:00"}}, {"id": "7c961cfb-74c6-4003-b132-a411b6e956cb", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:14.227004+00:00", "label": "free", "label_explanation": "There are no obstructions blocking the road.", "snapshot": {"id": "6225e051-c033-4864-9e60-c63186d871bd", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/6225e051-c033-4864-9e60-c63186d871bd.png", "timestamp": "2024-02-15T20:50:01.684164+00:00"}}, {"id": "cfe101ac-0f69-42d6-adda-78ef8562e009", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.692384+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "6225e051-c033-4864-9e60-c63186d871bd", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/6225e051-c033-4864-9e60-c63186d871bd.png", "timestamp": "2024-02-15T20:50:01.684164+00:00"}}, {"id": "9ac755df-f9a0-47c7-af74-79428833b874", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.533906+00:00", "label": "false", "label_explanation": "The image is clear, with no signs of data loss or corruption.", "snapshot": {"id": "6225e051-c033-4864-9e60-c63186d871bd", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/6225e051-c033-4864-9e60-c63186d871bd.png", "timestamp": "2024-02-15T20:50:01.684164+00:00"}}, {"id": "cabcab18-cfa2-46f8-aa91-0104ca179013", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.431958+00:00", "label": "true", "label_explanation": "The image shows a wet road surface, indicating that it has been raining.", "snapshot": {"id": "6225e051-c033-4864-9e60-c63186d871bd", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/6225e051-c033-4864-9e60-c63186d871bd.png", "timestamp": "2024-02-15T20:50:01.684164+00:00"}}, {"id": "6620e9d5-a680-450a-99a4-37fe424beb94", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:12.940636+00:00", "label": "null", "label_explanation": "The image shows a four-way intersection with a white car in the center. There are yellow markings on the road indicating crosswalks and a bike lane. There are buildings and trees in the background.", "snapshot": {"id": "6225e051-c033-4864-9e60-c63186d871bd", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/6225e051-c033-4864-9e60-c63186d871bd.png", "timestamp": "2024-02-15T20:50:01.684164+00:00"}}, {"id": "f36778e4-dba3-43f2-aaa7-b91c5296d0b4", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:13.949291+00:00", "label": "moderate", "label_explanation": "The white car is stopped in the middle of the intersection, waiting to turn left. There are cars behind it, waiting to proceed. There is a cyclist on the right side of the image, riding in the bike lane.", "snapshot": {"id": "6225e051-c033-4864-9e60-c63186d871bd", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/6225e051-c033-4864-9e60-c63186d871bd.png", "timestamp": "2024-02-15T20:50:01.684164+00:00"}}, {"id": "b058e514-7a27-4b8a-84cd-a31d0cc8141f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.258044+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible signs of water accumulation.", "snapshot": {"id": "d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3.png", "timestamp": "2024-02-15T20:52:23.913300+00:00"}}, {"id": "f34337f3-01e1-4784-b072-853fe00f9cbd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.178017+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3.png", "timestamp": "2024-02-15T20:52:23.913300+00:00"}}, {"id": "319beb00-6d62-4538-b689-3e5405d06dfd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.443403+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a steady flow of vehicles in both directions. Traffic appears to be moving smoothly, with no major congestion or disruptions.", "snapshot": {"id": "d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3.png", "timestamp": "2024-02-15T20:52:23.913300+00:00"}}, {"id": "fc2949cf-897d-48ca-91c8-1c90837c2aaf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.615479+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with a clear view of the road surface and surrounding buildings. It is daytime and the weather appears to be cloudy, with no visible signs of rain or water on the road.", "snapshot": {"id": "d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3.png", "timestamp": "2024-02-15T20:52:23.913300+00:00"}}, {"id": "39bc9a5b-fd02-4c94-a2f2-ee39d0116bcf", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:35.935459+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface.", "snapshot": {"id": "d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3.png", "timestamp": "2024-02-15T20:52:23.913300+00:00"}}, {"id": "68bad334-14c3-4d52-9e06-e1ded47780cf", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:36.654105+00:00", "label": "free", "label_explanation": "There are no visible obstructions or blockades on the road. Traffic is able to flow freely in both directions.", "snapshot": {"id": "d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/d480ebf9-9aca-4a18-b5aa-2abb68f7b8c3.png", "timestamp": "2024-02-15T20:52:23.913300+00:00"}}, {"id": "375e2c7a-8794-4623-bb78-836b576ddae7", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.716215+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "e139446e-b413-4696-a279-d4511dfe1a94", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e139446e-b413-4696-a279-d4511dfe1a94.png", "timestamp": "2024-02-15T20:54:53.318907+00:00"}}, {"id": "9105c998-0f20-4151-a06c-253e25264c35", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.489661+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major traffic disruptions visible in the image.", "snapshot": {"id": "e139446e-b413-4696-a279-d4511dfe1a94", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e139446e-b413-4696-a279-d4511dfe1a94.png", "timestamp": "2024-02-15T20:54:53.318907+00:00"}}, {"id": "85b2b0de-cc1a-46b1-b1a1-3af5463d8172", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.497147+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "e139446e-b413-4696-a279-d4511dfe1a94", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e139446e-b413-4696-a279-d4511dfe1a94.png", "timestamp": "2024-02-15T20:54:53.318907+00:00"}}, {"id": "166ed788-fec9-49ce-a766-e9158902c6fb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.219227+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface. The road is wet, but the water is likely from recent rain or cleaning, and it is not causing any traffic disruptions.", "snapshot": {"id": "e139446e-b413-4696-a279-d4511dfe1a94", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e139446e-b413-4696-a279-d4511dfe1a94.png", "timestamp": "2024-02-15T20:54:53.318907+00:00"}}, {"id": "a92cefac-312a-4511-a3f8-237da57b33ea", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:04.798402+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, crossing the intersection. The road surface is wet, but there is no standing water.", "snapshot": {"id": "e139446e-b413-4696-a279-d4511dfe1a94", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e139446e-b413-4696-a279-d4511dfe1a94.png", "timestamp": "2024-02-15T20:54:53.318907+00:00"}}, {"id": "a90ba16a-4d33-46d5-93e4-143a9d2a040c", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:05.009831+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining or that the road has been recently cleaned. There is no standing water, suggesting that the rain has been light or that it has stopped recently.", "snapshot": {"id": "e139446e-b413-4696-a279-d4511dfe1a94", "camera_id": "001501", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001501/e139446e-b413-4696-a279-d4511dfe1a94.png", "timestamp": "2024-02-15T20:54:53.318907+00:00"}}]}, {"id": "001395", "name": "R. CARVALHO AZEVEDO, 368 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9643904, "longitude": -43.20382928, "objects": ["image_corrupted", "image_description", "traffic", "road_blockade", "rain", "water_level"], "identifications": [{"id": "c9850187-0df2-4a12-a0cf-95ce56678148", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.531212+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "d31b0237-c8d9-42e1-897e-d047a554c72f", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/d31b0237-c8d9-42e1-897e-d047a554c72f.png", "timestamp": "2024-02-15T20:30:26.370917+00:00"}}, {"id": "ff437fab-b899-4219-8353-edc984641e0b", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.035799+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "d31b0237-c8d9-42e1-897e-d047a554c72f", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/d31b0237-c8d9-42e1-897e-d047a554c72f.png", "timestamp": "2024-02-15T20:30:26.370917+00:00"}}, {"id": "32e0ea78-e181-40c6-b303-2fbff52cd24a", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.718573+00:00", "label": "true", "label_explanation": "The road surface is wet, and raindrops are visible on the windshield of the vehicles.", "snapshot": {"id": "d31b0237-c8d9-42e1-897e-d047a554c72f", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/d31b0237-c8d9-42e1-897e-d047a554c72f.png", "timestamp": "2024-02-15T20:30:26.370917+00:00"}}, {"id": "24520367-b84c-4520-99e9-4d647fd5ec44", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.184832+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d31b0237-c8d9-42e1-897e-d047a554c72f", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/d31b0237-c8d9-42e1-897e-d047a554c72f.png", "timestamp": "2024-02-15T20:30:26.370917+00:00"}}, {"id": "f072d326-3e24-4471-85f5-44c52d6f2ce9", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:43.310161+00:00", "label": "moderate", "label_explanation": "Traffic is moderate, with vehicles moving at a reduced speed due to the wet conditions.", "snapshot": {"id": "d31b0237-c8d9-42e1-897e-d047a554c72f", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/d31b0237-c8d9-42e1-897e-d047a554c72f.png", "timestamp": "2024-02-15T20:30:26.370917+00:00"}}, {"id": "0ce6d24f-00ca-4d3f-bee7-bb7015cec65e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.428927+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic during daytime. It is raining, and the road surface is wet but without significant water accumulation.", "snapshot": {"id": "d31b0237-c8d9-42e1-897e-d047a554c72f", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/d31b0237-c8d9-42e1-897e-d047a554c72f.png", "timestamp": "2024-02-15T20:30:26.370917+00:00"}}, {"id": "7033ad88-e372-4d15-bf92-4ad3237cc852", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.758726+00:00", "label": "moderate", "label_explanation": "Traffic is moving slowly due to the wet road conditions.", "snapshot": {"id": "bf428034-554a-4242-90a6-60c964b834d8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/bf428034-554a-4242-90a6-60c964b834d8.png", "timestamp": "2024-02-15T20:45:17.272863+00:00"}}, {"id": "90121008-3647-4cde-9bf2-f1d9ca1f0118", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.032831+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "bf428034-554a-4242-90a6-60c964b834d8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/bf428034-554a-4242-90a6-60c964b834d8.png", "timestamp": "2024-02-15T20:45:17.272863+00:00"}}, {"id": "323c2216-bb33-4328-be65-c5f63780cb00", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.267864+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "bf428034-554a-4242-90a6-60c964b834d8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/bf428034-554a-4242-90a6-60c964b834d8.png", "timestamp": "2024-02-15T20:45:17.272863+00:00"}}, {"id": "273f3e6e-4e3a-4d39-93d5-fb780b5b000f", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.552512+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "bf428034-554a-4242-90a6-60c964b834d8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/bf428034-554a-4242-90a6-60c964b834d8.png", "timestamp": "2024-02-15T20:45:17.272863+00:00"}}, {"id": "fcfab1e1-bfd7-4257-ae21-6d04129e25b8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.050402+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy.", "snapshot": {"id": "bf428034-554a-4242-90a6-60c964b834d8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/bf428034-554a-4242-90a6-60c964b834d8.png", "timestamp": "2024-02-15T20:45:17.272863+00:00"}}, {"id": "c19a4088-b0d4-46dd-8d05-6cf2be549d52", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:28.803455+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "bf428034-554a-4242-90a6-60c964b834d8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/bf428034-554a-4242-90a6-60c964b834d8.png", "timestamp": "2024-02-15T20:45:17.272863+00:00"}}, {"id": "0b074d1b-2e1f-4e32-b8f7-fe09333f488a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.558614+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major delays or congestion.", "snapshot": {"id": "86dafddd-b3cf-4c51-a98e-f12f66ec6224", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/86dafddd-b3cf-4c51-a98e-f12f66ec6224.png", "timestamp": "2024-02-15T20:42:53.866948+00:00"}}, {"id": "b29bd35a-bfe0-459e-8f4a-83476c688728", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.859808+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "86dafddd-b3cf-4c51-a98e-f12f66ec6224", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/86dafddd-b3cf-4c51-a98e-f12f66ec6224.png", "timestamp": "2024-02-15T20:42:53.866948+00:00"}}, {"id": "6d692421-3ae0-4231-9754-b52533ec171e", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.803110+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. The road surface is wet from recent rain, but there are no significant puddles or standing water. There are various types of vehicles on the road, including cars, buses, and trucks. The vehicles are driving in both directions, and there is a gas station on the right side of the road. There are also trees and buildings in the background.", "snapshot": {"id": "86dafddd-b3cf-4c51-a98e-f12f66ec6224", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/86dafddd-b3cf-4c51-a98e-f12f66ec6224.png", "timestamp": "2024-02-15T20:42:53.866948+00:00"}}, {"id": "f8ff9cde-c663-45ab-91e4-959e63bcbf39", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.351232+00:00", "label": "low", "label_explanation": "The water level on the road is low, as there is no standing water or significant puddles. The road surface is simply wet from the rain.", "snapshot": {"id": "86dafddd-b3cf-4c51-a98e-f12f66ec6224", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/86dafddd-b3cf-4c51-a98e-f12f66ec6224.png", "timestamp": "2024-02-15T20:42:53.866948+00:00"}}, {"id": "24dee5cd-0a74-4e3e-9dd0-b08390b181a5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.167772+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy, as there is no standing water or significant puddles.", "snapshot": {"id": "86dafddd-b3cf-4c51-a98e-f12f66ec6224", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/86dafddd-b3cf-4c51-a98e-f12f66ec6224.png", "timestamp": "2024-02-15T20:42:53.866948+00:00"}}, {"id": "830c4914-2810-45b8-969f-c6c901be0d95", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:05.471966+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "86dafddd-b3cf-4c51-a98e-f12f66ec6224", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/86dafddd-b3cf-4c51-a98e-f12f66ec6224.png", "timestamp": "2024-02-15T20:42:53.866948+00:00"}}, {"id": "8f4ce379-4110-42aa-be96-1dfad6c1a1a2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.730981+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "1edce9a0-bb43-4f41-b9a8-0dd8cf614510", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/1edce9a0-bb43-4f41-b9a8-0dd8cf614510.png", "timestamp": "2024-02-15T20:33:00.808760+00:00"}}, {"id": "4952d805-fc8a-446c-8aeb-c767b8b3d695", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.221582+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and passable.", "snapshot": {"id": "1edce9a0-bb43-4f41-b9a8-0dd8cf614510", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/1edce9a0-bb43-4f41-b9a8-0dd8cf614510.png", "timestamp": "2024-02-15T20:33:00.808760+00:00"}}, {"id": "647aa64a-d349-4f10-83da-c3de62f2993a", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:17.557520+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with vehicles moving at a steady pace. There are no major obstructions or delays visible.", "snapshot": {"id": "1edce9a0-bb43-4f41-b9a8-0dd8cf614510", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/1edce9a0-bb43-4f41-b9a8-0dd8cf614510.png", "timestamp": "2024-02-15T20:33:00.808760+00:00"}}, {"id": "df112eab-b78b-4bc2-a930-8ff4e34f30cf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.663833+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are a few trees on either side of the road, and buildings and other structures in the background.", "snapshot": {"id": "1edce9a0-bb43-4f41-b9a8-0dd8cf614510", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/1edce9a0-bb43-4f41-b9a8-0dd8cf614510.png", "timestamp": "2024-02-15T20:33:00.808760+00:00"}}, {"id": "0ffee6b5-3522-4559-8988-b061442f16c0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:15.114205+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1edce9a0-bb43-4f41-b9a8-0dd8cf614510", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/1edce9a0-bb43-4f41-b9a8-0dd8cf614510.png", "timestamp": "2024-02-15T20:33:00.808760+00:00"}}, {"id": "f4bea91f-04df-477a-92f3-d65d8c65ffce", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.151104+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "1edce9a0-bb43-4f41-b9a8-0dd8cf614510", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/1edce9a0-bb43-4f41-b9a8-0dd8cf614510.png", "timestamp": "2024-02-15T20:33:00.808760+00:00"}}, {"id": "e8223bab-09ab-4746-8b77-60e02b14cca7", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.297790+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with cars moving at a steady pace.", "snapshot": {"id": "b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29.png", "timestamp": "2024-02-15T20:35:27.471401+00:00"}}, {"id": "167a3103-e4b3-447e-a758-5c81285f16a8", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:43.897612+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is flowing smoothly.", "snapshot": {"id": "b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29.png", "timestamp": "2024-02-15T20:35:27.471401+00:00"}}, {"id": "855ca39b-105b-490b-a470-154e3ce93bbe", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.868650+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29.png", "timestamp": "2024-02-15T20:35:27.471401+00:00"}}, {"id": "a2006d3b-49f6-41b1-8535-223d44d41a01", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:42.424819+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently.", "snapshot": {"id": "b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29.png", "timestamp": "2024-02-15T20:35:27.471401+00:00"}}, {"id": "aa6f6490-6df6-4331-9afc-c4f237c52e41", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.930256+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a gas station on the left and a residential building on the right. There are several cars on the road, and the weather appears to be overcast.", "snapshot": {"id": "b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29.png", "timestamp": "2024-02-15T20:35:27.471401+00:00"}}, {"id": "4b41edd8-e65d-4308-8e89-656c267d5c6f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:41.603233+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/b1dc384b-1ceb-459a-8a7e-8c0dc0a64b29.png", "timestamp": "2024-02-15T20:35:27.471401+00:00"}}, {"id": "bfecf7ac-1862-4b9c-9e45-ebd111784d25", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:16.157177+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "207ad060-e025-4891-b50f-3e6d33d3dd5c", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/207ad060-e025-4891-b50f-3e6d33d3dd5c.png", "timestamp": "2024-02-15T20:37:59.291544+00:00"}}, {"id": "f801c0f9-d343-4711-b579-863a96e4ef45", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:16.568257+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "207ad060-e025-4891-b50f-3e6d33d3dd5c", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/207ad060-e025-4891-b50f-3e6d33d3dd5c.png", "timestamp": "2024-02-15T20:37:59.291544+00:00"}}, {"id": "218f5ada-2066-4a21-b915-4a7bff5bcf18", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.796511+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for free traffic flow.", "snapshot": {"id": "207ad060-e025-4891-b50f-3e6d33d3dd5c", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/207ad060-e025-4891-b50f-3e6d33d3dd5c.png", "timestamp": "2024-02-15T20:37:59.291544+00:00"}}, {"id": "34780ff2-11d3-4ea6-a0eb-e75b161434bd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.465912+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "207ad060-e025-4891-b50f-3e6d33d3dd5c", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/207ad060-e025-4891-b50f-3e6d33d3dd5c.png", "timestamp": "2024-02-15T20:37:59.291544+00:00"}}, {"id": "b9791e83-32ed-4173-834c-e65cc987543f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.869396+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate lighting conditions. It features a gas station on the left, a bus stop on the right, and a row of trees on the left side of the road. There are several vehicles on the road, including a bus, a truck, and a few cars.", "snapshot": {"id": "207ad060-e025-4891-b50f-3e6d33d3dd5c", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/207ad060-e025-4891-b50f-3e6d33d3dd5c.png", "timestamp": "2024-02-15T20:37:59.291544+00:00"}}, {"id": "d86e266c-447a-49b2-ab63-8afb85500990", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:15.389160+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "207ad060-e025-4891-b50f-3e6d33d3dd5c", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/207ad060-e025-4891-b50f-3e6d33d3dd5c.png", "timestamp": "2024-02-15T20:37:59.291544+00:00"}}, {"id": "8e544919-f375-4b17-9267-f56d559f6eb9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.051795+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable in both directions.", "snapshot": {"id": "89d1bb08-152f-49ab-a401-ffbca9add7f4", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/89d1bb08-152f-49ab-a401-ffbca9add7f4.png", "timestamp": "2024-02-15T20:40:29.959455+00:00"}}, {"id": "3363cefc-3e02-440c-a5c2-17a19c52c3d2", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.463432+00:00", "label": "low", "label_explanation": "The water level on the road is low. The puddles are shallow and do not pose a significant hazard to vehicles.", "snapshot": {"id": "89d1bb08-152f-49ab-a401-ffbca9add7f4", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/89d1bb08-152f-49ab-a401-ffbca9add7f4.png", "timestamp": "2024-02-15T20:40:29.959455+00:00"}}, {"id": "d0ecb279-2264-41a1-b63d-bbdd16787728", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.303408+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "89d1bb08-152f-49ab-a401-ffbca9add7f4", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/89d1bb08-152f-49ab-a401-ffbca9add7f4.png", "timestamp": "2024-02-15T20:40:29.959455+00:00"}}, {"id": "35737cc2-2244-4436-9f13-5387c5c49ca6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.910559+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars, buses, and motorcycles. The road is relatively wide, with multiple lanes in each direction. There are trees and buildings on either side of the road.", "snapshot": {"id": "89d1bb08-152f-49ab-a401-ffbca9add7f4", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/89d1bb08-152f-49ab-a401-ffbca9add7f4.png", "timestamp": "2024-02-15T20:40:29.959455+00:00"}}, {"id": "4ac58cc6-15cb-4b83-bf13-af87e22739dd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.757865+00:00", "label": "moderate", "label_explanation": "The traffic is moderate. There are a number of vehicles on the road, but they are able to move at a reasonable speed.", "snapshot": {"id": "89d1bb08-152f-49ab-a401-ffbca9add7f4", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/89d1bb08-152f-49ab-a401-ffbca9add7f4.png", "timestamp": "2024-02-15T20:40:29.959455+00:00"}}, {"id": "f0b4a973-0430-40c2-a896-d57bb00de56e", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.185643+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also puddles of water on the road.", "snapshot": {"id": "89d1bb08-152f-49ab-a401-ffbca9add7f4", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/89d1bb08-152f-49ab-a401-ffbca9add7f4.png", "timestamp": "2024-02-15T20:40:29.959455+00:00"}}, {"id": "5ba35c84-a540-4bf2-86e6-a61d4063e275", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.460678+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are several vehicles on the road, including cars and a bus. There are also a few trees and buildings in the background.", "snapshot": {"id": "f910a9dd-6877-4976-948c-7191f5b9308e", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/f910a9dd-6877-4976-948c-7191f5b9308e.png", "timestamp": "2024-02-15T20:47:40.876332+00:00"}}, {"id": "b70b05f7-346b-4375-8aab-df357f384147", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.132017+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f910a9dd-6877-4976-948c-7191f5b9308e", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/f910a9dd-6877-4976-948c-7191f5b9308e.png", "timestamp": "2024-02-15T20:47:40.876332+00:00"}}, {"id": "486b2538-b18e-4c5c-a059-29843bc8b638", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.053946+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "f910a9dd-6877-4976-948c-7191f5b9308e", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/f910a9dd-6877-4976-948c-7191f5b9308e.png", "timestamp": "2024-02-15T20:47:40.876332+00:00"}}, {"id": "af934b59-2b60-4d97-a3ba-b3c509169714", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:52.780421+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry.", "snapshot": {"id": "f910a9dd-6877-4976-948c-7191f5b9308e", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/f910a9dd-6877-4976-948c-7191f5b9308e.png", "timestamp": "2024-02-15T20:47:40.876332+00:00"}}, {"id": "ec20c381-8f84-4f55-9ffa-cc85216a72ac", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.483251+00:00", "label": "free", "label_explanation": "There are no road blockades in the image. The road is completely clear and passable.", "snapshot": {"id": "f910a9dd-6877-4976-948c-7191f5b9308e", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/f910a9dd-6877-4976-948c-7191f5b9308e.png", "timestamp": "2024-02-15T20:47:40.876332+00:00"}}, {"id": "bccc2d89-5b11-478a-a133-5ebdb64e3712", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:53.253657+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are a few vehicles on the road, but they are all moving at a steady pace. There are no major obstructions or delays.", "snapshot": {"id": "f910a9dd-6877-4976-948c-7191f5b9308e", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/f910a9dd-6877-4976-948c-7191f5b9308e.png", "timestamp": "2024-02-15T20:47:40.876332+00:00"}}, {"id": "a513225e-52f6-4bde-b95d-6f64deab71d5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.196047+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades visible in the image. Traffic is able to flow freely without any hindrance.", "snapshot": {"id": "7fc6bc2e-fda3-4687-aa19-aca801ff98f8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/7fc6bc2e-fda3-4687-aa19-aca801ff98f8.png", "timestamp": "2024-02-15T20:50:05.050869+00:00"}}, {"id": "0377efbd-a5a7-4f3b-a8ff-d27aae72f2e9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.626836+00:00", "label": "low", "label_explanation": "The water level is low, with only small puddles present on the road surface. These puddles do not appear to be causing any significant hindrance to traffic flow.", "snapshot": {"id": "7fc6bc2e-fda3-4687-aa19-aca801ff98f8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/7fc6bc2e-fda3-4687-aa19-aca801ff98f8.png", "timestamp": "2024-02-15T20:50:05.050869+00:00"}}, {"id": "bdad51be-f2bb-4a25-a5b1-806dac4eb0b7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.412865+00:00", "label": "true", "label_explanation": "While the road surface is mostly dry, there are some small, isolated puddles of water scattered across the road.", "snapshot": {"id": "7fc6bc2e-fda3-4687-aa19-aca801ff98f8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/7fc6bc2e-fda3-4687-aa19-aca801ff98f8.png", "timestamp": "2024-02-15T20:50:05.050869+00:00"}}, {"id": "1f5b189d-5680-41e1-8e10-233e7fcfcdaa", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.938627+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace. There are no major disruptions or blockages visible in the image.", "snapshot": {"id": "7fc6bc2e-fda3-4687-aa19-aca801ff98f8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/7fc6bc2e-fda3-4687-aa19-aca801ff98f8.png", "timestamp": "2024-02-15T20:50:05.050869+00:00"}}, {"id": "f50d9753-8415-4605-b95b-6984f949bbb6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:15.909364+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "7fc6bc2e-fda3-4687-aa19-aca801ff98f8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/7fc6bc2e-fda3-4687-aa19-aca801ff98f8.png", "timestamp": "2024-02-15T20:50:05.050869+00:00"}}, {"id": "56bc57b5-2fa1-422d-a6f1-089354b84c35", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:16.116111+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy but dry. The road surface is visible with no major obstructions.", "snapshot": {"id": "7fc6bc2e-fda3-4687-aa19-aca801ff98f8", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/7fc6bc2e-fda3-4687-aa19-aca801ff98f8.png", "timestamp": "2024-02-15T20:50:05.050869+00:00"}}, {"id": "45e44bc5-897a-4ff1-8030-e2ad2765f2a9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.922528+00:00", "label": "free", "label_explanation": "The road is free of any obstructions or blockades. Traffic is able to flow smoothly without any impediments.", "snapshot": {"id": "2a4d6538-7c88-4578-b12b-1593ba81c954", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/2a4d6538-7c88-4578-b12b-1593ba81c954.png", "timestamp": "2024-02-15T20:52:28.913024+00:00"}}, {"id": "97900f6c-d5d9-420d-9642-2e8cfd75a3e5", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.517254+00:00", "label": "low", "label_explanation": "Since there is no rain, the water level on the road is low. The road surface is dry and there are no visible signs of water accumulation.", "snapshot": {"id": "2a4d6538-7c88-4578-b12b-1593ba81c954", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/2a4d6538-7c88-4578-b12b-1593ba81c954.png", "timestamp": "2024-02-15T20:52:28.913024+00:00"}}, {"id": "a3fb3cee-d9d0-4946-ba89-503689cb12cc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.019907+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy but dry. The road surface is visible and there are no obvious obstructions.", "snapshot": {"id": "2a4d6538-7c88-4578-b12b-1593ba81c954", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/2a4d6538-7c88-4578-b12b-1593ba81c954.png", "timestamp": "2024-02-15T20:52:28.913024+00:00"}}, {"id": "f9c99a22-dd53-40c3-a3ff-610a0828a937", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:40.812503+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2a4d6538-7c88-4578-b12b-1593ba81c954", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/2a4d6538-7c88-4578-b12b-1593ba81c954.png", "timestamp": "2024-02-15T20:52:28.913024+00:00"}}, {"id": "dfdc549d-af93-42f5-b949-4526551fa2e0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.716946+00:00", "label": "easy", "label_explanation": "The traffic flow appears to be moderate. There are several vehicles on the road, but they are able to move without significant hindrance. There are no major obstructions or traffic jams visible in the image.", "snapshot": {"id": "2a4d6538-7c88-4578-b12b-1593ba81c954", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/2a4d6538-7c88-4578-b12b-1593ba81c954.png", "timestamp": "2024-02-15T20:52:28.913024+00:00"}}, {"id": "0a26e582-a2a6-4af8-97c6-8f6e73c6be49", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.284514+00:00", "label": "false", "label_explanation": "Although the image is not corrupted, there is no rain present on the road surface. The road appears dry.", "snapshot": {"id": "2a4d6538-7c88-4578-b12b-1593ba81c954", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/2a4d6538-7c88-4578-b12b-1593ba81c954.png", "timestamp": "2024-02-15T20:52:28.913024+00:00"}}, {"id": "dddbbadb-c88e-4b07-8ed8-9f29ebb2a822", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.043559+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, allowing for smooth traffic flow.", "snapshot": {"id": "cd4849de-8f2e-4a8a-8e8d-8e83f4488b93", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/cd4849de-8f2e-4a8a-8e8d-8e83f4488b93.png", "timestamp": "2024-02-15T20:54:56.868311+00:00"}}, {"id": "b61d1d32-f0d3-462b-9334-3a1ad5561587", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.323669+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "cd4849de-8f2e-4a8a-8e8d-8e83f4488b93", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/cd4849de-8f2e-4a8a-8e8d-8e83f4488b93.png", "timestamp": "2024-02-15T20:54:56.868311+00:00"}}, {"id": "d9fdb3fe-c857-4b15-b7c2-b075cff8733a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:07.870540+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cd4849de-8f2e-4a8a-8e8d-8e83f4488b93", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/cd4849de-8f2e-4a8a-8e8d-8e83f4488b93.png", "timestamp": "2024-02-15T20:54:56.868311+00:00"}}, {"id": "e3d76d90-a71e-4037-ab08-2e61d3b0a5f0", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.653600+00:00", "label": "low", "label_explanation": "There is no standing water on the road surface.", "snapshot": {"id": "cd4849de-8f2e-4a8a-8e8d-8e83f4488b93", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/cd4849de-8f2e-4a8a-8e8d-8e83f4488b93.png", "timestamp": "2024-02-15T20:54:56.868311+00:00"}}, {"id": "cda79f90-6dd5-49cc-856f-9661eb2bf35c", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.852528+00:00", "label": "easy", "label_explanation": "Traffic is moderate, with vehicles moving at a steady pace.", "snapshot": {"id": "cd4849de-8f2e-4a8a-8e8d-8e83f4488b93", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/cd4849de-8f2e-4a8a-8e8d-8e83f4488b93.png", "timestamp": "2024-02-15T20:54:56.868311+00:00"}}, {"id": "9f8385bc-e5de-4752-ac4c-bbb67baf392f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:08.091152+00:00", "label": "null", "label_explanation": "The image captures an urban road with a gas station on the left and a row of trees on the right. There are several vehicles on the road, including cars and a van.", "snapshot": {"id": "cd4849de-8f2e-4a8a-8e8d-8e83f4488b93", "camera_id": "001395", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001395/cd4849de-8f2e-4a8a-8e8d-8e83f4488b93.png", "timestamp": "2024-02-15T20:54:56.868311+00:00"}}]}, {"id": "001142", "name": "AV. BORGES DE MEDEIROS X AV. EPIT\u00c1CIO PESSOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96323339, "longitude": -43.2044755, "objects": ["image_corrupted", "road_blockade", "rain", "image_description", "water_level", "traffic"], "identifications": [{"id": "875e6b27-f9e1-4073-98eb-cea9c1a4cae4", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:15.175824+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is completely clear.", "snapshot": {"id": "b3239ac0-1a39-4406-9edf-730f2b1563a2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b3239ac0-1a39-4406-9edf-730f2b1563a2.png", "timestamp": "2024-02-15T20:27:58.799666+00:00"}}, {"id": "3e0741ea-0804-4d1f-9228-d06c9dd8995d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:14.940189+00:00", "label": "easy", "label_explanation": "There is no traffic on the road. There are no cars visible in the image.", "snapshot": {"id": "b3239ac0-1a39-4406-9edf-730f2b1563a2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b3239ac0-1a39-4406-9edf-730f2b1563a2.png", "timestamp": "2024-02-15T20:27:58.799666+00:00"}}, {"id": "dad93571-1a89-4a92-aac0-c725c2b22ba3", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:14.713518+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "b3239ac0-1a39-4406-9edf-730f2b1563a2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b3239ac0-1a39-4406-9edf-730f2b1563a2.png", "timestamp": "2024-02-15T20:27:58.799666+00:00"}}, {"id": "9e7e45bc-7c52-49b1-ae61-4bfab62e5a35", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:14.481691+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry.", "snapshot": {"id": "b3239ac0-1a39-4406-9edf-730f2b1563a2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b3239ac0-1a39-4406-9edf-730f2b1563a2.png", "timestamp": "2024-02-15T20:27:58.799666+00:00"}}, {"id": "ca13de54-2fe9-4dd3-b4f1-1e8bd862887b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:14.053157+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with multiple lanes. It is daytime and the weather appears to be clear. There are a few trees on either side of the road, and buildings and overpasses in the background. There is a bus stop on the right side of the road, with a large sign saying '\u00f4nibus'. There are no cars visible on the road.", "snapshot": {"id": "b3239ac0-1a39-4406-9edf-730f2b1563a2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b3239ac0-1a39-4406-9edf-730f2b1563a2.png", "timestamp": "2024-02-15T20:27:58.799666+00:00"}}, {"id": "35b5399c-df0b-462b-8bf8-71954eb5efdd", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:28:13.752633+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b3239ac0-1a39-4406-9edf-730f2b1563a2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b3239ac0-1a39-4406-9edf-730f2b1563a2.png", "timestamp": "2024-02-15T20:27:58.799666+00:00"}}, {"id": "fcee203a-ec51-48a5-94a3-b5e249e842b0", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.067147+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "25233157-4179-4459-89eb-b0e8a9c8280a", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/25233157-4179-4459-89eb-b0e8a9c8280a.png", "timestamp": "2024-02-15T20:30:26.406925+00:00"}}, {"id": "ac237881-222b-4ea3-98d3-12753bfd308b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.647413+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a few cars on the road, but they are able to move freely without any major congestion.", "snapshot": {"id": "25233157-4179-4459-89eb-b0e8a9c8280a", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/25233157-4179-4459-89eb-b0e8a9c8280a.png", "timestamp": "2024-02-15T20:30:26.406925+00:00"}}, {"id": "c2aee8af-e034-46b9-b5ec-63ce1be79f21", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.421512+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no signs of flooding or significant water accumulation.", "snapshot": {"id": "25233157-4179-4459-89eb-b0e8a9c8280a", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/25233157-4179-4459-89eb-b0e8a9c8280a.png", "timestamp": "2024-02-15T20:30:26.406925+00:00"}}, {"id": "e9f47d8d-9c46-4600-bf5a-6e5046a7d2e8", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:41.838371+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with several lanes, surrounded by trees and buildings. The road is relatively straight, with a slight curve to the right. There are a few parked cars on the side of the road, and a bus stop can be seen in the distance.", "snapshot": {"id": "25233157-4179-4459-89eb-b0e8a9c8280a", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/25233157-4179-4459-89eb-b0e8a9c8280a.png", "timestamp": "2024-02-15T20:30:26.406925+00:00"}}, {"id": "9b89d90d-7f46-449d-82df-4e94fcfb984b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:41.725803+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "25233157-4179-4459-89eb-b0e8a9c8280a", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/25233157-4179-4459-89eb-b0e8a9c8280a.png", "timestamp": "2024-02-15T20:30:26.406925+00:00"}}, {"id": "cc94f0cf-150e-4c4e-be4f-90d5ba05ba8f", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:42.909445+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic.", "snapshot": {"id": "25233157-4179-4459-89eb-b0e8a9c8280a", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/25233157-4179-4459-89eb-b0e8a9c8280a.png", "timestamp": "2024-02-15T20:30:26.406925+00:00"}}, {"id": "956bb508-c3bc-4b27-9ea5-86c2f058c58f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.589216+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a steady flow of vehicles in both directions. The vehicles are moving at a moderate speed, and there are no visible signs of congestion or delays.", "snapshot": {"id": "fd2d7a51-9f64-4f71-9788-7e6515437865", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/fd2d7a51-9f64-4f71-9788-7e6515437865.png", "timestamp": "2024-02-15T20:35:29.095019+00:00"}}, {"id": "cfd48bb9-1ebc-4172-bc2b-6845e873ecda", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:44.789508+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in moderate weather conditions. It is daytime, and the road is moderately wide, with two lanes for vehicle movement. The road surface is paved and in good condition, with visible lane markings. There are trees and shrubs on either side of the road, and buildings and other structures in the background. The image is clear and well-lit, with good visibility.", "snapshot": {"id": "fd2d7a51-9f64-4f71-9788-7e6515437865", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/fd2d7a51-9f64-4f71-9788-7e6515437865.png", "timestamp": "2024-02-15T20:35:29.095019+00:00"}}, {"id": "e1fba224-7401-4000-8cfc-d9a211fbdf22", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.134026+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water accumulation.", "snapshot": {"id": "fd2d7a51-9f64-4f71-9788-7e6515437865", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/fd2d7a51-9f64-4f71-9788-7e6515437865.png", "timestamp": "2024-02-15T20:35:29.095019+00:00"}}, {"id": "b15189a9-f803-4db7-8d36-7eb6488748ac", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.836066+00:00", "label": "free", "label_explanation": "There are no obstructions on the road. The road is completely clear, and there are no visible signs of any potential hazards or obstacles.", "snapshot": {"id": "fd2d7a51-9f64-4f71-9788-7e6515437865", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/fd2d7a51-9f64-4f71-9788-7e6515437865.png", "timestamp": "2024-02-15T20:35:29.095019+00:00"}}, {"id": "0b4b4f7a-a6b3-4690-8d79-e7687fa328ae", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.309018+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "fd2d7a51-9f64-4f71-9788-7e6515437865", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/fd2d7a51-9f64-4f71-9788-7e6515437865.png", "timestamp": "2024-02-15T20:35:29.095019+00:00"}}, {"id": "b8b50007-0c57-4adf-badf-969434e28a68", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:44.506398+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "fd2d7a51-9f64-4f71-9788-7e6515437865", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/fd2d7a51-9f64-4f71-9788-7e6515437865.png", "timestamp": "2024-02-15T20:35:29.095019+00:00"}}, {"id": "73c3f31d-ca1b-49ac-9bab-78d89976b487", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.588729+00:00", "label": "easy", "label_explanation": "The traffic is moderate, with several cars visible on the road. The cars are able to move freely, as there are no major obstructions.", "snapshot": {"id": "f9a08040-fa1e-4b10-9517-d08a75457c89", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/f9a08040-fa1e-4b10-9517-d08a75457c89.png", "timestamp": "2024-02-15T20:38:00.924291+00:00"}}, {"id": "20a458b7-f7ac-4897-bc7d-16f444dd84a1", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.296888+00:00", "label": "low", "label_explanation": "The water level on the road is low, as it is only present in small puddles. The majority of the road surface is dry.", "snapshot": {"id": "f9a08040-fa1e-4b10-9517-d08a75457c89", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/f9a08040-fa1e-4b10-9517-d08a75457c89.png", "timestamp": "2024-02-15T20:38:00.924291+00:00"}}, {"id": "bbc46e16-1f4c-4acd-90f8-5f82067b028f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.834019+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with multiple lanes, surrounded by trees and buildings. The road is moderately busy, with several cars visible. The weather appears to be overcast, as the sky is grey and there are no visible shadows. There is a bus stop on the side of the road, which is partially covered by a tree.", "snapshot": {"id": "f9a08040-fa1e-4b10-9517-d08a75457c89", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/f9a08040-fa1e-4b10-9517-d08a75457c89.png", "timestamp": "2024-02-15T20:38:00.924291+00:00"}}, {"id": "1bea9684-b0c4-442f-a509-06ea59a81165", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:18.537002+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "f9a08040-fa1e-4b10-9517-d08a75457c89", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/f9a08040-fa1e-4b10-9517-d08a75457c89.png", "timestamp": "2024-02-15T20:38:00.924291+00:00"}}, {"id": "27127670-e40c-4aa3-a619-034cc692d3db", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.810126+00:00", "label": "free", "label_explanation": "There are no road blockades visible in the image. The road is clear and passable.", "snapshot": {"id": "f9a08040-fa1e-4b10-9517-d08a75457c89", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/f9a08040-fa1e-4b10-9517-d08a75457c89.png", "timestamp": "2024-02-15T20:38:00.924291+00:00"}}, {"id": "d3eef840-c067-41b0-a3ec-703a00ee97c5", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:19.116787+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. There are also small puddles of water on the road.", "snapshot": {"id": "f9a08040-fa1e-4b10-9517-d08a75457c89", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/f9a08040-fa1e-4b10-9517-d08a75457c89.png", "timestamp": "2024-02-15T20:38:00.924291+00:00"}}, {"id": "d4fce531-2c09-454d-9ef3-a5cb4cd2b3cb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.401103+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "0803d9bd-78d4-4a29-be51-6d4d5fcbeac2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/0803d9bd-78d4-4a29-be51-6d4d5fcbeac2.png", "timestamp": "2024-02-15T20:40:30.641230+00:00"}}, {"id": "2df9451b-344b-4822-a010-6ec59e0597f6", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.381433+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "0803d9bd-78d4-4a29-be51-6d4d5fcbeac2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/0803d9bd-78d4-4a29-be51-6d4d5fcbeac2.png", "timestamp": "2024-02-15T20:40:30.641230+00:00"}}, {"id": "bebf0f2d-d5d0-4793-9611-964cb8704232", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.833017+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is completely clear.", "snapshot": {"id": "0803d9bd-78d4-4a29-be51-6d4d5fcbeac2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/0803d9bd-78d4-4a29-be51-6d4d5fcbeac2.png", "timestamp": "2024-02-15T20:40:30.641230+00:00"}}, {"id": "6db5095b-8fe4-496d-8211-6a7826cfa898", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.598645+00:00", "label": "easy", "label_explanation": "The road is clear and there are no obstructions to traffic. Traffic is flowing smoothly.", "snapshot": {"id": "0803d9bd-78d4-4a29-be51-6d4d5fcbeac2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/0803d9bd-78d4-4a29-be51-6d4d5fcbeac2.png", "timestamp": "2024-02-15T20:40:30.641230+00:00"}}, {"id": "54b55a2b-fa1f-4a93-9eb2-41eb7d5539c2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.167367+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry and there are no visible signs of water.", "snapshot": {"id": "0803d9bd-78d4-4a29-be51-6d4d5fcbeac2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/0803d9bd-78d4-4a29-be51-6d4d5fcbeac2.png", "timestamp": "2024-02-15T20:40:30.641230+00:00"}}, {"id": "03f1fbb6-48b3-4902-9ce0-a0bc7b92afdf", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:42.902069+00:00", "label": "null", "label_explanation": "The image shows a wide, urban road with multiple lanes. It is daytime and the weather appears to be clear. There are several trees on either side of the road, and buildings and other structures can be seen in the background.", "snapshot": {"id": "0803d9bd-78d4-4a29-be51-6d4d5fcbeac2", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/0803d9bd-78d4-4a29-be51-6d4d5fcbeac2.png", "timestamp": "2024-02-15T20:40:30.641230+00:00"}}, {"id": "60de5cea-a4b2-4652-b2fe-95e0522b6b15", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.557017+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "2d47e576-a194-4d59-b69e-b0098ab512cf", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/2d47e576-a194-4d59-b69e-b0098ab512cf.png", "timestamp": "2024-02-15T20:42:55.566287+00:00"}}, {"id": "46a2842e-a40f-4683-a733-f9818bb1fc41", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:06.842403+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "2d47e576-a194-4d59-b69e-b0098ab512cf", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/2d47e576-a194-4d59-b69e-b0098ab512cf.png", "timestamp": "2024-02-15T20:42:55.566287+00:00"}}, {"id": "b545ba23-a3d7-40f8-b855-117cc3433c07", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.152262+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road. The entire road surface is clear and accessible to traffic.", "snapshot": {"id": "2d47e576-a194-4d59-b69e-b0098ab512cf", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/2d47e576-a194-4d59-b69e-b0098ab512cf.png", "timestamp": "2024-02-15T20:42:55.566287+00:00"}}, {"id": "8a7166a5-ddba-4405-8ecb-db4038689fee", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.876787+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no visible congestion or delays. Vehicles are able to move freely in both directions.", "snapshot": {"id": "2d47e576-a194-4d59-b69e-b0098ab512cf", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/2d47e576-a194-4d59-b69e-b0098ab512cf.png", "timestamp": "2024-02-15T20:42:55.566287+00:00"}}, {"id": "4c2fbd07-6aaf-483e-96f2-be3ceb4627b1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.326843+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "2d47e576-a194-4d59-b69e-b0098ab512cf", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/2d47e576-a194-4d59-b69e-b0098ab512cf.png", "timestamp": "2024-02-15T20:42:55.566287+00:00"}}, {"id": "05e659e6-96a2-4126-822b-dabf515fa181", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.117419+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with several lanes, surrounded by trees and buildings. The road is moderately busy, with a few cars visible.", "snapshot": {"id": "2d47e576-a194-4d59-b69e-b0098ab512cf", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/2d47e576-a194-4d59-b69e-b0098ab512cf.png", "timestamp": "2024-02-15T20:42:55.566287+00:00"}}, {"id": "60a63090-a8b0-4502-8bff-ab90f3362fc3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:55.950994+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for smooth traffic flow.", "snapshot": {"id": "848d81b0-916a-499d-a1e7-b41926d3b758", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/848d81b0-916a-499d-a1e7-b41926d3b758.png", "timestamp": "2024-02-15T20:47:42.759079+00:00"}}, {"id": "271230b0-e328-4a92-8d1a-af3a01ae31bd", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:55.759389+00:00", "label": "easy", "label_explanation": "The road is clear, with no visible obstructions or traffic disruptions. Vehicles can move freely.", "snapshot": {"id": "848d81b0-916a-499d-a1e7-b41926d3b758", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/848d81b0-916a-499d-a1e7-b41926d3b758.png", "timestamp": "2024-02-15T20:47:42.759079+00:00"}}, {"id": "8557ed62-adf2-455b-a89e-112ad62dca92", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:55.550455+00:00", "label": "low", "label_explanation": "The water level on the road is low, with only small puddles visible. The majority of the road surface is dry.", "snapshot": {"id": "848d81b0-916a-499d-a1e7-b41926d3b758", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/848d81b0-916a-499d-a1e7-b41926d3b758.png", "timestamp": "2024-02-15T20:47:42.759079+00:00"}}, {"id": "b9a0eae4-5f49-4f7c-be8b-4addf97ec4e1", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:55.157768+00:00", "label": "true", "label_explanation": "The presence of water on the road surface indicates that it has been raining.", "snapshot": {"id": "848d81b0-916a-499d-a1e7-b41926d3b758", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/848d81b0-916a-499d-a1e7-b41926d3b758.png", "timestamp": "2024-02-15T20:47:42.759079+00:00"}}, {"id": "34710dd7-de73-41e7-9bc9-0daaba40789d", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:54.946647+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a slight bend. It is daytime, and the weather appears to be overcast. There are several trees on either side of the road, and buildings and structures can be seen in the background. The road surface is wet, with small puddles of water visible.", "snapshot": {"id": "848d81b0-916a-499d-a1e7-b41926d3b758", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/848d81b0-916a-499d-a1e7-b41926d3b758.png", "timestamp": "2024-02-15T20:47:42.759079+00:00"}}, {"id": "f416cd49-4e1d-4976-ae8b-df6afc1bf50d", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:54.750780+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "848d81b0-916a-499d-a1e7-b41926d3b758", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/848d81b0-916a-499d-a1e7-b41926d3b758.png", "timestamp": "2024-02-15T20:47:42.759079+00:00"}}, {"id": "34569ef1-7a2f-4c91-9ee9-de5a2bf6701d", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.867767+00:00", "label": "low", "label_explanation": "The water level on the road is low, as it is only present in small puddles. The puddles are shallow, and they do not appear to be causing any problems for vehicles.", "snapshot": {"id": "985f5e56-e960-4970-b9a0-46b8bcf9670e", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/985f5e56-e960-4970-b9a0-46b8bcf9670e.png", "timestamp": "2024-02-15T20:33:01.437298+00:00"}}, {"id": "4f91d116-7373-4f4f-8385-dffe5e43939d", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:18.057100+00:00", "label": "true", "label_explanation": "There is some water visible on the road surface, but it is not enough to cause any significant traffic disruptions. The water appears to be from recent rainfall, as it is scattered in small puddles across the road.", "snapshot": {"id": "985f5e56-e960-4970-b9a0-46b8bcf9670e", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/985f5e56-e960-4970-b9a0-46b8bcf9670e.png", "timestamp": "2024-02-15T20:33:01.437298+00:00"}}, {"id": "e27b1f2c-3426-4d36-b970-14227dbaa109", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:20.028520+00:00", "label": "free", "label_explanation": "There are no obstructions on the road, and traffic is able to flow freely.", "snapshot": {"id": "985f5e56-e960-4970-b9a0-46b8bcf9670e", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/985f5e56-e960-4970-b9a0-46b8bcf9670e.png", "timestamp": "2024-02-15T20:33:01.437298+00:00"}}, {"id": "0e16bb2f-c265-4408-9863-fc5b6d44c18f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:17.541042+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a slight bend to the right. It is daytime, and the weather appears to be overcast. On the left side of the road, there are several large trees and a bus stop. The road itself is relatively wide, with two lanes for traffic. There are a few parked cars on the side of the road, and a white van is driving in the right lane.", "snapshot": {"id": "985f5e56-e960-4970-b9a0-46b8bcf9670e", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/985f5e56-e960-4970-b9a0-46b8bcf9670e.png", "timestamp": "2024-02-15T20:33:01.437298+00:00"}}, {"id": "82486053-2cbc-4802-b110-637d1d95f2d2", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.995732+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "985f5e56-e960-4970-b9a0-46b8bcf9670e", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/985f5e56-e960-4970-b9a0-46b8bcf9670e.png", "timestamp": "2024-02-15T20:33:01.437298+00:00"}}, {"id": "c7e4c9ec-6b41-456a-a381-c980de750abe", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:19.411439+00:00", "label": "easy", "label_explanation": "The traffic is flowing smoothly, with no major disruptions. There are a few cars on the road, but they are all able to move at a normal speed.", "snapshot": {"id": "985f5e56-e960-4970-b9a0-46b8bcf9670e", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/985f5e56-e960-4970-b9a0-46b8bcf9670e.png", "timestamp": "2024-02-15T20:33:01.437298+00:00"}}, {"id": "2d51a0ca-db6d-4cef-bb4b-2c0ee4318af6", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:59.297419+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image.", "snapshot": {"id": "b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f.png", "timestamp": "2024-02-15T20:52:31.218072+00:00"}}, {"id": "bd5dab3b-5be0-44a0-9c1d-fd77b3f84c4b", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:59.089339+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with several cars and trucks moving at a moderate speed. There is no congestion or traffic disruptions visible in the image.", "snapshot": {"id": "b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f.png", "timestamp": "2024-02-15T20:52:31.218072+00:00"}}, {"id": "25d8e425-5a3d-43a6-a197-20f226209914", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:58.885090+00:00", "label": "low", "label_explanation": "There is a small puddle of water on the road to the left side of the image, but it does not appear to be causing any traffic disruptions.", "snapshot": {"id": "b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f.png", "timestamp": "2024-02-15T20:52:31.218072+00:00"}}, {"id": "d1bf8e57-5ef0-4414-9fb6-8bbb7d2f3663", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:58.674163+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f.png", "timestamp": "2024-02-15T20:52:31.218072+00:00"}}, {"id": "a5e0684b-8a70-4b22-a792-91b65d9acb31", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:58.466575+00:00", "label": "null", "label_explanation": "The image shows a moderately busy urban road with a slight bend to the right. The road is surrounded by trees and buildings, with a clear blue sky and bright sunlight. There are several cars and trucks on the road, all moving at a moderate speed. There is a small puddle of water on the road to the left side of the image, but it does not appear to be causing any traffic disruptions.", "snapshot": {"id": "b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f.png", "timestamp": "2024-02-15T20:52:31.218072+00:00"}}, {"id": "bd54f88c-2e39-4775-86d1-69ac6e4a3744", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:58.274070+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/b6c98a8a-aaa3-4b39-bff1-4b08c437ae5f.png", "timestamp": "2024-02-15T20:52:31.218072+00:00"}}, {"id": "98086abc-904c-4ee0-ad54-c3bb3f4bedc7", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.726811+00:00", "label": "false", "label_explanation": "There is no visible rain or water on the road surface. The road appears dry and clear.", "snapshot": {"id": "1351bf29-2dba-483e-9d08-b4280ea86669", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/1351bf29-2dba-483e-9d08-b4280ea86669.png", "timestamp": "2024-02-15T20:55:01.707283+00:00"}}, {"id": "a3aa7c63-a5df-48b3-9836-0879fd3eb971", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.367921+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It shows a wide, curved road with multiple lanes, surrounded by trees, buildings, and other urban infrastructure. The road is relatively wide, with several lanes for vehicular traffic. It is a well-lit area with clear weather conditions.", "snapshot": {"id": "1351bf29-2dba-483e-9d08-b4280ea86669", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/1351bf29-2dba-483e-9d08-b4280ea86669.png", "timestamp": "2024-02-15T20:55:01.707283+00:00"}}, {"id": "281efad0-24df-49f2-9e76-81d081a2323b", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.176185+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "1351bf29-2dba-483e-9d08-b4280ea86669", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/1351bf29-2dba-483e-9d08-b4280ea86669.png", "timestamp": "2024-02-15T20:55:01.707283+00:00"}}, {"id": "821e3334-9cf3-418e-9b18-6c01120c1c26", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.449369+00:00", "label": "free", "label_explanation": "The road is clear, with no visible obstructions or blockades. Traffic is able to flow freely without any hindrances.", "snapshot": {"id": "1351bf29-2dba-483e-9d08-b4280ea86669", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/1351bf29-2dba-483e-9d08-b4280ea86669.png", "timestamp": "2024-02-15T20:55:01.707283+00:00"}}, {"id": "10869c2f-6445-4a58-a180-fa30a4667dc6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:13.959182+00:00", "label": "low", "label_explanation": "The road surface is dry, with no visible water accumulation.", "snapshot": {"id": "1351bf29-2dba-483e-9d08-b4280ea86669", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/1351bf29-2dba-483e-9d08-b4280ea86669.png", "timestamp": "2024-02-15T20:55:01.707283+00:00"}}, {"id": "2e679aa3-00fe-4b07-85f2-e808cc264251", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:14.183943+00:00", "label": "easy", "label_explanation": "The road is moderately busy, with a steady flow of vehicles. Traffic is moving smoothly, with no apparent congestion or delays.", "snapshot": {"id": "1351bf29-2dba-483e-9d08-b4280ea86669", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/1351bf29-2dba-483e-9d08-b4280ea86669.png", "timestamp": "2024-02-15T20:55:01.707283+00:00"}}, {"id": "34788464-49e1-4702-a2a5-50b4cc1d97c9", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.497159+00:00", "label": "free", "label_explanation": "There are no visible road blockades or obstructions. The road is clear and free for traffic to pass.", "snapshot": {"id": "aa35e6e0-ee44-482a-834c-4a13cfe634a9", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/aa35e6e0-ee44-482a-834c-4a13cfe634a9.png", "timestamp": "2024-02-15T20:50:06.645232+00:00"}}, {"id": "ca8add0c-1233-4c44-9a01-08f21879aaeb", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:18.989748+00:00", "label": "low", "label_explanation": "The water level on the road is low. There are no visible signs of water accumulation, and the road surface is dry.", "snapshot": {"id": "aa35e6e0-ee44-482a-834c-4a13cfe634a9", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/aa35e6e0-ee44-482a-834c-4a13cfe634a9.png", "timestamp": "2024-02-15T20:50:06.645232+00:00"}}, {"id": "23615187-3af4-447c-8bda-24cf4d66d2c9", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:18.804147+00:00", "label": "false", "label_explanation": "There is no visible rain in the image. The road surface is dry, and there are no signs of water accumulation.", "snapshot": {"id": "aa35e6e0-ee44-482a-834c-4a13cfe634a9", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/aa35e6e0-ee44-482a-834c-4a13cfe634a9.png", "timestamp": "2024-02-15T20:50:06.645232+00:00"}}, {"id": "531ef4f3-53ef-411e-98b7-d32d9fdef93f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:18.566455+00:00", "label": "null", "label_explanation": "The image captures an urban road scene in daylight. It features a wide, paved road with several lanes, surrounded by trees, buildings, and other urban infrastructure. The road is relatively straight, with a slight bend to the right. There are a few vehicles visible on the road, including cars and buses. The weather appears to be clear, with no visible rain or other adverse conditions.", "snapshot": {"id": "aa35e6e0-ee44-482a-834c-4a13cfe634a9", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/aa35e6e0-ee44-482a-834c-4a13cfe634a9.png", "timestamp": "2024-02-15T20:50:06.645232+00:00"}}, {"id": "2b75b55c-3a6f-4ba9-b52d-fcfe9193e0d0", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:19.270155+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are a few vehicles visible on the road, but they are able to move freely without any significant congestion.", "snapshot": {"id": "aa35e6e0-ee44-482a-834c-4a13cfe634a9", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/aa35e6e0-ee44-482a-834c-4a13cfe634a9.png", "timestamp": "2024-02-15T20:50:06.645232+00:00"}}, {"id": "8df670c5-e65a-46c2-90e1-67bc3b2674f0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:18.298558+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "aa35e6e0-ee44-482a-834c-4a13cfe634a9", "camera_id": "001142", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001142/aa35e6e0-ee44-482a-834c-4a13cfe634a9.png", "timestamp": "2024-02-15T20:50:06.645232+00:00"}}]}, {"id": "001385", "name": "AV. AYRTON SENNA, 5850 - EM FRENTE AO ESPA\u00c7O HALL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96049669, "longitude": -43.35732938, "objects": ["traffic", "image_description", "rain", "water_level", "image_corrupted", "road_blockade"], "identifications": [{"id": "47716ba2-c6ea-4e8c-8214-a8f74ebc75f6", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:00.821346+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be described.", "snapshot": {"id": "b315ca8b-bf9a-4822-abec-e275ad689f97", "camera_id": "001385", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001385/b315ca8b-bf9a-4822-abec-e275ad689f97.png", "timestamp": "2024-02-15T20:41:52.533420+00:00"}}, {"id": "c7b5bda0-26f0-4e7f-90f9-dfac90d3d0a3", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:42:00.617702+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "b315ca8b-bf9a-4822-abec-e275ad689f97", "camera_id": "001385", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001385/b315ca8b-bf9a-4822-abec-e275ad689f97.png", "timestamp": "2024-02-15T20:41:52.533420+00:00"}}, {"id": "391a4628-a140-450e-8c02-c5997a72dc0b", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:44:38.806520+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be described.", "snapshot": {"id": "b91a6383-7f9d-4db2-b41b-e78e6c0f811e", "camera_id": "001385", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001385/b91a6383-7f9d-4db2-b41b-e78e6c0f811e.png", "timestamp": "2024-02-15T20:44:29.829795+00:00"}}, {"id": "ef9e0b41-1e76-45fa-b8d5-9a500eed8850", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:44:38.606374+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color replacing the visual data. This indicates a high likelihood of data loss or image corruption.", "snapshot": {"id": "b91a6383-7f9d-4db2-b41b-e78e6c0f811e", "camera_id": "001385", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001385/b91a6383-7f9d-4db2-b41b-e78e6c0f811e.png", "timestamp": "2024-02-15T20:44:29.829795+00:00"}}, {"id": "0521c097-b21f-4a31-bcc0-75a184a5f54f", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:51.516249+00:00", "label": "null", "label_explanation": "The image is corrupted and cannot be described accurately.", "snapshot": {"id": "fc4af17c-c508-4d7b-97b6-095394b0c65e", "camera_id": "001385", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001385/fc4af17c-c508-4d7b-97b6-095394b0c65e.png", "timestamp": "2024-02-15T20:33:43.636986+00:00"}}, {"id": "e369d8d6-a815-442a-a48b-6745bdd2c78a", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:51.328213+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform green color replacing the road surface. This corruption prevents accurate assessment of road conditions.", "snapshot": {"id": "fc4af17c-c508-4d7b-97b6-095394b0c65e", "camera_id": "001385", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001385/fc4af17c-c508-4d7b-97b6-095394b0c65e.png", "timestamp": "2024-02-15T20:33:43.636986+00:00"}}]}, {"id": "001615", "name": "R. MEM DE S\u00c1 X R. INVALIDOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913227, "longitude": -43.181606, "objects": ["image_corrupted", "rain", "traffic", "image_description", "water_level", "road_blockade"], "identifications": [{"id": "baf14b37-ded7-432d-b311-371e1351f6b2", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:37.101887+00:00", "label": "null", "label_explanation": "The image is corrupted and does not provide any useful information.", "snapshot": {"id": "1f65b700-b3a5-4d45-8da5-3a912a72b5ab", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/1f65b700-b3a5-4d45-8da5-3a912a72b5ab.png", "timestamp": "2024-02-15T20:30:26.095064+00:00"}}, {"id": "8511d707-da22-4034-937f-aa682b431898", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:30:36.824935+00:00", "label": "true", "label_explanation": "The image is corrupted, with a uniform green color replacing the visual data. This corruption prevents any meaningful analysis of the road conditions.", "snapshot": {"id": "1f65b700-b3a5-4d45-8da5-3a912a72b5ab", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/1f65b700-b3a5-4d45-8da5-3a912a72b5ab.png", "timestamp": "2024-02-15T20:30:26.095064+00:00"}}, {"id": "89848ab4-6ad0-4b49-9f86-2f4da91b705d", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.326983+00:00", "label": "moderate", "label_explanation": "The traffic is moderate, with some congestion due to the red light.", "snapshot": {"id": "cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef.png", "timestamp": "2024-02-15T20:42:56.125033+00:00"}}, {"id": "4141eb73-44c6-41ab-8cbd-84bc6268db47", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.619392+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy. There are two buses on the road, one black and one yellow. The black bus is closer to the camera and appears to be stopped at a red light. The yellow bus is further away and is moving. There are several cars behind the black bus, also stopped at the red light. There are people walking on the sidewalk on both sides of the road. There are buildings in the background.", "snapshot": {"id": "cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef.png", "timestamp": "2024-02-15T20:42:56.125033+00:00"}}, {"id": "4e82721c-2760-4751-b5a8-f5c4fd228ea3", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.528284+00:00", "label": "free", "label_explanation": "There are no road blockades present.", "snapshot": {"id": "cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef.png", "timestamp": "2024-02-15T20:42:56.125033+00:00"}}, {"id": "e1e46b59-06a7-4530-b2a3-eb4fe3c46e86", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.885276+00:00", "label": "false", "label_explanation": "There is no rain present in the image.", "snapshot": {"id": "cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef.png", "timestamp": "2024-02-15T20:42:56.125033+00:00"}}, {"id": "36ed7fd9-a7c2-43f3-81d0-44d1b22088c7", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:08.122412+00:00", "label": "low", "label_explanation": "There is no water on the road surface.", "snapshot": {"id": "cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef.png", "timestamp": "2024-02-15T20:42:56.125033+00:00"}}, {"id": "4ba58469-e065-44c1-b2a2-ccda45cbcbe4", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:43:07.425440+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/cc4595a8-66ca-4b36-a4d6-cc7f25bb97ef.png", "timestamp": "2024-02-15T20:42:56.125033+00:00"}}, {"id": "dd5b76a2-e5f0-40a1-a503-45a3759a4419", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.439047+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with a clear view of the street and surrounding buildings. It is daytime and the weather appears to be rainy.", "snapshot": {"id": "48749135-a259-4a19-9481-a12e4422c543", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/48749135-a259-4a19-9481-a12e4422c543.png", "timestamp": "2024-02-15T20:47:45.293029+00:00"}}, {"id": "0ad7661b-eff5-4018-a28b-c1d77dc29783", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.236690+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "48749135-a259-4a19-9481-a12e4422c543", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/48749135-a259-4a19-9481-a12e4422c543.png", "timestamp": "2024-02-15T20:47:45.293029+00:00"}}, {"id": "049d5da0-c982-4e7e-adc8-f84a6eea7927", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.349809+00:00", "label": "free", "label_explanation": "There are no obstructions or blockades on the road, allowing for free movement of traffic.", "snapshot": {"id": "48749135-a259-4a19-9481-a12e4422c543", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/48749135-a259-4a19-9481-a12e4422c543.png", "timestamp": "2024-02-15T20:47:45.293029+00:00"}}, {"id": "63089edf-eaa8-4adb-bc1b-fdc256722769", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:57.137104+00:00", "label": "moderate", "label_explanation": "The road is moderately busy with vehicles, but traffic is able to flow without major disruptions.", "snapshot": {"id": "48749135-a259-4a19-9481-a12e4422c543", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/48749135-a259-4a19-9481-a12e4422c543.png", "timestamp": "2024-02-15T20:47:45.293029+00:00"}}, {"id": "ada55fd4-2367-4e44-9e9b-706f72cf12c6", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.882594+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road surface, but they do not cover a significant area and do not impede traffic.", "snapshot": {"id": "48749135-a259-4a19-9481-a12e4422c543", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/48749135-a259-4a19-9481-a12e4422c543.png", "timestamp": "2024-02-15T20:47:45.293029+00:00"}}, {"id": "702d064b-7dfe-4071-8e7c-a5620e89e424", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:47:56.644464+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating the presence of rain.", "snapshot": {"id": "48749135-a259-4a19-9481-a12e4422c543", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/48749135-a259-4a19-9481-a12e4422c543.png", "timestamp": "2024-02-15T20:47:45.293029+00:00"}}, {"id": "2efd095a-a00b-42c4-a895-ed1751d82858", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:17.024080+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "a2ea32e9-fbb8-4edf-8064-11b7ddf92da6", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/a2ea32e9-fbb8-4edf-8064-11b7ddf92da6.png", "timestamp": "2024-02-15T20:33:03.590403+00:00"}}, {"id": "c99ee099-644a-4496-bf90-f4923f8a3812", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:33:16.259574+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and distortion, indicating data loss.", "snapshot": {"id": "a2ea32e9-fbb8-4edf-8064-11b7ddf92da6", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/a2ea32e9-fbb8-4edf-8064-11b7ddf92da6.png", "timestamp": "2024-02-15T20:33:03.590403+00:00"}}, {"id": "edaf4112-48ab-4a8e-a0c1-c9a621718f49", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.529809+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major congestion or disruptions observed.", "snapshot": {"id": "ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e.png", "timestamp": "2024-02-15T20:45:18.374262+00:00"}}, {"id": "989c75f2-909b-4bb0-bb6b-7122a398f4ac", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.315307+00:00", "label": "low", "label_explanation": "There are small puddles of water on the road, but they do not pose a significant hindrance to traffic.", "snapshot": {"id": "ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e.png", "timestamp": "2024-02-15T20:45:18.374262+00:00"}}, {"id": "6c46a94b-dc1c-485f-b726-99d73a98dceb", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.045654+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating recent rainfall.", "snapshot": {"id": "ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e.png", "timestamp": "2024-02-15T20:45:18.374262+00:00"}}, {"id": "6d95439a-9a3c-4031-97a9-ff36cbb09332", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.715292+00:00", "label": "null", "label_explanation": "The image captures a bustling urban road with various elements such as buildings, vehicles, and people.", "snapshot": {"id": "ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e.png", "timestamp": "2024-02-15T20:45:18.374262+00:00"}}, {"id": "b5b25d10-11ab-4b72-bdbc-b36ee6e56cbc", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:29.514930+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e.png", "timestamp": "2024-02-15T20:45:18.374262+00:00"}}, {"id": "1629008f-9b26-4eae-b809-963c8b6a1b88", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:45:30.732450+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/ba8dc0ef-b27d-4639-86ac-b7cd3a1f795e.png", "timestamp": "2024-02-15T20:45:18.374262+00:00"}}, {"id": "0ff77592-6fb8-462e-b8c6-de69029852fa", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:47.079979+00:00", "label": "free", "label_explanation": "The road is clear, with no obstructions or blockades hindering traffic flow.", "snapshot": {"id": "b2379c6c-7faf-4428-aae8-65b5c5968de4", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/b2379c6c-7faf-4428-aae8-65b5c5968de4.png", "timestamp": "2024-02-15T20:35:32.042013+00:00"}}, {"id": "a820f081-951f-4f5e-acd5-4ee9827a2d0f", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.881513+00:00", "label": "easy", "label_explanation": "Traffic is moving smoothly, with no major disruptions observed.", "snapshot": {"id": "b2379c6c-7faf-4428-aae8-65b5c5968de4", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/b2379c6c-7faf-4428-aae8-65b5c5968de4.png", "timestamp": "2024-02-15T20:35:32.042013+00:00"}}, {"id": "d2d0d5e5-7644-4ed8-a23f-517b76b3c8e9", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.669619+00:00", "label": "low", "label_explanation": "The water level is low, with small puddles scattered on the road surface.", "snapshot": {"id": "b2379c6c-7faf-4428-aae8-65b5c5968de4", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/b2379c6c-7faf-4428-aae8-65b5c5968de4.png", "timestamp": "2024-02-15T20:35:32.042013+00:00"}}, {"id": "e04f21d7-dc7f-4583-bc2b-3f5861341368", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.367954+00:00", "label": "true", "label_explanation": "The road surface is wet, with visible water on the road.", "snapshot": {"id": "b2379c6c-7faf-4428-aae8-65b5c5968de4", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/b2379c6c-7faf-4428-aae8-65b5c5968de4.png", "timestamp": "2024-02-15T20:35:32.042013+00:00"}}, {"id": "ef107b64-e2a1-4c25-979a-4dbf9502ff1f", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:45.962271+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "b2379c6c-7faf-4428-aae8-65b5c5968de4", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/b2379c6c-7faf-4428-aae8-65b5c5968de4.png", "timestamp": "2024-02-15T20:35:32.042013+00:00"}}, {"id": "4550949f-7380-4014-9daa-f46c72264e53", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:35:46.155013+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be rainy.", "snapshot": {"id": "b2379c6c-7faf-4428-aae8-65b5c5968de4", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/b2379c6c-7faf-4428-aae8-65b5c5968de4.png", "timestamp": "2024-02-15T20:35:32.042013+00:00"}}, {"id": "9ab87bdc-7550-4d6d-bd61-55ed19cc0622", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:14.395932+00:00", "label": "true", "label_explanation": "The image is corrupted, with uniform grey color and no discernible details. This indicates significant data loss or corruption, making further analysis impossible.", "snapshot": {"id": "42dc2f19-2662-438c-b33b-c0ba893fe759", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/42dc2f19-2662-438c-b33b-c0ba893fe759.png", "timestamp": "2024-02-15T20:38:01.765425+00:00"}}, {"id": "66a485b9-9933-4ffb-b44f-5c42ff82d47c", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:38:14.881705+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "42dc2f19-2662-438c-b33b-c0ba893fe759", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/42dc2f19-2662-438c-b33b-c0ba893fe759.png", "timestamp": "2024-02-15T20:38:01.765425+00:00"}}, {"id": "7a698afa-2e4d-40f0-acc2-fc8009eb41b5", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.808623+00:00", "label": "free", "label_explanation": "There are no road blockades or obstructions visible in the image. The road is clear and open to traffic in both directions.", "snapshot": {"id": "4a9ef7b2-eba8-4264-bbbb-bbc9f244831c", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/4a9ef7b2-eba8-4264-bbbb-bbc9f244831c.png", "timestamp": "2024-02-15T20:40:31.312411+00:00"}}, {"id": "f8526a54-2cd2-4582-aeae-0568c639abf1", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.553640+00:00", "label": "easy", "label_explanation": "The traffic on the road is moderate. There are several vehicles on the road, but they are able to move at a steady pace. There are no major traffic jams or congestion.", "snapshot": {"id": "4a9ef7b2-eba8-4264-bbbb-bbc9f244831c", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/4a9ef7b2-eba8-4264-bbbb-bbc9f244831c.png", "timestamp": "2024-02-15T20:40:31.312411+00:00"}}, {"id": "3142589e-1d4e-4c23-ac5c-cde81f3a4b26", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.841946+00:00", "label": "null", "label_explanation": "The image captures an urban road scene with moderate traffic. It is daytime and the weather appears to be cloudy or overcast. There are several vehicles on the road, including cars, buses, and motorcycles. Pedestrians are also visible, crossing the road at designated crosswalks. The road surface is wet from recent rain, but there are no significant puddles or standing water.", "snapshot": {"id": "4a9ef7b2-eba8-4264-bbbb-bbc9f244831c", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/4a9ef7b2-eba8-4264-bbbb-bbc9f244831c.png", "timestamp": "2024-02-15T20:40:31.312411+00:00"}}, {"id": "d68b18ac-b31a-4392-af30-9545e44f6430", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:43.608237+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "4a9ef7b2-eba8-4264-bbbb-bbc9f244831c", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/4a9ef7b2-eba8-4264-bbbb-bbc9f244831c.png", "timestamp": "2024-02-15T20:40:31.312411+00:00"}}, {"id": "3915b846-c491-493c-a6d8-9f4e836c1f26", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.347921+00:00", "label": "low", "label_explanation": "The water level on the road is low. While the road surface is wet, there are no significant puddles or standing water. Vehicles and pedestrians are able to navigate the road without difficulty.", "snapshot": {"id": "4a9ef7b2-eba8-4264-bbbb-bbc9f244831c", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/4a9ef7b2-eba8-4264-bbbb-bbc9f244831c.png", "timestamp": "2024-02-15T20:40:31.312411+00:00"}}, {"id": "a2ee8ed6-fca2-4012-a50e-5bf5a8fc22c2", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:40:44.035911+00:00", "label": "true", "label_explanation": "The road surface is wet, indicating that it has been raining recently. However, the rain does not appear to be heavy or persistent, as there are no large puddles or significant water accumulation.", "snapshot": {"id": "4a9ef7b2-eba8-4264-bbbb-bbc9f244831c", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/4a9ef7b2-eba8-4264-bbbb-bbc9f244831c.png", "timestamp": "2024-02-15T20:40:31.312411+00:00"}}, {"id": "3df60bea-45ef-423f-9d45-7a40f011dc12", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.029313+00:00", "label": "true", "label_explanation": "The image is corrupted and cannot be analyzed.", "snapshot": {"id": "2afcc601-9ac6-4105-8f0a-ebd497ecf092", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/2afcc601-9ac6-4105-8f0a-ebd497ecf092.png", "timestamp": "2024-02-15T20:55:00.268825+00:00"}}, {"id": "0b88e4d2-f799-47a4-9c42-17a96d8d74ee", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:55:09.214373+00:00", "label": "null", "label_explanation": "N/A", "snapshot": {"id": "2afcc601-9ac6-4105-8f0a-ebd497ecf092", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/2afcc601-9ac6-4105-8f0a-ebd497ecf092.png", "timestamp": "2024-02-15T20:55:00.268825+00:00"}}, {"id": "985af327-522f-4fa9-9f04-bed7f68832bc", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.784326+00:00", "label": "null", "label_explanation": "The image is too corrupted to provide a meaningful description.", "snapshot": {"id": "ed3bf4c0-da10-43e1-8391-99595e49df73", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/ed3bf4c0-da10-43e1-8391-99595e49df73.png", "timestamp": "2024-02-15T20:50:06.679074+00:00"}}, {"id": "975cad00-5783-452f-89cc-b3096b1dd918", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:50:17.612474+00:00", "label": "true", "label_explanation": "The image is severely corrupted, with large sections of the image missing or distorted. The image is unusable for any meaningful analysis.", "snapshot": {"id": "ed3bf4c0-da10-43e1-8391-99595e49df73", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/ed3bf4c0-da10-43e1-8391-99595e49df73.png", "timestamp": "2024-02-15T20:50:06.679074+00:00"}}, {"id": "ea1e1687-de24-40dd-978e-dc62fde7d168", "object": "road_blockade", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.477840+00:00", "label": "free", "label_explanation": "There are no road blockades present. The road is completely clear, and there are no obstructions to traffic.", "snapshot": {"id": "d8a06f38-19a5-4f06-958e-317ed5126887", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/d8a06f38-19a5-4f06-958e-317ed5126887.png", "timestamp": "2024-02-15T20:52:30.126229+00:00"}}, {"id": "5fb88d28-1360-47eb-ad0b-38e9ccd2f658", "object": "traffic", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:42.110785+00:00", "label": "easy", "label_explanation": "The traffic is moderate. There are several cars on the road, but they are all moving at a steady pace. There are also a few people walking on the sidewalks.", "snapshot": {"id": "d8a06f38-19a5-4f06-958e-317ed5126887", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/d8a06f38-19a5-4f06-958e-317ed5126887.png", "timestamp": "2024-02-15T20:52:30.126229+00:00"}}, {"id": "f13e51c2-fd1e-4e48-8c47-5e86d40e77f0", "object": "image_corrupted", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.175428+00:00", "label": "false", "label_explanation": "The image is clear, with no visible signs of corruption or data loss.", "snapshot": {"id": "d8a06f38-19a5-4f06-958e-317ed5126887", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/d8a06f38-19a5-4f06-958e-317ed5126887.png", "timestamp": "2024-02-15T20:52:30.126229+00:00"}}, {"id": "6c71192a-7ccb-425e-89bb-b1ab81fcee79", "object": "water_level", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.896512+00:00", "label": "low", "label_explanation": "There is no water on the road surface. The road is completely dry.", "snapshot": {"id": "d8a06f38-19a5-4f06-958e-317ed5126887", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/d8a06f38-19a5-4f06-958e-317ed5126887.png", "timestamp": "2024-02-15T20:52:30.126229+00:00"}}, {"id": "b32a3f5a-c601-480b-97b1-ae415acc5ceb", "object": "image_description", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.472929+00:00", "label": "null", "label_explanation": "The image captures an urban road intersection with a yellow taxi in the center. There are several people walking on the sidewalks, and a bus is approaching from the right side of the intersection. The buildings in the background are tall and have a mix of modern and colonial architectural styles.", "snapshot": {"id": "d8a06f38-19a5-4f06-958e-317ed5126887", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/d8a06f38-19a5-4f06-958e-317ed5126887.png", "timestamp": "2024-02-15T20:52:30.126229+00:00"}}, {"id": "6047f304-e891-4822-9c17-94de4ab2ac89", "object": "rain", "title": null, "explanation": null, "timestamp": "2024-02-15T20:52:41.681334+00:00", "label": "false", "label_explanation": "There is no rain present in the image. The road surface is dry, and there are no visible signs of water.", "snapshot": {"id": "d8a06f38-19a5-4f06-958e-317ed5126887", "camera_id": "001615", "image_url": "https://storage.googleapis.com/datario-public/vision-ai/staging/ano%3D2024/mes%3D02/dia%3D15/camera_id%3D001615/d8a06f38-19a5-4f06-958e-317ed5126887.png", "timestamp": "2024-02-15T20:52:30.126229+00:00"}}]}, {"id": "004254", "name": "AV. AMARO CAVALCANTI, 1387", "rtsp_url": "rtsp://admin:123smart@10.52.211.74/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89619068, "longitude": -43.29028061, "objects": [], "identifications": []}, {"id": "001398", "name": "R. MARQUES DE ABRANTES X R. MARQUES DE PARANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93810162, "longitude": -43.17777027, "objects": [], "identifications": []}, {"id": "004077", "name": "ESTR. DOS BANDEIRANTES, 5148 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96002716, "longitude": -43.39007119, "objects": [], "identifications": []}, {"id": "000722", "name": "ESTR. MARECHAL ALENCASTRO X AV. NAZARE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.46/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.853243, "longitude": -43.39135099, "objects": [], "identifications": []}, {"id": "003456", "name": "ESTR. DOS BANDEIRANTES, 11.216- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988072, "longitude": -43.43391, "objects": [], "identifications": []}, {"id": "002504", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00154037, "longitude": -43.3675571, "objects": [], "identifications": []}, {"id": "003604", "name": "ESTR. DOS TR\u00eaS RIOS X RUA GEMINIANO G\u00f3IS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93709, "longitude": -43.335415, "objects": [], "identifications": []}, {"id": "004172", "name": "R. PRAIA DA ENGENHOCA 95 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82223, "longitude": -43.16993, "objects": [], "identifications": []}, {"id": "003317", "name": "AV. ALM. ALVES C\u00e2MARA J\u00faNIOR, 302 - PRAIA DA BICA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.121/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8183498, "longitude": -43.1969481, "objects": [], "identifications": []}, {"id": "000430", "name": "AV.BRASIL X R. FILOMENA NUNES", "rtsp_url": "rtsp://admin:admin@10.50.224.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.836912, "longitude": -43.258611, "objects": [], "identifications": []}, {"id": "000134", "name": "AV. DAS AM\u00c9RICAS X AV. AFONSO ARINOS DE MELLO FRANCO - EUROBARRA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.003217, "longitude": -43.324739, "objects": [], "identifications": []}, {"id": "000006", "name": "AV. RIO BRANCO X AV. ALMIRANTE BARROSO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908029, "longitude": -43.176985, "objects": [], "identifications": []}, {"id": "004183", "name": "R. EUT\u00edQUIO SOLEDADE X R. CAPANEMA", "rtsp_url": "rtsp://admin:123smart@10.52.216.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79412817, "longitude": -43.1838206, "objects": [], "identifications": []}, {"id": "002310", "name": "BARRA SHOPPING - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.100.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00003573, "longitude": -43.35984237, "objects": [], "identifications": []}, {"id": "002064", "name": "VILA QUEIROZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.29.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86139071, "longitude": -43.3303634, "objects": [], "identifications": []}, {"id": "001364", "name": "PRA\u00c7A BENEDITO CERQUEIRA, S/N - LAGOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97666568, "longitude": -43.19758771, "objects": [], "identifications": []}, {"id": "000339", "name": "R. S\u00c3O FRANCISCO XAVIER X AV. PROF. MANOEL DE ABREU", "rtsp_url": "rtsp://admin:cor12345@10.52.252.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913763, "longitude": -43.234355, "objects": [], "identifications": []}, {"id": "004180", "name": "AV. ALM. ALVEZ C\u00c2MARA JUNIOR, 1242", "rtsp_url": "rtsp://admin:123smart@10.52.216.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82177118, "longitude": -43.18950359, "objects": [], "identifications": []}, {"id": "002100", "name": "PEDRO CORREIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.8.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96796082, "longitude": -43.39065165, "objects": [], "identifications": []}, {"id": "000303", "name": "R. MUNIZ BARRETO X R. ALFREDO GOMES", "rtsp_url": "rtsp://10.52.13.20/303-VIDEO", "update_interval": 120, "latitude": -22.947813, "longitude": -43.184209, "objects": [], "identifications": []}, {"id": "001567", "name": "R. FALC\u00c3O PADILHA, 264 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.85/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.872738, "longitude": -43.462313, "objects": [], "identifications": []}, {"id": "004109", "name": "ESTR. DOS BANDEIRANTES, 21629 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.250/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98760644, "longitude": -43.4800471, "objects": [], "identifications": []}, {"id": "001329", "name": "AV. ATL\u00c2NTICA X RUA SIQUEIRA CAMPOS - FIXA", "rtsp_url": "rtsp://10.52.252.109/", "update_interval": 120, "latitude": -22.970626, "longitude": -43.18306, "objects": [], "identifications": []}, {"id": "001092", "name": "ESTR. INTENDENTE MAGALH\u00c3ES X R. HENRIQUE DE MELO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8791386, "longitude": -43.35672085, "objects": [], "identifications": []}, {"id": "003982", "name": "RUA CONDE DE BONFIM, 1181 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.66/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94241, "longitude": -43.253189, "objects": [], "identifications": []}, {"id": "003755", "name": "AV. DOM H\u00e9LDER C\u00e2MARA X R. VASCO DA GAMA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88765442, "longitude": -43.28281972, "objects": [], "identifications": []}, {"id": "003165", "name": "AV. EMBAIXADOR ABELARDO BUENO, 91.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97317814, "longitude": -43.3997101, "objects": [], "identifications": []}, {"id": "001703", "name": "AV. \u00c9DISON PASSOS, 2799 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9569321, "longitude": -43.26768413, "objects": [], "identifications": []}, {"id": "002018", "name": "MAR\u00c9 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.44.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8471, "longitude": -43.243876, "objects": [], "identifications": []}, {"id": "000113", "name": "AV. BORGES DE MEDEIROS ALTURA DA AV. LINEU DE PAULA MACHADO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963085, "longitude": -43.212512, "objects": [], "identifications": []}, {"id": "001049", "name": "TERMINAL AMERICO AYRES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9023134, "longitude": -43.27552294, "objects": [], "identifications": []}, {"id": "000198", "name": "ESTR. DOS BANDEIRANTES X R. SOLDADO JOS\u00c9 DA COSTA - BRT", "rtsp_url": "rtsp://ineo:telca2000@10.50.106.189/mpeg4/ch1/sub/av_stream", "update_interval": 120, "latitude": -22.958017, "longitude": -43.381144, "objects": [], "identifications": []}, {"id": "003595", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 6388 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.851251, "longitude": -43.316807, "objects": [], "identifications": []}, {"id": "001926", "name": "R. DUVIVIER, 107", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96408239, "longitude": -43.17878411, "objects": [], "identifications": []}, {"id": "002471", "name": "TERMINAL RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.1.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00858077, "longitude": -43.44098695, "objects": [], "identifications": []}, {"id": "000065", "name": "AV. AM\u00c9RICAS X ESTA\u00c7\u00c3O BRT BOSQUE MARAPENDI", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.003304, "longitude": -43.32392, "objects": [], "identifications": []}, {"id": "000495", "name": "R. TIROL X R. CMTE RUBENS SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93978191, "longitude": -43.33670107, "objects": [], "identifications": []}, {"id": "001919", "name": "ESTR. DO MENDANHA, 3600 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.862548, "longitude": -43.543053, "objects": [], "identifications": []}, {"id": "000872", "name": "AV. DO PEP\u00ca X AV. OLEG\u00c1RIO MACIEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.46/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.015203, "longitude": -43.3058, "objects": [], "identifications": []}, {"id": "002511", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00144898, "longitude": -43.36509749, "objects": [], "identifications": []}, {"id": "003216", "name": "S\u00e3O FRANCISCO XAVIER X AVENIDA\u00a0PAULA\u00a0E\u00a0SOUZA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916274, "longitude": -43.228525, "objects": [], "identifications": []}, {"id": "001981", "name": "ESTR. VER. ALCEU DE CARVALHO - 2865 - FIXA", "rtsp_url": "rtsp://admin:7LANMSTR@10.52.209.228/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00687639, "longitude": -43.49341895, "objects": [], "identifications": []}, {"id": "003288", "name": "ESTRADA DO GALE\u00e3O, 2940 - CHAFARIZ DA ILHA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.805456, "longitude": -43.211027, "objects": [], "identifications": []}, {"id": "003208", "name": "AV. DAS AM\u00e9RICAS, 9818 - ALT. BRT GOLFE OLIMPICO", "rtsp_url": "rtsp://admin:7LANMSTR@10.52.209.183/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99969, "longitude": -43.411535, "objects": [], "identifications": []}, {"id": "001079", "name": "R. DIAS DA CRUZ, 69 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90187305, "longitude": -43.27958729, "objects": [], "identifications": []}, {"id": "002459", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91739198, "longitude": -43.68343416, "objects": [], "identifications": []}, {"id": "000311", "name": "PRAIA DO FLAMENGO X R. DOIS DE DEZEMBRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.930077, "longitude": -43.174478, "objects": [], "identifications": []}, {"id": "003983", "name": "RUA CONDE DE BONFIM, 1142 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.941553, "longitude": -43.252377, "objects": [], "identifications": []}, {"id": "003168", "name": "TERMINAL ALVORADA A", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.92/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00063386, "longitude": -43.3677265, "objects": [], "identifications": []}, {"id": "002259", "name": "COSMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.47.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915786, "longitude": -43.615699, "objects": [], "identifications": []}, {"id": "000050", "name": "AV. N. SRA. DE COPACABANA X R. ALMIRANTE GON\u00c7ALVES", "rtsp_url": "rtsp://admin:cor12345@10.52.21.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979945, "longitude": -43.191186, "objects": [], "identifications": []}, {"id": "002117", "name": "ARROIO PAVUNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.11.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95551506, "longitude": -43.37757996, "objects": [], "identifications": []}, {"id": "000182", "name": "R. S\u00c3O CLEMENTE, 398", "rtsp_url": "rtsp://admin:admin@10.52.11.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95147224, "longitude": -43.19488855, "objects": [], "identifications": []}, {"id": "003451", "name": "ESTR. DOS BANDEIRANTES, 11864-11912 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988924, "longitude": -43.438931, "objects": [], "identifications": []}, {"id": "001865", "name": "ESTR. DAS FURNAS, 4234-4438 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985661, "longitude": -43.300264, "objects": [], "identifications": []}, {"id": "004003", "name": "ESTR. DOS BANDEIRANTES, 22975 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.60/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982865, "longitude": -43.489869, "objects": [], "identifications": []}, {"id": "000275", "name": "CORTE DE CANTAGALO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976522, "longitude": -43.198178, "objects": [], "identifications": []}, {"id": "002041", "name": "GUAPORE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.36.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.837739, "longitude": -43.289829, "objects": [], "identifications": []}, {"id": "000454", "name": "ESTR. INTENDENTE MAGALH\u00c3ES X R. HENRIQUE DE MELO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879062, "longitude": -43.356686, "objects": [], "identifications": []}, {"id": "003844", "name": "PRA\u00e7A ITAPEVI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90227, "longitude": -43.293289, "objects": [], "identifications": []}, {"id": "000612", "name": "AV. VIEIRA SOUTO X R. FRANCISCO OTAVIANO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987883, "longitude": -43.194503, "objects": [], "identifications": []}, {"id": "002342", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00816577, "longitude": -43.44238964, "objects": [], "identifications": []}, {"id": "003503", "name": "ESTR. DOS BANDEIRANTES X R. PEDRO CALMON - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.56/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.975027, "longitude": -43.415011, "objects": [], "identifications": []}, {"id": "003305", "name": "RUA CAMBA\u00faBA, 27 - JARDIM GUANABARA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.115/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.812899, "longitude": -43.2076877, "objects": [], "identifications": []}, {"id": "001519", "name": "R. ENG. FRANCELINO MOTA, 627-489 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.833929, "longitude": -43.309377, "objects": [], "identifications": []}, {"id": "002452", "name": "COL\u00d4NIA / MUSEU BISPO DO ROS\u00c1RIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.14.4/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94073, "longitude": -43.39461, "objects": [], "identifications": []}, {"id": "003628", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.866739, "longitude": -43.305709, "objects": [], "identifications": []}, {"id": "001746", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.67/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956153, "longitude": -43.266385, "objects": [], "identifications": []}, {"id": "002233", "name": "S\u00c3O JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.52.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91085092, "longitude": -43.58416815, "objects": [], "identifications": []}, {"id": "003532", "name": "ESTR. DO RIO JEQUI\u00e1, 518 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82373241, "longitude": -43.17510943, "objects": [], "identifications": []}, {"id": "002257", "name": "CESAR\u00c3O I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.37.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934437, "longitude": -43.665154, "objects": [], "identifications": []}, {"id": "002119", "name": "VILA SAPE - IV CENTENARIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.12.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95198238, "longitude": -43.37435957, "objects": [], "identifications": []}, {"id": "003332", "name": "ESTR. DO RIO JEQUI\u00e1, 200", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.154/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8165634, "longitude": -43.1856707, "objects": [], "identifications": []}, {"id": "001629", "name": "R. TEIXEIRA DE FREITAS, 1240 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914572, "longitude": -43.175205, "objects": [], "identifications": []}, {"id": "000413", "name": "R.JOS\u00c9 MAURICIO X ESTA\u00c7\u00c3O DA PENHA", "rtsp_url": "rtsp://admin:123smart@10.152.38.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841059, "longitude": -43.276734, "objects": [], "identifications": []}, {"id": "003217", "name": "RUA JOAQUIM CARDOZO, 90 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.024175, "longitude": -43.457486, "objects": [], "identifications": []}, {"id": "003143", "name": "R. FRANCISCO DE PAULA, 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.77/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970815, "longitude": -43.397451, "objects": [], "identifications": []}, {"id": "001464", "name": "CFTV COR - FACHADA COR 2 - EXTENS\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911211, "longitude": -43.203622, "objects": [], "identifications": []}, {"id": "000767", "name": "AV. BRASIL X R. FRANCO DE ALMEIDA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.886307, "longitude": -43.224766, "objects": [], "identifications": []}, {"id": "000516", "name": "AV. CES\u00c1RIO DE MELO X ESTADA SANTA EUG\u00caNIA", "rtsp_url": "rtsp://user:7lanmstr@10.52.208.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91701478, "longitude": -43.63368435, "objects": [], "identifications": []}, {"id": "003211", "name": "AV. AYRTON SENNA, 2547", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98816808, "longitude": -43.36605988, "objects": [], "identifications": []}, {"id": "003299", "name": "ESTR. DOS BANDEIRANTES, 21152 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986483, "longitude": -43.476327, "objects": [], "identifications": []}, {"id": "001000", "name": "AV. ATL\u00c2NTICA X R. RAINHA ELISABETH - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98468306, "longitude": -43.18958726, "objects": [], "identifications": []}, {"id": "004159", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85425345, "longitude": -43.38339319, "objects": [], "identifications": []}, {"id": "000380", "name": "R. ARQUIAS CORDEIRO X R. CORA\u00c7\u00c3O DE MARIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89904457, "longitude": -43.28062217, "objects": [], "identifications": []}, {"id": "000756", "name": "AV. DOS DEMOCR\u00c1TICOS X AV. NOVO RIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.871755, "longitude": -43.258258, "objects": [], "identifications": []}, {"id": "001099", "name": "AV. SANTA CRUZ X R. GAL. SEZEFREDO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87788953, "longitude": -43.43480649, "objects": [], "identifications": []}, {"id": "000281", "name": "R. PRUDENTE DE MORAIS X R. ANIBAL DE MENDON\u00c7A", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984847, "longitude": -43.211492, "objects": [], "identifications": []}, {"id": "002337", "name": "PONT\u00d5ES/BARRASUL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.10.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00545188, "longitude": -43.4316353, "objects": [], "identifications": []}, {"id": "002300", "name": "AFR\u00c2NIO COSTA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.105.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00053706, "longitude": -43.3356744, "objects": [], "identifications": []}, {"id": "003222", "name": "R. ISIDRO DE FIGUEIREDO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915653, "longitude": -43.232198, "objects": [], "identifications": []}, {"id": "003228", "name": "ESTRADA DA CAROBA, 917 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897686, "longitude": -43.556483, "objects": [], "identifications": []}, {"id": "000323", "name": "R. CONSTANTE RAMOS X R. POMPEU LOUREIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.972322, "longitude": -43.191944, "objects": [], "identifications": []}, {"id": "000015", "name": "RUA S\u00c3O CLEMENTE X CONSULADO PORTUGU\u00caS", "rtsp_url": "rtsp://admin:cor12345@10.52.11.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952073, "longitude": -43.19582, "objects": [], "identifications": []}, {"id": "003994", "name": "ESTR. DOS BANDEIRANTES, 24051 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.56/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98188689, "longitude": -43.49037062, "objects": [], "identifications": []}, {"id": "001366", "name": "AV. PRINCESA ISABEL PROX AUGUSTO RIO COPA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96177349, "longitude": -43.17537532, "objects": [], "identifications": []}, {"id": "002194", "name": "CESAR\u00c3O III - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.39.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931866, "longitude": -43.657472, "objects": [], "identifications": []}, {"id": "002494", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88495812, "longitude": -43.40001142, "objects": [], "identifications": []}, {"id": "003274", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 02 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97857, "longitude": -43.19303, "objects": [], "identifications": []}, {"id": "004035", "name": "ESTR. DOS BANDEIRANTES, 2830 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.222/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949112, "longitude": -43.372807, "objects": [], "identifications": []}, {"id": "004200", "name": "RUA ULYSSES GUIMAR\u00e3ES, 15", "rtsp_url": "rtsp://admin:123smart@10.52.245.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91243, "longitude": -43.205217, "objects": [], "identifications": []}, {"id": "002046", "name": "PEDRO TAQUES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.34.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841317, "longitude": -43.298487, "objects": [], "identifications": []}, {"id": "001892", "name": "ESTR. DO MENDANHA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.878112, "longitude": -43.554586, "objects": [], "identifications": []}, {"id": "004017", "name": "ESTR. DOS BANDEIRANTES, 1000 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.183/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93259, "longitude": -43.37315, "objects": [], "identifications": []}, {"id": "004040", "name": "ESTR. DO PR\u00e9, 13 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89444083, "longitude": -43.53428065, "objects": [], "identifications": []}, {"id": "001673", "name": "AV. PADRE ROSE N. 430", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.57/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841467, "longitude": -43.317192, "objects": [], "identifications": []}, {"id": "003675", "name": "AV. PASTOR MARTIN LUTHER KING JR, 4333 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.236/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87623113, "longitude": -43.27603775, "objects": [], "identifications": []}, {"id": "000082", "name": "R. 24 DE MAIO X R. C\u00d4NEGO TOBIAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90246088, "longitude": -43.27744961, "objects": [], "identifications": []}, {"id": "001399", "name": "AV. BRASIL X AV. LOBO JUNIOR - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82687611, "longitude": -43.2750495, "objects": [], "identifications": []}, {"id": "003587", "name": "ESTR. DOS BANDEIRANTES, 7276 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96574, "longitude": -43.41043, "objects": [], "identifications": []}, {"id": "003744", "name": "PRA\u00e7A WALDIR VIEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.79/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912285, "longitude": -43.387257, "objects": [], "identifications": []}, {"id": "000448", "name": "RUA SALVADOR ALLENDE X PEDRO CALMON", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97858205, "longitude": -43.40781011, "objects": [], "identifications": []}, {"id": "001715", "name": "AV. \u00c9DISON PASSOS, 194-256 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.39/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946228, "longitude": -43.258804, "objects": [], "identifications": []}, {"id": "004049", "name": "ESTR. DO MONTEIRO 648 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.230/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921626, "longitude": -43.563778, "objects": [], "identifications": []}, {"id": "003793", "name": "ESTRADA ADHEMAR BEBIANO 4835", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86582539, "longitude": -43.30217638, "objects": [], "identifications": []}, {"id": "001644", "name": "AV. ARMANDO LOMBARDI, 704 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006261, "longitude": -43.31211, "objects": [], "identifications": []}, {"id": "003593", "name": "ESTR. DOS BANDEIRANTES, 8626 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97815308, "longitude": -43.41769977, "objects": [], "identifications": []}, {"id": "003219", "name": "S\u00e3O FRANCISCO XAVIER X VISCONDE DE ITAMARATI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915896, "longitude": -43.230606, "objects": [], "identifications": []}, {"id": "002366", "name": "RECREIO SHOPPING - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.19.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01964124, "longitude": -43.48727521, "objects": [], "identifications": []}, {"id": "002414", "name": "RIOCENTRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.6.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97694082, "longitude": -43.40640604, "objects": [], "identifications": []}, {"id": "000511", "name": "ESTR. DO TINDIBA X R. LOPES SARAIVA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.927073, "longitude": -43.360709, "objects": [], "identifications": []}, {"id": "003454", "name": "ESTR. DOS BANDEIRANTES, 11460-11630 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989126, "longitude": -43.435108, "objects": [], "identifications": []}, {"id": "000103", "name": "LINHA VERMELHA KM 0", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897505, "longitude": -43.218133, "objects": [], "identifications": []}, {"id": "000267", "name": "AUTO EST. LAGOA BARRA", "rtsp_url": "rtsp://admin:admin@10.50.106.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992613, "longitude": -43.251731, "objects": [], "identifications": []}, {"id": "004281", "name": "R. PINHEIRO MACHADO 112", "rtsp_url": "rtsp://admin:123smart@10.52.14.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93631935, "longitude": -43.18397171, "objects": [], "identifications": []}, {"id": "000297", "name": "R. S\u00c3O CLEMENTE X R. SOROCABA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950095, "longitude": -43.190989, "objects": [], "identifications": []}, {"id": "001625", "name": "R. RIACHUELO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914124, "longitude": -43.182909, "objects": [], "identifications": []}, {"id": "003134", "name": "AV. ARMANDO LOMBARDI, 435", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.57/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006916, "longitude": -43.313425, "objects": [], "identifications": []}, {"id": "002427", "name": "MAGALH\u00c3ES BASTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.20.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86803019, "longitude": -43.41279524, "objects": [], "identifications": []}, {"id": "001704", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957306, "longitude": -43.268509, "objects": [], "identifications": []}, {"id": "001048", "name": "R. PADRE ANDR\u00c9 MOREIRA 58 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902495, "longitude": -43.27522924, "objects": [], "identifications": []}, {"id": "003327", "name": "R. MARIA HELENA, 93 FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8057282, "longitude": -43.3699047, "objects": [], "identifications": []}, {"id": "001694", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950853, "longitude": -43.257698, "objects": [], "identifications": []}, {"id": "000253", "name": "R. BULH\u00d5ES DE CARVALHO X R. FRANCISCO OTAVIANO", "rtsp_url": "rtsp://admin:admin@10.52.21.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987207, "longitude": -43.191612, "objects": [], "identifications": []}, {"id": "001348", "name": "AV. HENRIQUE DODSWORTH, 64-142 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.213/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97693665, "longitude": -43.19659212, "objects": [], "identifications": []}, {"id": "000241", "name": "AV. NIEMEYER, 393 - S\u00c3O CONRADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.999332, "longitude": -43.24781, "objects": [], "identifications": []}, {"id": "002507", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00148109, "longitude": -43.36644666, "objects": [], "identifications": []}, {"id": "000464", "name": "RUA SALVADOR ALLENDE X PR\u00d3X. OLOF PALME", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.118/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982722, "longitude": -43.410896, "objects": [], "identifications": []}, {"id": "001184", "name": "AV. ATL\u00c2NTICA X R. MIGUEL LEMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97828036, "longitude": -43.18848729, "objects": [], "identifications": []}, {"id": "000366", "name": "R. PEREIRA NUNES X R. BALTAZAR LISBOA", "rtsp_url": "rtsp://10.50.224.211/366-VIDEO", "update_interval": 120, "latitude": -22.922062, "longitude": -43.237368, "objects": [], "identifications": []}, {"id": "003514", "name": "ESTR. DOS BANDEIRANTES, 9860-9890 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.67/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982888, "longitude": -43.424616, "objects": [], "identifications": []}, {"id": "001441", "name": "AV. NIEMEYER 418 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00057806, "longitude": -43.24380873, "objects": [], "identifications": []}, {"id": "001353", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://10.52.252.173/", "update_interval": 120, "latitude": -22.98041286, "longitude": -43.18907317, "objects": [], "identifications": []}, {"id": "002536", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83988268, "longitude": -43.23958079, "objects": [], "identifications": []}, {"id": "000474", "name": "AV. LUCIO COSTA X AV. DO CONTORNO - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.209.122/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.022384, "longitude": -43.447999, "objects": [], "identifications": []}, {"id": "003699", "name": "AV. ATL\u00e2NTICA X REP. DO PERU", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.187/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968898, "longitude": -43.180944, "objects": [], "identifications": []}, {"id": "000151", "name": "AV. BRAZ DE PINA X RUA JACARAU - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.837788, "longitude": -43.288355, "objects": [], "identifications": []}, {"id": "004120", "name": "R. FREI CANECA 8-40, HEMORIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90927359, "longitude": -43.18937921, "objects": [], "identifications": []}, {"id": "000378", "name": "AV. AMARO CAVALCANTE X ESTA\u00c7\u00c3O FERROVIARIA DO ENGENHO DE DENTRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895729, "longitude": -43.294817, "objects": [], "identifications": []}, {"id": "003549", "name": "MONUMENTO DOM JO\u00c3O VI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902244, "longitude": -43.172817, "objects": [], "identifications": []}, {"id": "001678", "name": "EST. DO CABU\u00c7U, 747", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908756, "longitude": -43.550877, "objects": [], "identifications": []}, {"id": "003578", "name": "ESTR. DOS BANDEIRANTES, 5450 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96058, "longitude": -43.39245, "objects": [], "identifications": []}, {"id": "003511", "name": "ESTR. DOS BANDEIRANTES, 9799-9753 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98128, "longitude": -43.424169, "objects": [], "identifications": []}, {"id": "002113", "name": "PRACA DO BANDOLIM - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.10.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95860952, "longitude": -43.3833512, "objects": [], "identifications": []}, {"id": "000367", "name": "R. MARIZ E BARROS X R. FELISBERTO DE MENEZES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912639, "longitude": -43.215954, "objects": [], "identifications": []}, {"id": "002456", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.2/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91663724, "longitude": -43.683693, "objects": [], "identifications": []}, {"id": "004088", "name": "ESTR. DOS BANDEIRANTES, 4722 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.170/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958604, "longitude": -43.384327, "objects": [], "identifications": []}, {"id": "001195", "name": "AV. ATL\u00c2NTICA 181", "rtsp_url": "rtsp://10.52.252.178/", "update_interval": 120, "latitude": -22.98410892, "longitude": -43.18925009, "objects": [], "identifications": []}, {"id": "003991", "name": "ESTR. DOS BANDEIRANTES, 23488 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98078361, "longitude": -43.49090593, "objects": [], "identifications": []}, {"id": "003812", "name": "R. PRAC. EL\u00edDIO MARTINS, 451 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894425, "longitude": -43.54197, "objects": [], "identifications": []}, {"id": "001586", "name": "AV. PRES. VARGAS, 2863 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90866558, "longitude": -43.20163206, "objects": [], "identifications": []}, {"id": "003501", "name": "ESTR. DOS BANDEIRANTES, 8484 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973995, "longitude": -43.414602, "objects": [], "identifications": []}, {"id": "001566", "name": "R. BAR\u00c3O DE S\u00c3O FRANCISCO, 444 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915247, "longitude": -43.251244, "objects": [], "identifications": []}, {"id": "000007", "name": "AV. 20 DE JANEIRO X BASE DA GUARDA MUNICIPAL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.815593, "longitude": -43.242096, "objects": [], "identifications": []}, {"id": "000011", "name": "LARGO DO EST\u00c1CIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913996, "longitude": -43.204558, "objects": [], "identifications": []}, {"id": "001610", "name": "PRA\u00c7A JO\u00c3O PESSOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912844, "longitude": -43.182896, "objects": [], "identifications": []}, {"id": "002029", "name": "PENHA I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841229, "longitude": -43.276407, "objects": [], "identifications": []}, {"id": "001407", "name": "AV. BARTOLOMEU MITRE, 1099 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97805787, "longitude": -43.22485623, "objects": [], "identifications": []}, {"id": "003576", "name": "AV. VICENTE DE CARVALHO, 1052", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.853229, "longitude": -43.313962, "objects": [], "identifications": []}, {"id": "001978", "name": "ESTR. VER. ALCEU DE CARVALHO , S/N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0163343, "longitude": -43.4929727, "objects": [], "identifications": []}, {"id": "003639", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3844", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.203/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.868055, "longitude": -43.295751, "objects": [], "identifications": []}, {"id": "003992", "name": "RUA CONDE DE BONFIM, 815 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.935369, "longitude": -43.243638, "objects": [], "identifications": []}, {"id": "001785", "name": "R. BOA VISTA - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.210.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96211984, "longitude": -43.27433736, "objects": [], "identifications": []}, {"id": "001778", "name": "ESTR. VELHA DA TIJUCA, 4446 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96033003, "longitude": -43.27205116, "objects": [], "identifications": []}, {"id": "004267", "name": "RUA PINTO DE AZEVEDO, ESTACIONAMENTO EXTERNO BLOCO 2 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.245.53/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91149252, "longitude": -43.20444691, "objects": [], "identifications": []}, {"id": "001144", "name": "AUTO ESTR. LAGOA-BARRA X EST. DA G\u00c1VEA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99225659, "longitude": -43.25182778, "objects": [], "identifications": []}, {"id": "004248", "name": "AV. HENRIETE DE HOLANDA AMADO, 1567", "rtsp_url": "rtsp://admin:123smart@10.52.211.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887389, "longitude": -43.292448, "objects": [], "identifications": []}, {"id": "001187", "name": "AV. ATL\u00c2NTICA 4134 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984869, "longitude": -43.189226, "objects": [], "identifications": []}, {"id": "002105", "name": "REDE SARAH - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.6.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97338726, "longitude": -43.37693089, "objects": [], "identifications": []}, {"id": "000364", "name": "R. VISCONDE DE SANTA ISABEL X R. ALEXANDRE CALAZA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916885, "longitude": -43.260158, "objects": [], "identifications": []}, {"id": "000500", "name": "AV. CES\u00c1RIO DE MELLO X RUA MORANGO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910571, "longitude": -43.58346, "objects": [], "identifications": []}, {"id": "002195", "name": "VILA PACI\u00caNCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.40.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92838, "longitude": -43.653787, "objects": [], "identifications": []}, {"id": "001799", "name": "ESTR. DAS FURNAS, 572 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968607, "longitude": -43.27963, "objects": [], "identifications": []}, {"id": "001058", "name": "AV. AMARO CAVALCANTI N\u00ba135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90106314, "longitude": -43.27890857, "objects": [], "identifications": []}, {"id": "000746", "name": "LINHA AMARELA ENTRADA 2, SENTIDO BARRA", "rtsp_url": "rtsp://user:7lanmstr@10.52.208.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904457, "longitude": -43.304846, "objects": [], "identifications": []}, {"id": "001965", "name": "AV. NOSSA SRA. DE COPACABANA X RUA SIQUEIRA CAMPOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.39.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9690314, "longitude": -43.1845505, "objects": [], "identifications": []}, {"id": "001887", "name": "R. BAR\u00c3O DE IGUATEMI, 364 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91354, "longitude": -43.215151, "objects": [], "identifications": []}, {"id": "000224", "name": "R. MEM DE S\u00c1 X R. DE SANTANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911104, "longitude": -43.192409, "objects": [], "identifications": []}, {"id": "000236", "name": "R. COSME VELHO X IGREJA S\u00c3O JUDAS TADEU", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.940188, "longitude": -43.198325, "objects": [], "identifications": []}, {"id": "001139", "name": "R. MUNIZ BARRETO X R. MARQUES DE OLINDA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9436255, "longitude": -43.18380405, "objects": [], "identifications": []}, {"id": "000443", "name": "AV. MARTIN LUTHER X AV. VICENTE DE CARVALHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.152/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.853322, "longitude": -43.313861, "objects": [], "identifications": []}, {"id": "001450", "name": "AV. NIEMEYER PROX. HOTEL NACIONAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.172/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99847456, "longitude": -43.25606813, "objects": [], "identifications": []}, {"id": "000553", "name": "R. FRANCISCO REAL X R. SILVA CARDOSO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879715, "longitude": -43.463489, "objects": [], "identifications": []}, {"id": "000155", "name": "AV. BRASIL X ALTURA ESTR. DO ENGENHO NOVO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.83/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86524217, "longitude": -43.42713159, "objects": [], "identifications": []}, {"id": "003302", "name": "ESTR. DOS BANDEIRANTES, 20732 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985037, "longitude": -43.473939, "objects": [], "identifications": []}, {"id": "001427", "name": "AV. NIEMEYER 226 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9958776, "longitude": -43.23556681, "objects": [], "identifications": []}, {"id": "002111", "name": "CURICICA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.9.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95996552, "longitude": -43.38896455, "objects": [], "identifications": []}, {"id": "003728", "name": "AV. ERNANI CARDOSO, 240 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88242834, "longitude": -43.3356408, "objects": [], "identifications": []}, {"id": "001151", "name": "ESTR. DA BARRA DA TIJUCA X HOTEL SERRAMAR - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00402524, "longitude": -43.30453511, "objects": [], "identifications": []}, {"id": "002495", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97185175, "longitude": -43.40056647, "objects": [], "identifications": []}, {"id": "001687", "name": "AV. \u00c9DISON PASSOS, 4200 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94808787, "longitude": -43.25942707, "objects": [], "identifications": []}, {"id": "001006", "name": "AV. VIEIRA SOUTO X R. VIN\u00cdCIUS DE MORAES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98678318, "longitude": -43.20296134, "objects": [], "identifications": []}, {"id": "002289", "name": "TERMINAL JD. OCE\u00c2NICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006735, "longitude": -43.31183425, "objects": [], "identifications": []}, {"id": "000472", "name": "AV. DAS AM\u00c9RICAS X ALTURA DO COL\u00c9GIO NOTRE DAME", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.020222, "longitude": -43.501439, "objects": [], "identifications": []}, {"id": "003711", "name": "R. QUAXIMA X PAULO PORTELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87902423, "longitude": -43.33692281, "objects": [], "identifications": []}, {"id": "000048", "name": "AV. MARACAN\u00c3 X RUA EURICO RABELO", "rtsp_url": "rtsp://admin:admin@10.52.252.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915067, "longitude": -43.228917, "objects": [], "identifications": []}, {"id": "003809", "name": "AV. CES\u00e1RIO DE MELO, 986 X RUA SENHORA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89632, "longitude": -43.546808, "objects": [], "identifications": []}, {"id": "001289", "name": "AVENIDA ALFREDO BALTAZAR DA SILVEIRA X RUA ODILON DUARTE BRAGA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.127/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01206166, "longitude": -43.44379741, "objects": [], "identifications": []}, {"id": "000009", "name": "AV. PRES. ANT\u00d4NIO CARLOS X AV. ALMIRATE BARROSO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906766, "longitude": -43.172901, "objects": [], "identifications": []}, {"id": "002468", "name": "TERMINAL RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.1.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00836106, "longitude": -43.44007501, "objects": [], "identifications": []}, {"id": "002275", "name": "TERMINAL CAMPO GRANDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.56.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90179056, "longitude": -43.55463126, "objects": [], "identifications": []}, {"id": "001351", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95041245, "longitude": -43.18002797, "objects": [], "identifications": []}, {"id": "003599", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 6407 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.851316, "longitude": -43.317446, "objects": [], "identifications": []}, {"id": "002049", "name": "VILA KOSMOS - NOSSA SENHORA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.33.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.849765, "longitude": -43.307977, "objects": [], "identifications": []}, {"id": "003154", "name": "T\u00faNEL VELHO SENT. COPACABANA - 8 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962847, "longitude": -43.19146, "objects": [], "identifications": []}, {"id": "003659", "name": "ESTR. DOS TR\u00eaS RIOS X ESTR. DO BANANAL", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.936349, "longitude": -43.333114, "objects": [], "identifications": []}, {"id": "001581", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907179, "longitude": -43.196736, "objects": [], "identifications": []}, {"id": "001331", "name": "AV. ATL\u00c2NTICA, N 110 - FIXA", "rtsp_url": "rtsp://10.52.252.75/", "update_interval": 120, "latitude": -22.971949, "longitude": -43.184486, "objects": [], "identifications": []}, {"id": "004061", "name": "ESTR. DO MONTEIRO, 430 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916629, "longitude": -43.563665, "objects": [], "identifications": []}, {"id": "001815", "name": "R. BOA VISTA, 1302-1456 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.974012, "longitude": -43.285632, "objects": [], "identifications": []}, {"id": "003343", "name": "ESTRADA DO GALE\u00e3O, 1803", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8061436, "longitude": -43.1999468, "objects": [], "identifications": []}, {"id": "000894", "name": "AV. DAS AMERICAS, ALTURA DO N\u00ba 19.400", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018612, "longitude": -43.508016, "objects": [], "identifications": []}, {"id": "001655", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA, 187", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952754, "longitude": -43.188029, "objects": [], "identifications": []}, {"id": "003761", "name": "RUA GUILHERMINA X RUA JOS\u00e9 DOMINGUES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89393875, "longitude": -43.30111216, "objects": [], "identifications": []}, {"id": "003611", "name": "ESTR. DOS TR\u00eaS RIOS, 961-875 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.937015, "longitude": -43.335859, "objects": [], "identifications": []}, {"id": "002110", "name": "CURICICA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.9.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95992509, "longitude": -43.38871839, "objects": [], "identifications": []}, {"id": "002387", "name": "MAGAR\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.28.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96863034, "longitude": -43.62168602, "objects": [], "identifications": []}, {"id": "004257", "name": "PRA\u00c7A SARGENTO EUD\u00d3XIDO PASSOS, 14", "rtsp_url": "rtsp://admin:123smart@10.52.211.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895867, "longitude": -43.302212, "objects": [], "identifications": []}, {"id": "003221", "name": "R. S\u00e3O FRANCISCO XAVIER X R. ARTUR MENEZES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914593, "longitude": -43.233123, "objects": [], "identifications": []}, {"id": "003515", "name": "ESTR. DOS BANDEIRANTES, 10567-10561 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.68/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985001, "longitude": -43.426804, "objects": [], "identifications": []}, {"id": "000256", "name": "AV. ATL\u00c2NTICA X R BOLIVAR - FIXA", "rtsp_url": "rtsp://10.52.252.93/", "update_interval": 120, "latitude": -22.975917, "longitude": -43.187779, "objects": [], "identifications": []}, {"id": "001527", "name": "CAMPO S\u00c3O CRIST\u00d3V\u00c3O, 13 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.7/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895926, "longitude": -43.2207, "objects": [], "identifications": []}, {"id": "000302", "name": "R. MUNIZ BARRETO X R. MARQUES DE OLINDA", "rtsp_url": "rtsp://10.52.20.239/302-VIDEO", "update_interval": 120, "latitude": -22.943791, "longitude": -43.183737, "objects": [], "identifications": []}, {"id": "002395", "name": "GENERAL OL\u00cdMPIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.35.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92195666, "longitude": -43.67970959, "objects": [], "identifications": []}, {"id": "001121", "name": "MONUMENTO NOEL ROSA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91353458, "longitude": -43.2353334, "objects": [], "identifications": []}, {"id": "004039", "name": "ESTR. DO PR\u00e9, 13 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894384, "longitude": -43.534168, "objects": [], "identifications": []}, {"id": "001179", "name": "R. MIGUEL LEMOS X R. BARATA RIBEIRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97751308, "longitude": -43.19272234, "objects": [], "identifications": []}, {"id": "000450", "name": "AV. PASTOR MARTIN LUTHER KING JR.\u00a0X AV. MONSENHOR FELIX - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.847071, "longitude": -43.324671, "objects": [], "identifications": []}, {"id": "001459", "name": "AV. ARMANDO LOMBARDI 669 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.007048, "longitude": -43.311872, "objects": [], "identifications": []}, {"id": "004031", "name": "AV. DE SANTA CRUZ, 12055 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.74/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89282217, "longitude": -43.5301673, "objects": [], "identifications": []}, {"id": "002178", "name": "GALE\u00c3O TOM JOBIM 2 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.46.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81445227, "longitude": -43.24640981, "objects": [], "identifications": []}, {"id": "000142", "name": "R. VISCONDE DE NITER\u00d3I ALTURA MANGUEIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908367, "longitude": -43.23606, "objects": [], "identifications": []}, {"id": "004182", "name": "AV. PARANAPU\u00c3 X RUA CAPANEMA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.99/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79512345, "longitude": -43.18252778, "objects": [], "identifications": []}, {"id": "001901", "name": "ESTR. DO MENDANHA, 2123 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.189/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.872356, "longitude": -43.55349, "objects": [], "identifications": []}, {"id": "002017", "name": "SANTA LUZIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.43.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854904, "longitude": -43.253251, "objects": [], "identifications": []}, {"id": "000235", "name": "AV. BORGES DE MEDEIROS X R. SATURNINO DE BRITO", "rtsp_url": "rtsp://10.52.11.19/235-VIDEO", "update_interval": 120, "latitude": -22.966504, "longitude": -43.216696, "objects": [], "identifications": []}, {"id": "003781", "name": "AV. DOM H\u00e9LDER C\u00e2MARA X ALTURA LINHA AMARELA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88480236, "longitude": -43.29061612, "objects": [], "identifications": []}, {"id": "002480", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88507925, "longitude": -43.39941201, "objects": [], "identifications": []}, {"id": "003388", "name": "ESTR. DOS BANDEIRANTES, 12250 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.212/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989462, "longitude": -43.442276, "objects": [], "identifications": []}, {"id": "000351", "name": "AV. MENEZES C\u00d4RTES - AUTOESTRADA GRAJA\u00da-JACAREPAGU\u00c1 (SUBIDA GRAJA\u00da)", "rtsp_url": "rtsp://10.52.26.150/351-VIDEO", "update_interval": 120, "latitude": -22.916935, "longitude": -43.262422, "objects": [], "identifications": []}, {"id": "004140", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85386431, "longitude": -43.38362131, "objects": [], "identifications": []}, {"id": "003268", "name": "MONUMENTO JOS\u00e9 BONIF\u00e1CIO - LARGO DE S\u00e3O FRANCISCO DE PAULA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90522, "longitude": -43.18083, "objects": [], "identifications": []}, {"id": "002435", "name": "LEILA DINIZ- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.12.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953284, "longitude": -43.390734, "objects": [], "identifications": []}, {"id": "002145", "name": "CAPITAO MENEZES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.23.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89268233, "longitude": -43.34844923, "objects": [], "identifications": []}, {"id": "004163", "name": "ESTR. DO GALE\u00c3O - 1588 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80666708, "longitude": -43.19814185, "objects": [], "identifications": []}, {"id": "001297", "name": "R. JOSEPH BLOCH, 30 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96655324, "longitude": -43.18903584, "objects": [], "identifications": []}, {"id": "004227", "name": "AV. PEDRO II, 111 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.30.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902817, "longitude": -43.2133, "objects": [], "identifications": []}, {"id": "001751", "name": "ALTO DA BOA VISTA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95701, "longitude": -43.267601, "objects": [], "identifications": []}, {"id": "002187", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97167, "longitude": -43.40093, "objects": [], "identifications": []}, {"id": "001190", "name": "AV. ATL\u00c2NTICA 213 - FIXA", "rtsp_url": "rtsp://10.52.21.12/", "update_interval": 120, "latitude": -22.98606288, "longitude": -43.188652, "objects": [], "identifications": []}, {"id": "000161", "name": "LINHA VERMELHA - KM 1 X PISTA SUPERIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890386, "longitude": -43.223166, "objects": [], "identifications": []}, {"id": "002458", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.4/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91700905, "longitude": -43.68362326, "objects": [], "identifications": []}, {"id": "000005", "name": "AV. RIO BRANCO X AV. BEIRA MAR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913741, "longitude": -43.174155, "objects": [], "identifications": []}, {"id": "004171", "name": "RUA HAROLDO L\u00d4BO, 415", "rtsp_url": "rtsp://admin:123smart@10.52.216.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8018588, "longitude": -43.209507, "objects": [], "identifications": []}, {"id": "002437", "name": "LEILA DINIZ- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.12.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952899, "longitude": -43.390386, "objects": [], "identifications": []}, {"id": "001966", "name": "RUA DO PASSEIO, 70", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914468, "longitude": -43.17816, "objects": [], "identifications": []}, {"id": "000570", "name": "ESTR. DA CAROBA X AV. CES\u00c1RIO DE MELO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89759053, "longitude": -43.54829279, "objects": [], "identifications": []}, {"id": "000240", "name": "R. MENA BARRETO X R. REAL GRANDEZA", "rtsp_url": "rtsp://admin:admin@10.52.20.233/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95663941, "longitude": -43.19166915, "objects": [], "identifications": []}, {"id": "003295", "name": "ESTR. DOS BANDEIRANTES, 21577 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987626, "longitude": -43.479585, "objects": [], "identifications": []}, {"id": "003727", "name": "AV. ERNANI CARDOSO, 371-361 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.217/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88276935, "longitude": -43.33965606, "objects": [], "identifications": []}, {"id": "003181", "name": "AVENIDA ARMANDO LOMBARDI", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0065595, "longitude": -43.31274066, "objects": [], "identifications": []}, {"id": "001843", "name": "ESTR. DAS FURNAS, 3000", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981574, "longitude": -43.294955, "objects": [], "identifications": []}, {"id": "002043", "name": "PRACA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.35.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838994, "longitude": -43.295294, "objects": [], "identifications": []}, {"id": "003573", "name": "RUA MAREANTE - (COCOT\u00e1)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.125/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8054, "longitude": -43.181298, "objects": [], "identifications": []}, {"id": "004078", "name": "ESTR. DOS BANDEIRANTES, 4926 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95945418, "longitude": -43.38767865, "objects": [], "identifications": []}, {"id": "000087", "name": "R. AMARO CAVALCANTI X VIADUTO DE TODOS OS SANTOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897278, "longitude": -43.285727, "objects": [], "identifications": []}, {"id": "002279", "name": "NOVA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.16.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01560567, "longitude": -43.47145136, "objects": [], "identifications": []}, {"id": "001148", "name": "ESTR. DA BARRA DA TIJUCA 506 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00771057, "longitude": -43.30250129, "objects": [], "identifications": []}, {"id": "000294", "name": "R. BARATA RIBEIRO X R. SANTA CLARA", "rtsp_url": "rtsp://admin:admin@10.52.20.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970376, "longitude": -43.188329, "objects": [], "identifications": []}, {"id": "000143", "name": "AV. BRAZ DE PINA X R CMTE. CONCEI\u00c7\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84013852, "longitude": -43.28172096, "objects": [], "identifications": []}, {"id": "000119", "name": "AV. EPIT\u00c1CIO PESSOA - PR\u00d3XIMO AO PARQUE DA CATACUMBA", "rtsp_url": "rtsp://admin:admin@10.52.24.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.972396, "longitude": -43.203072, "objects": [], "identifications": []}, {"id": "002465", "name": "OUTEIRO SANTO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.15.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92731039, "longitude": -43.39635067, "objects": [], "identifications": []}, {"id": "001334", "name": "RUA HENRIQUE OSWALD, 70 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.190/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96421378, "longitude": -43.19142882, "objects": [], "identifications": []}, {"id": "002116", "name": "ARROIO PAVUNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.11.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95512988, "longitude": -43.37708085, "objects": [], "identifications": []}, {"id": "003390", "name": "ESTR. DOS BANDEIRANTES, 12179-12067 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988949, "longitude": -43.440787, "objects": [], "identifications": []}, {"id": "002311", "name": "BARRA SHOPPING - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://user:sl123456@10.151.100.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99988881, "longitude": -43.35985519, "objects": [], "identifications": []}, {"id": "003694", "name": "ESTR. DOS TR\u00eaS RIOS X RUA XING\u00fa", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93886, "longitude": -43.340906, "objects": [], "identifications": []}, {"id": "003838", "name": "ESTR. DOS BANDEIRANTES, 24160 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976372, "longitude": -43.494885, "objects": [], "identifications": []}, {"id": "003589", "name": "ESTR. DOS BANDEIRANTES, 7590 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96632, "longitude": -43.41186, "objects": [], "identifications": []}, {"id": "001884", "name": "R. JOS\u00c9 DO PATROC\u00cdNIO, 318 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918881, "longitude": -43.262847, "objects": [], "identifications": []}, {"id": "001638", "name": "AV. ARMANDO LOMBARDI, 400 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006472, "longitude": -43.309784, "objects": [], "identifications": []}, {"id": "001763", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.83/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957939, "longitude": -43.266824, "objects": [], "identifications": []}, {"id": "003818", "name": "AV. CES\u00e1RIO DE MELO, 3393 X BRT C\u00e2NDIDO MAGALH\u00e3ES", "rtsp_url": "rtsp://admin:7lanmstr@10.151.55.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90771405, "longitude": -43.56433403, "objects": [], "identifications": []}, {"id": "000008", "name": "R. VISCONDE DO RIO BRANCO X R. DOS INV\u00c1LIDOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908246, "longitude": -43.186069, "objects": [], "identifications": []}, {"id": "003816", "name": "AV. JOAQUIM MAGALH\u00e3ES, 1240 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8929677, "longitude": -43.53791303, "objects": [], "identifications": []}, {"id": "003605", "name": "ESTR. DOS TR\u00eaS RIOS X R. CMTE. RUBENS SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.937493, "longitude": -43.337169, "objects": [], "identifications": []}, {"id": "003210", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES, 3270 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.185/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.872218, "longitude": -43.580674, "objects": [], "identifications": []}, {"id": "001590", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9070882, "longitude": -43.19642169, "objects": [], "identifications": []}, {"id": "002128", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92346647, "longitude": -43.3739508, "objects": [], "identifications": []}, {"id": "003663", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 9154 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839242, "longitude": -43.33762, "objects": [], "identifications": []}, {"id": "003769", "name": "AV. DELFIM MOREIRA X R. BARTOLOMEU MITRE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.122/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98708897, "longitude": -43.22247322, "objects": [], "identifications": []}, {"id": "002512", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00142922, "longitude": -43.36475953, "objects": [], "identifications": []}, {"id": "003647", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 7130 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.211/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.847653, "longitude": -43.323607, "objects": [], "identifications": []}, {"id": "002406", "name": "ILHA PURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.4.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98935172, "longitude": -43.41732743, "objects": [], "identifications": []}, {"id": "002318", "name": "NOVO LEBLON - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.3.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00044947, "longitude": -43.38356396, "objects": [], "identifications": []}, {"id": "001984", "name": "ESTR. VER. ALCEU DE CARVALHO, S/N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.231/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99937841, "longitude": -43.49383073, "objects": [], "identifications": []}, {"id": "003236", "name": "ESTRADA BENVINDO DE NOVAES, 520 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99706317, "longitude": -43.45029918, "objects": [], "identifications": []}, {"id": "001409", "name": "AV. BARTOLOMEU MITRE, 1099 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97812702, "longitude": -43.22457862, "objects": [], "identifications": []}, {"id": "003817", "name": "AV. JOAQUIM MAGALH\u00e3ES, 985 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89154196, "longitude": -43.53637075, "objects": [], "identifications": []}, {"id": "000175", "name": "R. S\u00c3O FRANCISCO XAVIER X R. GENERAL CANABARRO", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916124, "longitude": -43.227038, "objects": [], "identifications": []}, {"id": "001328", "name": "AV. ATL\u00c2NTICA X RUA SIQUEIRA CAMPOS - FIXA", "rtsp_url": "rtsp://10.52.252.108/", "update_interval": 120, "latitude": -22.970347, "longitude": -43.182714, "objects": [], "identifications": []}, {"id": "003112", "name": "RUA CONDE DE BONFIM, 502 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92780455, "longitude": -43.23630193, "objects": [], "identifications": []}, {"id": "003602", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X R. DONA MARIA ENFERMEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.170/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854227, "longitude": -43.313313, "objects": [], "identifications": []}, {"id": "001888", "name": "R. VICENTE LIC\u00cdNIO, 140", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914344, "longitude": -43.216228, "objects": [], "identifications": []}, {"id": "004047", "name": "ESTR. DOS BANDEIRANTES, 3329 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.251/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952327, "longitude": -43.374806, "objects": [], "identifications": []}, {"id": "001113", "name": "R. GOI\u00c1S X R. GUINEZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895392, "longitude": -43.298735, "objects": [], "identifications": []}, {"id": "000401", "name": "R. VINTE E QUATRO DE MAIO X R. LINS DE VASCONCELOS", "rtsp_url": "rtsp://admin:admin@10.52.210.71/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904344, "longitude": -43.272722, "objects": [], "identifications": []}, {"id": "000300", "name": "PRAIA DE BOTAFOGO X R. S\u00c3O CLEMENTE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949047, "longitude": -43.182428, "objects": [], "identifications": []}, {"id": "003201", "name": "AV. GLAUCIO GIL, 374 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.177/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.021396, "longitude": -43.458461, "objects": [], "identifications": []}, {"id": "000370", "name": "R. ALMIRANTE COCHRANE X R. PARETO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921968, "longitude": -43.230195, "objects": [], "identifications": []}, {"id": "003448", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91269358, "longitude": -43.25197113, "objects": [], "identifications": []}, {"id": "000284", "name": "AV. N. SRA. DE COPACABANA X R. RODOLFO DANTAS", "rtsp_url": "rtsp://10.52.23.131/284-VIDEO", "update_interval": 120, "latitude": -22.966257, "longitude": -43.178962, "objects": [], "identifications": []}, {"id": "004041", "name": "R. ARTUR RIOS, 50 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.228/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894471, "longitude": -43.536556, "objects": [], "identifications": []}, {"id": "002022", "name": "CARDOSO DE MORAES - VI\u00daVA GARCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.42.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85747, "longitude": -43.258072, "objects": [], "identifications": []}, {"id": "002525", "name": "OTAVIANO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.28.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86604602, "longitude": -43.3344451, "objects": [], "identifications": []}, {"id": "001090", "name": "AV. BRASIL X ALTURA ESTR. DO ENGENHO NOVO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.84/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86517791, "longitude": -43.42731398, "objects": [], "identifications": []}, {"id": "002394", "name": "GENERAL OL\u00cdMPIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.35.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9222396, "longitude": -43.67964339, "objects": [], "identifications": []}, {"id": "003277", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 05 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98016, "longitude": -43.19286, "objects": [], "identifications": []}, {"id": "000416", "name": "R. LEOPOLDINA REGO X VIAD. DE RAMOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.116/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852548, "longitude": -43.261778, "objects": [], "identifications": []}, {"id": "003346", "name": "ESTRADA DO GALE\u00e3O X RUA CAMBA\u00faBA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8056069, "longitude": -43.2090232, "objects": [], "identifications": []}, {"id": "001852", "name": "ESTR. DAS FURNAS, 3800 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98515021, "longitude": -43.30037482, "objects": [], "identifications": []}, {"id": "004157", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85420897, "longitude": -43.38350049, "objects": [], "identifications": []}, {"id": "003799", "name": "RUA VISCONDE DO RIO BRANCO X RUA DO LAVRADIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90784288, "longitude": -43.18424019, "objects": [], "identifications": []}, {"id": "001411", "name": "PRA\u00c7A SIBELIUS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97886042, "longitude": -43.22883663, "objects": [], "identifications": []}, {"id": "001245", "name": "AV. ATL\u00c2NTICA X CONSTANTE RAMOS - FIXA", "rtsp_url": "rtsp://10.52.252.88/", "update_interval": 120, "latitude": -22.975053, "longitude": -43.187252, "objects": [], "identifications": []}, {"id": "001350", "name": "AV. NOSSA SRA. DE COPACABANA, 1033 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97796266, "longitude": -43.19050844, "objects": [], "identifications": []}, {"id": "004124", "name": "RUA S\u00c3O JANU\u00c1RIO X R. DO BONFIM", "rtsp_url": "rtsp://admin:123smart@10.52.32.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89086, "longitude": -43.22656, "objects": [], "identifications": []}, {"id": "003512", "name": "ESTR. DOS BANDEIRANTES, 9799-9753 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981302, "longitude": -43.42419, "objects": [], "identifications": []}, {"id": "002450", "name": "COL\u00d4NIA / MUSEU BISPO DO ROS\u00c1RIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.14.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94118613, "longitude": -43.39461463, "objects": [], "identifications": []}, {"id": "002083", "name": "TANQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.20.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91497304, "longitude": -43.36101526, "objects": [], "identifications": []}, {"id": "004068", "name": "ESTR. DOS BANDEIRANTES, 3586 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.174/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954336, "longitude": -43.376221, "objects": [], "identifications": []}, {"id": "002106", "name": "CENTRO METROPOLITANO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.5.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97346954, "longitude": -43.36564073, "objects": [], "identifications": []}, {"id": "001236", "name": "AV. ATL\u00e2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://10.52.252.100/", "update_interval": 120, "latitude": -22.976836, "longitude": -43.188243, "objects": [], "identifications": []}, {"id": "003183", "name": "AV. GLAUCIO GIL, 1125 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.014115, "longitude": -43.461273, "objects": [], "identifications": []}, {"id": "002088", "name": "MADUREIRA-MANACEIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.26.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87681907, "longitude": -43.33569083, "objects": [], "identifications": []}, {"id": "003300", "name": "ESTR. DOS BANDEIRANTES, 21152 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986403, "longitude": -43.476327, "objects": [], "identifications": []}, {"id": "002097", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97329096, "longitude": -43.38324904, "objects": [], "identifications": []}, {"id": "000247", "name": "AV. PRESIDENTE VARGAS X R. URUGUAIANA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902296, "longitude": -43.181304, "objects": [], "identifications": []}, {"id": "003985", "name": "RUA CONDE DE BONFIM, 1052 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.940351, "longitude": -43.249538, "objects": [], "identifications": []}, {"id": "000148", "name": "AV. BRASIL X AV. LOBO JUNIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.826687, "longitude": -43.275307, "objects": [], "identifications": []}, {"id": "004075", "name": "ESTR. DOS BANDEIRANTES, 4148 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95775444, "longitude": -43.38084965, "objects": [], "identifications": []}, {"id": "004062", "name": "ESTR. DO MONTEIRO, 206 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91203711, "longitude": -43.56481739, "objects": [], "identifications": []}, {"id": "003693", "name": "AV. PASTOR MARTIN LUTHER KING JR.,11165 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.253/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.824918, "longitude": -43.349764, "objects": [], "identifications": []}, {"id": "003357", "name": "ESTR. DOS BANDEIRANTES, 16231 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.181/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982282, "longitude": -43.466654, "objects": [], "identifications": []}, {"id": "002447", "name": "BOI\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.16.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9157, "longitude": -43.39805, "objects": [], "identifications": []}, {"id": "001737", "name": "AV. \u00c9DISON PASSOS, 1875 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.58/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953212, "longitude": -43.261497, "objects": [], "identifications": []}, {"id": "002242", "name": "C\u00c2NDIDO MAGALH\u00c3ES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.55.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9077082, "longitude": -43.564232, "objects": [], "identifications": []}, {"id": "002317", "name": "BOSQUE DA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.2.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00031967, "longitude": -43.3774403, "objects": [], "identifications": []}, {"id": "002054", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852257, "longitude": -43.312151, "objects": [], "identifications": []}, {"id": "000353", "name": "R. TEODORO DA SILVA X R. GONZAGA BASTOS", "rtsp_url": "rtsp://10.52.26.151/353-VIDEO", "update_interval": 120, "latitude": -22.916767, "longitude": -43.241801, "objects": [], "identifications": []}, {"id": "004280", "name": "R. ALVARO CHAVES 41", "rtsp_url": "rtsp://admin:123smart@10.52.14.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93622053, "longitude": -43.18492926, "objects": [], "identifications": []}, {"id": "001819", "name": "ESTR. DAS FURNAS, 0 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977928, "longitude": -43.291448, "objects": [], "identifications": []}, {"id": "004045", "name": "ESTR. DOS BANDEIRANTES, 3458 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951833, "longitude": -43.3745, "objects": [], "identifications": []}, {"id": "001559", "name": "COMLURB - R. REP\u00daBLICA DO L\u00cdBANO, 67 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906517, "longitude": -43.185974, "objects": [], "identifications": []}, {"id": "004186", "name": "PRAIA DA GUANABARA, 535", "rtsp_url": "rtsp://admin:123smart@10.52.216.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79315675, "longitude": -43.17018841, "objects": [], "identifications": []}, {"id": "001689", "name": "AV. \u00c9DISON PASSOS, 742 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949137, "longitude": -43.261353, "objects": [], "identifications": []}, {"id": "001782", "name": "PRA\u00c7A AFONSO VISEU, 27 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96097443, "longitude": -43.272958, "objects": [], "identifications": []}, {"id": "004018", "name": "ESTR. DOS BANDEIRANTES, 1000 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.190/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93270115, "longitude": -43.37316877, "objects": [], "identifications": []}, {"id": "000534", "name": "ESTR. DOS BANDEIRANTES X OLOF PALM - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.116/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977804, "longitude": -43.417239, "objects": [], "identifications": []}, {"id": "000156", "name": "AV. BRASIL X SANT\u00cdSSIMO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.860384, "longitude": -43.507898, "objects": [], "identifications": []}, {"id": "002324", "name": "SANTA M\u00d4NICA JARDINS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.5.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00022468, "longitude": -43.39882242, "objects": [], "identifications": []}, {"id": "001217", "name": "R. REAL GRANDEZA X SA\u00cdDA DO T\u00daNEL ALAOR PRATA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.171/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9606938, "longitude": -43.19053003, "objects": [], "identifications": []}, {"id": "003264", "name": "MONUMENTO BALAUSTRES DA MURADA DA GL\u00f3RIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92268047, "longitude": -43.17242417, "objects": [], "identifications": []}, {"id": "001977", "name": "ESTR. VER. ALCEU DE CARVALHO, 555 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.209.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01833375, "longitude": -43.49286515, "objects": [], "identifications": []}, {"id": "002231", "name": "S\u00c3O JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.52.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91078418, "longitude": -43.58386923, "objects": [], "identifications": []}, {"id": "002182", "name": "PARQUE OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.7.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97325593, "longitude": -43.39317208, "objects": [], "identifications": []}, {"id": "001980", "name": "ESTR. VER. ALCEU DE CARVALHO, 376 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0100552, "longitude": -43.4931783, "objects": [], "identifications": []}, {"id": "001938", "name": "R. GEN. GUSTAVO CORDEIRO DE FARIAS, 571-455 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8971883, "longitude": -43.238429, "objects": [], "identifications": []}, {"id": "001053", "name": "R. DIAS DA CRUZ, 19 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.68/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90199213, "longitude": -43.27867388, "objects": [], "identifications": []}, {"id": "001447", "name": "AV. NIEMEYER, 546-548 - S\u00c3O CONRADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99887753, "longitude": -43.25158099, "objects": [], "identifications": []}, {"id": "000171", "name": "R. CONDE DE BONFIM X R. JOS\u00c9 HIGINO", "rtsp_url": "rtsp://admin:admin@10.52.24.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.930045, "longitude": -43.237439, "objects": [], "identifications": []}, {"id": "002531", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83876788, "longitude": -43.24001802, "objects": [], "identifications": []}, {"id": "001301", "name": "AV. ALFREDO BALTAZAR DA SILVEIRA X R. GLAUCIO GIL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0221891, "longitude": -43.45812381, "objects": [], "identifications": []}, {"id": "003184", "name": "AV. GLAUCIO GIL, 1125 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01419646, "longitude": -43.46147953, "objects": [], "identifications": []}, {"id": "001196", "name": "AV. ATL\u00c2NTICA 175 - FIXA", "rtsp_url": "rtsp://10.52.21.16/", "update_interval": 120, "latitude": -22.98519621, "longitude": -43.18883975, "objects": [], "identifications": []}, {"id": "002282", "name": "VENDAS DE VARANDA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.30.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95072935, "longitude": -43.65096291, "objects": [], "identifications": []}, {"id": "003938", "name": "ESTR. DOS BANDEIRANTES, 25139-25135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.40/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976899, "longitude": -43.493689, "objects": [], "identifications": []}, {"id": "003220", "name": "R. S\u00e3O FRANCISCO XAVIER X R. CONSELHEIRO OLEG\u00e1RIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913812, "longitude": -43.233708, "objects": [], "identifications": []}, {"id": "003652", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 7249 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.216/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84779, "longitude": -43.32429, "objects": [], "identifications": []}, {"id": "002298", "name": "PAULO MALTA REZENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.106.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00118559, "longitude": -43.3293844, "objects": [], "identifications": []}, {"id": "001054", "name": "TERMINAL AM\u00c9RICO AYRES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901713, "longitude": -43.275514, "objects": [], "identifications": []}, {"id": "000024", "name": "AV. NOSSA SRA. DE COPACABANA X RUA RONALD DE CARVALHO", "rtsp_url": "rtsp://10.52.23.132/024-VIDEO", "update_interval": 120, "latitude": -22.965117, "longitude": -43.176944, "objects": [], "identifications": []}, {"id": "001874", "name": "ESTR. DAS FURNAS, 3052 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984096, "longitude": -43.297036, "objects": [], "identifications": []}, {"id": "002219", "name": "VILAR CARIOCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.49.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914197, "longitude": -43.601278, "objects": [], "identifications": []}, {"id": "004173", "name": "R. PRAIA DA ENGENHOCA 95", "rtsp_url": "rtsp://admin:123smart@10.52.216.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82222629, "longitude": -43.17003058, "objects": [], "identifications": []}, {"id": "000568", "name": "AV. CES\u00c1RIO DE MELO X R. AUR\u00c9LIO DE FIGUEIREDO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904878, "longitude": -43.556736, "objects": [], "identifications": []}, {"id": "003622", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3401 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86794, "longitude": -43.29766, "objects": [], "identifications": []}, {"id": "001868", "name": "AV. \u00c9DISON PASSOS, 2799-2791 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956902, "longitude": -43.267726, "objects": [], "identifications": []}, {"id": "001826", "name": "RUA FRANCISCO ROSALINO 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97255, "longitude": -43.284019, "objects": [], "identifications": []}, {"id": "000475", "name": "AV. ALFREDO BALTAZAR DA SILVEIRA X R. GLAUCIO GIL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.022315, "longitude": -43.458213, "objects": [], "identifications": []}, {"id": "002292", "name": "BOSQUE MARAPENDI - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.107.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00361156, "longitude": -43.32327725, "objects": [], "identifications": []}, {"id": "000112", "name": "VIADUTO SAINT HILAIRE SA\u00cdDA DO T\u00daNEL REBOU\u00c7AS SOBRE A RUA JARDIM BOT\u00c2NICO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96029, "longitude": -43.204096, "objects": [], "identifications": []}, {"id": "001018", "name": "AV. ABELARDO BUENO, ALTURA DO N\u00ba 523", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973124, "longitude": -43.38819, "objects": [], "identifications": []}, {"id": "001652", "name": "ESTR. DO MENDANHA, 555", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.174/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88438, "longitude": -43.556973, "objects": [], "identifications": []}, {"id": "002181", "name": "PARQUE OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.7.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97325042, "longitude": -43.39349294, "objects": [], "identifications": []}, {"id": "000555", "name": "AV. DE SANTA CRUZ X R. SILVA CARDOSO", "rtsp_url": "rtsp://10.52.208.40/555-VIDEO", "update_interval": 120, "latitude": -22.875532, "longitude": -43.463503, "objects": [], "identifications": []}, {"id": "003190", "name": "AV. GLAUCIO GIL, 810 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.016739, "longitude": -43.460459, "objects": [], "identifications": []}, {"id": "003815", "name": "AV. JOAQUIM MAGALH\u00e3ES, 45 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89308631, "longitude": -43.53830732, "objects": [], "identifications": []}, {"id": "003021", "name": "CFTV COR - ESTACIONAMENTO 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91153045, "longitude": -43.20413474, "objects": [], "identifications": []}, {"id": "002084", "name": "TANQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.20.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91515076, "longitude": -43.36103633, "objects": [], "identifications": []}, {"id": "001052", "name": "R. DIAS DA CRUZ, 19 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.70/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90211073, "longitude": -43.27869533, "objects": [], "identifications": []}, {"id": "001304", "name": "PRA\u00c7A VEREADOR ROCHA LE\u00c3O, 50 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9639799, "longitude": -43.1908386, "objects": [], "identifications": []}, {"id": "002451", "name": "COL\u00d4NIA / MUSEU BISPO DO ROS\u00c1RIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.14.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94126529, "longitude": -43.39452565, "objects": [], "identifications": []}, {"id": "002136", "name": "IPASE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.21.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90449587, "longitude": -43.35689819, "objects": [], "identifications": []}, {"id": "002347", "name": "GELSON FONSECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.12.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0097288, "longitude": -43.44829135, "objects": [], "identifications": []}, {"id": "003759", "name": "RUA GOI\u00e1S X RUA GUILHERMINA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89532, "longitude": -43.30093, "objects": [], "identifications": []}, {"id": "003559", "name": "ESTR. DO CACUIA 458 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.810752, "longitude": -43.186777, "objects": [], "identifications": []}, {"id": "001338", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X BOTAFOGO - FIXA", "rtsp_url": "rtsp://10.52.34.132/", "update_interval": 120, "latitude": -22.94985646, "longitude": -43.18090093, "objects": [], "identifications": []}, {"id": "003692", "name": "AV. PASTOR MARTIN LUTHER KING JR.,11046 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.252/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82467, "longitude": -43.34936, "objects": [], "identifications": []}, {"id": "002096", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97317984, "longitude": -43.38232637, "objects": [], "identifications": []}, {"id": "004076", "name": "ESTR. DOS BANDEIRANTES, 5148 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96, "longitude": -43.38998, "objects": [], "identifications": []}, {"id": "003752", "name": "R. JOS\u00e9 DOS REIS, 1788 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881509, "longitude": -43.287155, "objects": [], "identifications": []}, {"id": "003243", "name": "ESTR. DOS BANDEIRANTES, 12877-12777 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.208/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99285195, "longitude": -43.44890552, "objects": [], "identifications": []}, {"id": "002159", "name": "OLARIA - CACIQUE DE RAMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.41.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84880418, "longitude": -43.26525872, "objects": [], "identifications": []}, {"id": "002290", "name": "TERMINAL JD. OCE\u00c2NICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00683374, "longitude": -43.3120971, "objects": [], "identifications": []}, {"id": "000321", "name": "R. PRUDENTE DE MORAIS X R. TEIXEIRA DE MELO", "rtsp_url": "rtsp://admin:cor12345@10.50.224.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985582, "longitude": -43.198693, "objects": [], "identifications": []}, {"id": "003109", "name": "ESTR. DOS BANDEIRANTES, 293.", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.51/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96076539, "longitude": -43.39278821, "objects": [], "identifications": []}, {"id": "001568", "name": "COMLURB - AV. EPIT\u00c1CIO PESSOA, 532 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981579, "longitude": -43.213477, "objects": [], "identifications": []}, {"id": "003416", "name": "ESTR. DOS BANDEIRANTES, 26325 - FIXA", "rtsp_url": "rtsp://admin:admin@10.52.210.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98179502, "longitude": -43.50613491, "objects": [], "identifications": []}, {"id": "000406", "name": "ABELARDO BUENO X R. JORGE FARAJ", "rtsp_url": "rtsp://10.50.106.6/406-VIDEO", "update_interval": 120, "latitude": -22.972959, "longitude": -43.392742, "objects": [], "identifications": []}, {"id": "003517", "name": "ESTR. DOS BANDEIRANTES, 8462 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.70/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971562, "longitude": -43.413988, "objects": [], "identifications": []}, {"id": "003119", "name": "R. URUGUAI, 260", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92847128, "longitude": -43.24379595, "objects": [], "identifications": []}, {"id": "003516", "name": "ESTR. DOS BANDEIRANTES, 10567-10561 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.69/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985021, "longitude": -43.426894, "objects": [], "identifications": []}, {"id": "003174", "name": "AV. SALVADOR ALLENDE, 2", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.967469, "longitude": -43.397707, "objects": [], "identifications": []}, {"id": "003166", "name": "AV. SALVADOR ALLENDE X AV. EMBAIXADOR ABELARDO BUENO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970809, "longitude": -43.400544, "objects": [], "identifications": []}, {"id": "002303", "name": "RIVIERA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.104.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00027454, "longitude": -43.34192265, "objects": [], "identifications": []}, {"id": "003571", "name": "PRAIA DA BANDEIRA, 726-728", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.123/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8044594, "longitude": -43.17912073, "objects": [], "identifications": []}, {"id": "002168", "name": "AEROPORTO DE JACAREPAGUA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.3.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98934218, "longitude": -43.36579346, "objects": [], "identifications": []}, {"id": "001825", "name": "ESTR. DAS FURNAS, 915-803 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970872, "longitude": -43.282745, "objects": [], "identifications": []}, {"id": "001463", "name": "CFTV COR - FACHADA COR 1 - EXTENS\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911278, "longitude": -43.203594, "objects": [], "identifications": []}, {"id": "003101", "name": "R. SUSSEKIND DE MENDON\u00c7A, 163.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.810935, "longitude": -43.339436, "objects": [], "identifications": []}, {"id": "003428", "name": "ESTR. DOS BANDEIRANTES, 24131 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976492, "longitude": -43.494036, "objects": [], "identifications": []}, {"id": "001176", "name": "AV. ATL\u00c2NTICA X AV. PRINCESA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96506146, "longitude": -43.17342706, "objects": [], "identifications": []}, {"id": "002470", "name": "TERMINAL RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.1.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00850918, "longitude": -43.44065704, "objects": [], "identifications": []}, {"id": "002482", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88468634, "longitude": -43.39933422, "objects": [], "identifications": []}, {"id": "001467", "name": "R. BACAIRIS X R. APIAC\u00c1S - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92106381, "longitude": -43.37164986, "objects": [], "identifications": []}, {"id": "003308", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.175/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978972, "longitude": -43.230064, "objects": [], "identifications": []}, {"id": "000654", "name": "AV. L\u00daCIO COSTA 3100", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01150157, "longitude": -43.32520277, "objects": [], "identifications": []}, {"id": "003475", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91215247, "longitude": -43.25217358, "objects": [], "identifications": []}, {"id": "003597", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X ESTR. CEL. VIEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.850445, "longitude": -43.318389, "objects": [], "identifications": []}, {"id": "003486", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90903705, "longitude": -43.25590322, "objects": [], "identifications": []}, {"id": "003513", "name": "ESTR. DOS BANDEIRANTES, 9860-9890 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.66/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982836, "longitude": -43.424606, "objects": [], "identifications": []}, {"id": "001050", "name": "R. CAROLINA MEIER, 26 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90185542, "longitude": -43.27634267, "objects": [], "identifications": []}, {"id": "002063", "name": "VAZ LOBO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.30.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85645305, "longitude": -43.3278757, "objects": [], "identifications": []}, {"id": "003197", "name": "AV. GLAUCIO GIL, 595 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.173/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.019627, "longitude": -43.459291, "objects": [], "identifications": []}, {"id": "002343", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00809197, "longitude": -43.44197403, "objects": [], "identifications": []}, {"id": "001306", "name": "AV. GENARO DE CARVALHO X R. JOAQUIM JOSE COUTO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01364, "longitude": -43.446577, "objects": [], "identifications": []}, {"id": "001029", "name": "R. ARISTIDES CAIRE X R. SANTA F\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8996745, "longitude": -43.27816514, "objects": [], "identifications": []}, {"id": "003670", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 8395 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.233/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.843126, "longitude": -43.333574, "objects": [], "identifications": []}, {"id": "001548", "name": "AV. DOM H\u00c9LDER C\u00c2MARA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.884915, "longitude": -43.277962, "objects": [], "identifications": []}, {"id": "001598", "name": "SUB DO VIADUTO SAO SEBASTIAO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90887, "longitude": -43.196781, "objects": [], "identifications": []}, {"id": "001900", "name": "ESTR. DO MENDANHA, 2696 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.867893, "longitude": -43.553756, "objects": [], "identifications": []}, {"id": "001282", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98038817, "longitude": -43.18924483, "objects": [], "identifications": []}, {"id": "000101", "name": "AV. 31 DE MAR\u00c7O ALTURA DA AV. PRESIDENTE VARGAS", "rtsp_url": "rtsp://10.52.20.13/101-VIDEO", "update_interval": 120, "latitude": -22.90751594, "longitude": -43.1971245, "objects": [], "identifications": []}, {"id": "003020", "name": "CFTV COR - ESTACIONAMENTO 1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91165522, "longitude": -43.20386116, "objects": [], "identifications": []}, {"id": "002206", "name": "31 DE OUTUBRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.43.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918224, "longitude": -43.639028, "objects": [], "identifications": []}, {"id": "004116", "name": "ESTR. DO MENDANHA, 3053-3011 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.866843, "longitude": -43.552967, "objects": [], "identifications": []}, {"id": "003415", "name": "ESTR. DOS BANDEIRANTES, 26325 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981787, "longitude": -43.506265, "objects": [], "identifications": []}, {"id": "003325", "name": "RUA CAMBA\u00faBA, 1135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8138271, "longitude": -43.2067662, "objects": [], "identifications": []}, {"id": "002205", "name": "31 DE OUTUBRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.43.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918411, "longitude": -43.639257, "objects": [], "identifications": []}, {"id": "003800", "name": "RUA VISCONDE DO RIO BRANCO X RUA DO LAVRADIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.137/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90785152, "longitude": -43.18407254, "objects": [], "identifications": []}, {"id": "003383", "name": "ESTR. DOS BANDEIRANTES, 12833-12817 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.207/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992514, "longitude": -43.446726, "objects": [], "identifications": []}, {"id": "003993", "name": "ESTR. DOS BANDEIRANTES, 24051 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981798, "longitude": -43.490435, "objects": [], "identifications": []}, {"id": "001416", "name": "AV. NIEMEYER 88 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990624, "longitude": -43.230661, "objects": [], "identifications": []}, {"id": "000611", "name": "IPERJ", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901878, "longitude": -43.182273, "objects": [], "identifications": []}, {"id": "002210", "name": "JULIA MIGUEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.45.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915645, "longitude": -43.627563, "objects": [], "identifications": []}, {"id": "001462", "name": "AV. ARMANDO LOMBARDI 505 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00706291, "longitude": -43.30989176, "objects": [], "identifications": []}, {"id": "004025", "name": "AV. BRASIL, ALT. BRT IGREJINHA", "rtsp_url": "rtsp://admin:123smart@10.52.32.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88919907, "longitude": -43.2202299, "objects": [], "identifications": []}, {"id": "003696", "name": "AV. ATL\u00e2NTICA X R. RODOLFO DANTAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96749614, "longitude": -43.17836992, "objects": [], "identifications": []}, {"id": "002276", "name": "TERMINAL CAMPO GRANDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.56.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90176338, "longitude": -43.55502286, "objects": [], "identifications": []}, {"id": "004105", "name": "PRA\u00e7A CARDEAL ARCOVERDE, 190", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964632, "longitude": -43.180141, "objects": [], "identifications": []}, {"id": "002357", "name": "BENVINDO DE NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.15.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0143766, "longitude": -43.46667524, "objects": [], "identifications": []}, {"id": "003259", "name": "AV. PEDRO II, 111", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902786, "longitude": -43.213196, "objects": [], "identifications": []}, {"id": "003135", "name": "AV. ARMANDO LOMBARDI 505.", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.58/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00726501, "longitude": -43.30978801, "objects": [], "identifications": []}, {"id": "002425", "name": "ASA BRANCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.11.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9634997, "longitude": -43.39397693, "objects": [], "identifications": []}, {"id": "000737", "name": "AV. P. MARTIN LUTHER KING JR. X LARGO DO VICENTE DE CARVALHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.853136, "longitude": -43.314891, "objects": [], "identifications": []}, {"id": "004065", "name": "AV. BRASIL, ALT. BRT INTO - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.30.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8960872, "longitude": -43.21459896, "objects": [], "identifications": []}, {"id": "001853", "name": "ESTR. DAS FURNAS, 3805 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.209.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981653, "longitude": -43.300375, "objects": [], "identifications": []}, {"id": "002521", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87779309, "longitude": -43.33669974, "objects": [], "identifications": []}, {"id": "001622", "name": "RUA DA LAPA, 1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915299, "longitude": -43.177856, "objects": [], "identifications": []}, {"id": "000159", "name": "ESTR. DO MENDANHA X LGO. DA MA\u00c7ONARIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.888427, "longitude": -43.559933, "objects": [], "identifications": []}, {"id": "003808", "name": "MONUMENTO DOM JO\u00c3O VI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90229465, "longitude": -43.17296049, "objects": [], "identifications": []}, {"id": "002074", "name": "DIVINA PROVIDENCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.14.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94099835, "longitude": -43.37257718, "objects": [], "identifications": []}, {"id": "001439", "name": "AV. NIEMEYER 749 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00003674, "longitude": -43.24312146, "objects": [], "identifications": []}, {"id": "000527", "name": "ESTR. DO TINDIBA X ESTR. MERINGUAVA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914672, "longitude": -43.380836, "objects": [], "identifications": []}, {"id": "001858", "name": "ESTR. DAS FURNAS, 3929-3995 - ITANHANG\u00c1", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98230635, "longitude": -43.29988018, "objects": [], "identifications": []}, {"id": "002375", "name": "PONTAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.23.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01638744, "longitude": -43.51568579, "objects": [], "identifications": []}, {"id": "002122", "name": "RECANTO DAS PALMEIRAS - JARDIM SAO LUIZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.13.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94803135, "longitude": -43.37229189, "objects": [], "identifications": []}, {"id": "001643", "name": "R. RIACHUELO X R. MONTE ALEGRE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914959, "longitude": -43.187317, "objects": [], "identifications": []}, {"id": "001421", "name": "AV. NIEMEYER 126 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99102, "longitude": -43.232505, "objects": [], "identifications": []}, {"id": "003494", "name": "R. TERESA CRISTINA, 62", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.47/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918241, "longitude": -43.68486803, "objects": [], "identifications": []}, {"id": "002420", "name": "MINHA PRAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.10.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96653011, "longitude": -43.39678355, "objects": [], "identifications": []}, {"id": "000080", "name": "AV. MARECHAL RONDOM X R. BAR\u00c3O DO BOM RETIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.905136, "longitude": -43.269896, "objects": [], "identifications": []}, {"id": "003851", "name": "ESTR. DOS BANDEIRANTES, 25422-25636 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.39/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97936465, "longitude": -43.50489199, "objects": [], "identifications": []}, {"id": "001606", "name": "AV. GOMES FREIRE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91082, "longitude": -43.184071, "objects": [], "identifications": []}, {"id": "001342", "name": "PRA\u00c7A EUG\u00caNIO JARDIM - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.216/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97659631, "longitude": -43.19378383, "objects": [], "identifications": []}, {"id": "001219", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96284882, "longitude": -43.1670938, "objects": [], "identifications": []}, {"id": "003763", "name": "R. GUILHERMINA, 239 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89295012, "longitude": -43.30100837, "objects": [], "identifications": []}, {"id": "004206", "name": "TERMINAL RODOVI\u00e1RIO NOSSA SRA. DO AMPARO, 80", "rtsp_url": "rtsp://admin:123smart@10.52.216.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88109934, "longitude": -43.32522372, "objects": [], "identifications": []}, {"id": "002526", "name": "OTAVIANO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.28.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86585571, "longitude": -43.33431098, "objects": [], "identifications": []}, {"id": "001906", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES , 1762 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.884315, "longitude": -43.569696, "objects": [], "identifications": []}, {"id": "003645", "name": "ESTR. VELHA DA PAVUNA, 4982 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86573, "longitude": -43.30402, "objects": [], "identifications": []}, {"id": "000261", "name": "R. VOLUNT\u00c1RIOS DA P\u00c1TRIA X R. DONA MARIANA", "rtsp_url": "rtsp://admin:admin@10.52.13.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953172, "longitude": -43.188536, "objects": [], "identifications": []}, {"id": "003241", "name": "ESTR. DOS BANDEIRANTES X ESTR. BENVINDO DE NOVAES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99264709, "longitude": -43.44712635, "objects": [], "identifications": []}, {"id": "002001", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012462, "longitude": -43.458615, "objects": [], "identifications": []}, {"id": "003657", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 8046 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.843981, "longitude": -43.330452, "objects": [], "identifications": []}, {"id": "003354", "name": "RUA JOS\u00e9 DUARTE, 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.178/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982997, "longitude": -43.46928, "objects": [], "identifications": []}, {"id": "001563", "name": "COMLURB - AV. AYRTON SENNA, 2001 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.53/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992821, "longitude": -43.366264, "objects": [], "identifications": []}, {"id": "003251", "name": "R. BAR\u00e3O DE MESQUITA, SHOPPING TIJUCA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92347214, "longitude": -43.23523738, "objects": [], "identifications": []}, {"id": "003120", "name": "ESTR. CEL. PEDRO CORR\u00caA, 232 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96167, "longitude": -43.390449, "objects": [], "identifications": []}, {"id": "000329", "name": "AUTO ESTR. LAGOA-BARRA X ALT. G\u00c1VEA GOLF CLUBE", "rtsp_url": "rtsp://admin:admin@10.50.106.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99784444, "longitude": -43.26550927, "objects": [], "identifications": []}, {"id": "004114", "name": "R. COXILHA X R. CAMPO GRANDE", "rtsp_url": "rtsp://admin:123smart@10.52.216.77/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904451, "longitude": -43.573627, "objects": [], "identifications": []}, {"id": "002380", "name": "ILHA DE GUARATIBA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.24.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0096797, "longitude": -43.53956003, "objects": [], "identifications": []}, {"id": "002023", "name": "CARDOSO DE MORAES - VI\u00daVA GARCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.42.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.857512, "longitude": -43.25779, "objects": [], "identifications": []}, {"id": "001873", "name": "ESTR. DAS FURNAS, 3050 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984007, "longitude": -43.296605, "objects": [], "identifications": []}, {"id": "001570", "name": "R. JO\u00c3O VICENTE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.861175, "longitude": -43.371214, "objects": [], "identifications": []}, {"id": "003369", "name": "ESTR. DOS BANDEIRANTES, 14172-14254 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986295, "longitude": -43.457426, "objects": [], "identifications": []}, {"id": "002362", "name": "GILKA MACHADO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.17.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01716032, "longitude": -43.47732542, "objects": [], "identifications": []}, {"id": "001012", "name": "R. DAS OFICINAS X R. JOS\u00c9 DOS REIS", "rtsp_url": "rtsp://10.52.210.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89051043, "longitude": -43.29425698, "objects": [], "identifications": []}, {"id": "002061", "name": "VAZ LOBO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.30.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85646674, "longitude": -43.32815793, "objects": [], "identifications": []}, {"id": "002260", "name": "COSMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.47.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915669, "longitude": -43.616059, "objects": [], "identifications": []}, {"id": "004204", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 10238 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88178386, "longitude": -43.3254544, "objects": [], "identifications": []}, {"id": "002262", "name": "RECANTO DAS GAR\u00c7AS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.20.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.021024, "longitude": -43.496661, "objects": [], "identifications": []}, {"id": "001418", "name": "AV. NIEMEYER 683 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99087, "longitude": -43.231765, "objects": [], "identifications": []}, {"id": "001130", "name": "R. SANTANA X R. FREI CANECA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91128841, "longitude": -43.19353875, "objects": [], "identifications": []}, {"id": "001448", "name": "AV. NIEMEYER PARQUE NATURAL MUNICIPAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99861396, "longitude": -43.25374057, "objects": [], "identifications": []}, {"id": "001915", "name": "ESTRADA RIO S\u00c3O PAULO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890614, "longitude": -43.565622, "objects": [], "identifications": []}, {"id": "003270", "name": "RUA ANT\u00f4NIO BAS\u00edLIO X RUA CONDE DE ITAGUA\u00ed - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92702683, "longitude": -43.23786808, "objects": [], "identifications": []}, {"id": "004179", "name": "R. IPIRU, 815", "rtsp_url": "rtsp://admin:123smart@10.52.216.96/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81961685, "longitude": -43.19189575, "objects": [], "identifications": []}, {"id": "003570", "name": "PARQUE POETA MANUEL BANDEIRA, S/N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.122/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80368271, "longitude": -43.1790265, "objects": [], "identifications": []}, {"id": "001769", "name": "AV. \u00c9DISON PASSOS, 4150 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.959186, "longitude": -43.26799, "objects": [], "identifications": []}, {"id": "001635", "name": "AV. BRASIL, 418 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8873285, "longitude": -43.22437685, "objects": [], "identifications": []}, {"id": "002166", "name": "VIA PARQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.4.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98367355, "longitude": -43.36566043, "objects": [], "identifications": []}, {"id": "004152", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85405823, "longitude": -43.38383043, "objects": [], "identifications": []}, {"id": "003613", "name": "ESTR. DOS TR\u00eaS RIOS, 873-697 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.937295, "longitude": -43.336612, "objects": [], "identifications": []}, {"id": "001661", "name": "AV. REI PEL\u00c9, 13 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9102784, "longitude": -43.23244921, "objects": [], "identifications": []}, {"id": "002534", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83949707, "longitude": -43.23991608, "objects": [], "identifications": []}, {"id": "000446", "name": "AV. SARGENTO DE MIL\u00cdCIAS X R. SARGENTO FERNANDES FONTES", "rtsp_url": "rtsp://admin:admin@10.52.210.52/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.805722, "longitude": -43.366053, "objects": [], "identifications": []}, {"id": "003137", "name": "ESTRADA RIO D\u00b4OURO, S/N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.806369, "longitude": -43.34361, "objects": [], "identifications": []}, {"id": "001064", "name": "ESTR. DE JACAREPAGU\u00c1 X ESTR.DO ENGENHO D\u00c1GUA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95514142, "longitude": -43.3372814, "objects": [], "identifications": []}, {"id": "001247", "name": "R. CONSTANTE RAMOS X AV. ATL\u00c2NTICA - FIXA", "rtsp_url": "rtsp://10.52.252.90/", "update_interval": 120, "latitude": -22.974865, "longitude": -43.187477, "objects": [], "identifications": []}, {"id": "002037", "name": "PASTOR JOS\u00c9 SANTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.37.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839275, "longitude": -43.283045, "objects": [], "identifications": []}, {"id": "002164", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83950701, "longitude": -43.23942259, "objects": [], "identifications": []}, {"id": "002156", "name": "IBIAPINA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.40.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84238043, "longitude": -43.27282892, "objects": [], "identifications": []}, {"id": "001069", "name": "ESTR. DOS TR\u00caS RIOS X R. CMTE RUBENS SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93733752, "longitude": -43.33727132, "objects": [], "identifications": []}, {"id": "003314", "name": "RUA CAMBA\u00faBA, 1664", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.118/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8173098, "longitude": -43.2029786, "objects": [], "identifications": []}, {"id": "002413", "name": "RIOCENTRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.6.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97726681, "longitude": -43.40664837, "objects": [], "identifications": []}, {"id": "002506", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00150085, "longitude": -43.36679535, "objects": [], "identifications": []}, {"id": "001979", "name": "ESTR. VER. ALCEU DE CARVALHO, S/N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012254, "longitude": -43.4930573, "objects": [], "identifications": []}, {"id": "002283", "name": "CURRAL FALSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.32.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93654645, "longitude": -43.66693949, "objects": [], "identifications": []}, {"id": "002439", "name": "PE. JO\u00c3O CRIBBIN / MARECHAL MALLET - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.19.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87624, "longitude": -43.40513, "objects": [], "identifications": []}, {"id": "002277", "name": "NOVA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.16.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01573476, "longitude": -43.47177814, "objects": [], "identifications": []}, {"id": "000420", "name": "RUA BENTO CARDOSO X RUA IRAPUA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.156/sub", "update_interval": 120, "latitude": -22.8360719, "longitude": -43.2883229, "objects": [], "identifications": []}, {"id": "003427", "name": "ESTR. DOS BANDEIRANTES, 24131 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976666, "longitude": -43.493969, "objects": [], "identifications": []}, {"id": "004231", "name": "AV. PEDRO II, 187 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.30.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90372046, "longitude": -43.21500318, "objects": [], "identifications": []}, {"id": "002048", "name": "PEDRO TAQUES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.34.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841654, "longitude": -43.299033, "objects": [], "identifications": []}, {"id": "002109", "name": "CURICICA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.9.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95983347, "longitude": -43.38837513, "objects": [], "identifications": []}, {"id": "003680", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR , ALT. SHOP. NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87977851, "longitude": -43.27031325, "objects": [], "identifications": []}, {"id": "003387", "name": "ESTR. DOS BANDEIRANTES, 12310 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.211/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990133, "longitude": -43.443091, "objects": [], "identifications": []}, {"id": "000207", "name": "R. M\u00c9XICO X AV. NILO PE\u00c7ANHA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906449, "longitude": -43.176181, "objects": [], "identifications": []}, {"id": "001303", "name": "PRA\u00e7A VEREADOR ROCHA LE\u00e3O, 50 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9646571, "longitude": -43.19073872, "objects": [], "identifications": []}, {"id": "003202", "name": "AV. GLAUCIO GIL, 374 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.178/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.021422, "longitude": -43.458615, "objects": [], "identifications": []}, {"id": "000442", "name": "AV. VICENTE DE CARVALHO X AV. MERITI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.151/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.850397, "longitude": -43.309662, "objects": [], "identifications": []}, {"id": "003596", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 6400", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.851014, "longitude": -43.317227, "objects": [], "identifications": []}, {"id": "001337", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X BOTAFOGO - FIXA", "rtsp_url": "rtsp://10.52.34.136/", "update_interval": 120, "latitude": -22.94960206, "longitude": -43.18092373, "objects": [], "identifications": []}, {"id": "000315", "name": "R. DA GL\u00d3RIA X R. BENJAMIM CONSTANT", "rtsp_url": "rtsp://admin:admin@10.52.20.170/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920482, "longitude": -43.177031, "objects": [], "identifications": []}, {"id": "001294", "name": "AV. LUCIO COSTA X R. GLAUCIO GIL - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.209.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02499642, "longitude": -43.45724986, "objects": [], "identifications": []}, {"id": "004123", "name": "AV. NIEMEYER, 121", "rtsp_url": "rtsp://admin:123smart@10.52.37.207/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992, "longitude": -43.233611, "objects": [], "identifications": []}, {"id": "001004", "name": "AV. NIEMEYER PROX. HOTEL NACIONAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.171/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9984795, "longitude": -43.25618078, "objects": [], "identifications": []}, {"id": "000132", "name": "AV. DAS AM\u00c9RICAS X AV. AYRTON SENNA - CEBOL\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00016481, "longitude": -43.36935058, "objects": [], "identifications": []}, {"id": "002032", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841944, "longitude": -43.277021, "objects": [], "identifications": []}, {"id": "001654", "name": "R. DO CATETE, 347", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931502, "longitude": -43.177558, "objects": [], "identifications": []}, {"id": "002278", "name": "NOVA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.16.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01556316, "longitude": -43.4711079, "objects": [], "identifications": []}, {"id": "001740", "name": "AV. \u00c9DISON PASSOS, 2261", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954463, "longitude": -43.264193, "objects": [], "identifications": []}, {"id": "002423", "name": "ASA BRANCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.11.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96310579, "longitude": -43.39363021, "objects": [], "identifications": []}, {"id": "000001", "name": "AV. PRES. VARGAS X RUA 1\u00ba DE MAR\u00c7O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.900259, "longitude": -43.177031, "objects": [], "identifications": []}, {"id": "003708", "name": "R. DOMINGUES LOPES X R. QUAXIMA - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.208.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.878911, "longitude": -43.341199, "objects": [], "identifications": []}, {"id": "002344", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00821541, "longitude": -43.4425212, "objects": [], "identifications": []}, {"id": "001410", "name": "PRA\u00c7A SIBELIUS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97887277, "longitude": -43.22896537, "objects": [], "identifications": []}, {"id": "002158", "name": "IBIAPINA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.40.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84256548, "longitude": -43.27224424, "objects": [], "identifications": []}, {"id": "000181", "name": "AV. CHILE X R. DO LAVRADIO", "rtsp_url": "rtsp://admin:admin@10.52.18.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910088, "longitude": -43.183019, "objects": [], "identifications": []}, {"id": "000030", "name": "RUA RAUL POMP\u00c9IA X RUA FRANCISCO OTAVIANO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986985, "longitude": -43.190727, "objects": [], "identifications": []}, {"id": "001445", "name": "AV. NIEMEYER, 393 - S\u00c3O CONRADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9994, "longitude": -43.24781, "objects": [], "identifications": []}, {"id": "004019", "name": "ESTR. DOS BANDEIRANTES, 1296 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934661, "longitude": -43.372361, "objects": [], "identifications": []}, {"id": "001753", "name": "AV. \u00c9DISON PASSOS, 3132 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956896, "longitude": -43.266799, "objects": [], "identifications": []}, {"id": "002323", "name": "AM\u00c9RICAS PARK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.4.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00042668, "longitude": -43.38978219, "objects": [], "identifications": []}, {"id": "002212", "name": "JULIA MIGUEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.45.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915622, "longitude": -43.627952, "objects": [], "identifications": []}, {"id": "002170", "name": "AEROPORTO DE JACAREPAGUA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.3.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9890178, "longitude": -43.36577965, "objects": [], "identifications": []}, {"id": "001773", "name": "AV. \u00c9DISON PASSOS, 4272 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96044798, "longitude": -43.27023367, "objects": [], "identifications": []}, {"id": "002069", "name": "SANTA EFIGENIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.15.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93695341, "longitude": -43.37187016, "objects": [], "identifications": []}, {"id": "004132", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85347876, "longitude": -43.38441931, "objects": [], "identifications": []}, {"id": "003661", "name": "ESTRADA DO COLEGIO 57 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842359, "longitude": -43.334886, "objects": [], "identifications": []}, {"id": "003780", "name": "PASSARELA ENGENH\u00e3O - PORT\u00e3O ALA SUL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.75/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89506179, "longitude": -43.29296365, "objects": [], "identifications": []}, {"id": "000012", "name": "RUA DAS LARANJEIRAS X RUA SOARES CABRAL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93456, "longitude": -43.187492, "objects": [], "identifications": []}, {"id": "002139", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89816719, "longitude": -43.35272047, "objects": [], "identifications": []}, {"id": "004202", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 10142", "rtsp_url": "rtsp://admin:123smart@10.52.216.115/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88199093, "longitude": -43.32481791, "objects": [], "identifications": []}, {"id": "000757", "name": "R. CONDE DE BONFIM 305 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923262, "longitude": -43.231088, "objects": [], "identifications": []}, {"id": "003142", "name": "R. FRANCISCO DE PAULA, 71.", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968276, "longitude": -43.394788, "objects": [], "identifications": []}, {"id": "000286", "name": "AV. N. SRA. DE COPACABANA X R. PRADO JUNIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964232, "longitude": -43.17495, "objects": [], "identifications": []}, {"id": "002321", "name": "AM\u00c9RICAS PARK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.4.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00044932, "longitude": -43.39006663, "objects": [], "identifications": []}, {"id": "002062", "name": "VAZ LOBO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.30.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85658616, "longitude": -43.32841881, "objects": [], "identifications": []}, {"id": "001841", "name": "ESTR. DAS FURNAS, 2922 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.57/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98130648, "longitude": -43.29449188, "objects": [], "identifications": []}, {"id": "001030", "name": "R. 24 DE MAIO X R. C\u00d4NEGO TOBIAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.69/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90227805, "longitude": -43.27763871, "objects": [], "identifications": []}, {"id": "001278", "name": "AV. ATL\u00c2NTICA, 3530 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97968338, "longitude": -43.18909635, "objects": [], "identifications": []}, {"id": "002496", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97196874, "longitude": -43.40056646, "objects": [], "identifications": []}, {"id": "000873", "name": "AV. \u00c9RICO VER\u00cdSSIMO X RUA FERNANDO DE MATTOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01142234, "longitude": -43.30971037, "objects": [], "identifications": []}, {"id": "003977", "name": "RUA CONDE DE BONFIM, 1301 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.196/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.945313, "longitude": -43.254429, "objects": [], "identifications": []}, {"id": "000049", "name": "RUA BARATA RIBEIRO X RUA SIQUEIRA CAMPOS", "rtsp_url": "rtsp://10.52.39.135/049-VIDEO", "update_interval": 120, "latitude": -22.968321, "longitude": -43.185329, "objects": [], "identifications": []}, {"id": "000415", "name": "R. CARDOSO DE MORAES X R. TEIXEIRA DE CASTRO X R. BONSUCESSO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.47/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86275, "longitude": -43.253951, "objects": [], "identifications": []}, {"id": "000115", "name": "AV. BORGES DE MEDEIROS ALTURA DA R. GAL. GARZON", "rtsp_url": "rtsp://10.52.11.18/115-VIDEO", "update_interval": 120, "latitude": -22.96773141, "longitude": -43.21745192, "objects": [], "identifications": []}, {"id": "004178", "name": "ESTR. DO RIO JEQUI\u00e1, 2167 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81659179, "longitude": -43.18691002, "objects": [], "identifications": []}, {"id": "000026", "name": "AV. ATL\u00c2NTICA X RUA FIGUEIREDO DE MAGALH\u00c3ES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971867, "longitude": -43.184628, "objects": [], "identifications": []}, {"id": "002245", "name": "PREFEITO ALIM PEDRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.57.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90363623, "longitude": -43.56610844, "objects": [], "identifications": []}, {"id": "002015", "name": "SANTA LUZIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.43.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.855054, "longitude": -43.252503, "objects": [], "identifications": []}, {"id": "001866", "name": "ESTR. DAS FURNAS, 4234-4438 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986022, "longitude": -43.300499, "objects": [], "identifications": []}, {"id": "001233", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962656, "longitude": -43.164759, "objects": [], "identifications": []}, {"id": "001250", "name": "AV. ATL\u00c2NTICA X R. SANTA CLARA, POSTO BR - FIXA", "rtsp_url": "rtsp://10.52.252.86/", "update_interval": 120, "latitude": -22.973831, "longitude": -43.186387, "objects": [], "identifications": []}, {"id": "004122", "name": "RUA S\u00e3O CLEMENTE, 345", "rtsp_url": "rtsp://admin:123smart@10.52.11.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9512505, "longitude": -43.1938351, "objects": [], "identifications": []}, {"id": "003831", "name": "AV. PASTEUR X R. RAMON FRANCO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95442034, "longitude": -43.16750941, "objects": [], "identifications": []}, {"id": "002099", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973165, "longitude": -43.38330535, "objects": [], "identifications": []}, {"id": "001552", "name": "ESTR. DO MONTEIRO (ENTRE ESTR. DA CAMBOTA E ESTR. IARAQU\u00c3) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920731, "longitude": -43.56299, "objects": [], "identifications": []}, {"id": "002376", "name": "PONTAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.23.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01623563, "longitude": -43.51628473, "objects": [], "identifications": []}, {"id": "001132", "name": "R. MEM DE S\u00c1 X R. DE SANTANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91105458, "longitude": -43.19264235, "objects": [], "identifications": []}, {"id": "003562", "name": "ESTR. VISC. DE LAMARE, 657", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.115/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81145373, "longitude": -43.18390909, "objects": [], "identifications": []}, {"id": "004110", "name": "R. DOM PEDRITO, 158 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90359653, "longitude": -43.57273545, "objects": [], "identifications": []}, {"id": "001720", "name": "R. ARIPUA, 316 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8437861, "longitude": -43.4010439, "objects": [], "identifications": []}, {"id": "000086", "name": "R. DIAS DA CRUZ X R. MARANH\u00c3O", "rtsp_url": "rtsp://10.52.210.126/086-VIDEO", "update_interval": 120, "latitude": -22.905236, "longitude": -43.292852, "objects": [], "identifications": []}, {"id": "000544", "name": "R. MIN. ARY FRANCO X R. SUL AM\u00c9RICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.873594, "longitude": -43.464871, "objects": [], "identifications": []}, {"id": "002302", "name": "AFR\u00c2NIO COSTA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.105.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00062225, "longitude": -43.33478441, "objects": [], "identifications": []}, {"id": "001270", "name": "AV. LUCIO COSTA X AV. DO CONTORNO (FINAL DO ECO ORLA) - FIXA", "rtsp_url": "rtsp://10.52.209.124/", "update_interval": 120, "latitude": -23.02232147, "longitude": -43.44743189, "objects": [], "identifications": []}, {"id": "002132", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92479485, "longitude": -43.37371506, "objects": [], "identifications": []}, {"id": "002239", "name": "PARQUE ESPERAN\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.54.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90690245, "longitude": -43.57163307, "objects": [], "identifications": []}, {"id": "001235", "name": "AV. ATL\u00c2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://10.52.252.99/", "update_interval": 120, "latitude": -22.977042, "longitude": -43.18836, "objects": [], "identifications": []}, {"id": "000186", "name": "R. ENG. MARIO DE CARVALHO X R. LUIZA DE CARVALHO - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852568, "longitude": -43.319641, "objects": [], "identifications": []}, {"id": "003636", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 126 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.875123, "longitude": -43.281622, "objects": [], "identifications": []}, {"id": "001832", "name": "ESTR. CAP. CAMPOS, 29 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979525, "longitude": -43.292667, "objects": [], "identifications": []}, {"id": "001645", "name": "RUA VOLUNT\u00c1RIOS DA P\u00c1TRIA X RUA CAPIT\u00c3O SALOM\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955652, "longitude": -43.19636, "objects": [], "identifications": []}, {"id": "000355", "name": "AV. MARACAN\u00c3 X R. MAJOR \u00c1VILA", "rtsp_url": "rtsp://10.52.25.140/355-VIDEO", "update_interval": 120, "latitude": -22.919689, "longitude": -43.233926, "objects": [], "identifications": []}, {"id": "004037", "name": "ESTR. DOS BANDEIRANTES, 2856 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949265, "longitude": -43.372846, "objects": [], "identifications": []}, {"id": "004038", "name": "ESTR. DOS BANDEIRANTES, 2856 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94941319, "longitude": -43.37291573, "objects": [], "identifications": []}, {"id": "003736", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES, 323-297 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88198848, "longitude": -43.34990379, "objects": [], "identifications": []}, {"id": "001038", "name": "R. SILVA RABELO 39 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90104722, "longitude": -43.28030749, "objects": [], "identifications": []}, {"id": "002509", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00144652, "longitude": -43.36557225, "objects": [], "identifications": []}, {"id": "003835", "name": "AV. PASTEUR ALT. PRA\u00e7A GENERAL TIB\u00faRCIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95444741, "longitude": -43.16647796, "objects": [], "identifications": []}, {"id": "001558", "name": "COMLURB - R. CUBA, 364 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.829038, "longitude": -43.277315, "objects": [], "identifications": []}, {"id": "001917", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES, 745 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.202/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891957, "longitude": -43.563626, "objects": [], "identifications": []}, {"id": "000128", "name": "AV. ARMANDO LOMBARDI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00685063, "longitude": -43.31362023, "objects": [], "identifications": []}, {"id": "003457", "name": "ESTR. DOS BANDEIRANTES, 11.216- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988172, "longitude": -43.43391, "objects": [], "identifications": []}, {"id": "003133", "name": "AVENIDA ARMANDO LOMBARDI, 800.", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.56/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006362, "longitude": -43.313202, "objects": [], "identifications": []}, {"id": "001135", "name": "AV. DAS AM\u00c9RICAS X AV. AYRTON SENNA - CEBOL\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00015987, "longitude": -43.36986556, "objects": [], "identifications": []}, {"id": "001201", "name": "AV. ATL\u00c2NTICA - COPACABANA - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983351, "longitude": -43.189877, "objects": [], "identifications": []}, {"id": "003709", "name": "R. DOMINGUES LOPES X R. QUAXIMA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87904444, "longitude": -43.34125934, "objects": [], "identifications": []}, {"id": "003545", "name": "R. FORMOSA DO ZUMB\u00ed, 183", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81992481, "longitude": -43.17766444, "objects": [], "identifications": []}, {"id": "002169", "name": "AEROPORTO DE JACAREPAGUA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.3.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98872603, "longitude": -43.36579347, "objects": [], "identifications": []}, {"id": "000183", "name": "AV. PAULO DE FRONTIN X R. JOAQUIM PALHARES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.22/main", "update_interval": 120, "latitude": -22.91275047, "longitude": -43.21017212, "objects": [], "identifications": []}, {"id": "003734", "name": "AV. ERNANI CARDOSO, 154 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88218522, "longitude": -43.333207, "objects": [], "identifications": []}, {"id": "001242", "name": "AV. ATL\u00c2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://10.52.252.98/", "update_interval": 120, "latitude": -22.977031, "longitude": -43.187913, "objects": [], "identifications": []}, {"id": "004020", "name": "ESTR. DOS BANDEIRANTES, 1296 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93472151, "longitude": -43.37233686, "objects": [], "identifications": []}, {"id": "003732", "name": "AV. ERNANI CARDOSO, 190 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.222/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882353, "longitude": -43.334558, "objects": [], "identifications": []}, {"id": "001156", "name": "AV. RIO BRANCO, 4700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91414525, "longitude": -43.17467879, "objects": [], "identifications": []}, {"id": "003477", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9113792, "longitude": -43.25252361, "objects": [], "identifications": []}, {"id": "003177", "name": "AV. SALVADOR ALLENDE, 31087", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989308, "longitude": -43.416947, "objects": [], "identifications": []}, {"id": "001134", "name": "AV. BORGES DE MEDEIROS N\u00ba3709 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96290707, "longitude": -43.2063082, "objects": [], "identifications": []}, {"id": "003569", "name": "AV. PARANAPUAM, 2326 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.121/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80302183, "longitude": -43.18173504, "objects": [], "identifications": []}, {"id": "003195", "name": "ESTRADA BENVINDO DE NOVAES, 2467 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.171/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.010714, "longitude": -43.461486, "objects": [], "identifications": []}, {"id": "004059", "name": "ESTR. DO MONTEIRO, 567 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920325, "longitude": -43.563067, "objects": [], "identifications": []}, {"id": "004203", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 10142 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.116/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88202306, "longitude": -43.3247227, "objects": [], "identifications": []}, {"id": "000774", "name": "QUINTA DA BOA VISTA 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908126, "longitude": -43.221771, "objects": [], "identifications": []}, {"id": "002090", "name": "MADUREIRA-MANACEIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.26.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8766384, "longitude": -43.33570854, "objects": [], "identifications": []}, {"id": "001780", "name": "AV. \u00c9DISON PASSOS, 4490 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96047842, "longitude": -43.27282894, "objects": [], "identifications": []}, {"id": "001205", "name": "AVENIDA ATL\u00c2NTICA, 3958, EM FRENTE \u00c0, R. JULIO - FIXA", "rtsp_url": "rtsp://10.52.252.130/", "update_interval": 120, "latitude": -22.98350867, "longitude": -43.18939034, "objects": [], "identifications": []}, {"id": "002068", "name": "SANTA EFIGENIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.15.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93639206, "longitude": -43.37167409, "objects": [], "identifications": []}, {"id": "003107", "name": "PRA\u00c7A \u00caNIO, 64 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.248/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8076635, "longitude": -43.3587199, "objects": [], "identifications": []}, {"id": "001422", "name": "AV. NIEMEYER, 418 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00061131, "longitude": -43.24556316, "objects": [], "identifications": []}, {"id": "003301", "name": "ESTR. DOS BANDEIRANTES, 20732 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985117, "longitude": -43.473939, "objects": [], "identifications": []}, {"id": "000229", "name": "AV. PEDRO II X R. S\u00c3O CRIST\u00d3V\u00c3O", "rtsp_url": "rtsp://admin:admin@10.52.28.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.905056, "longitude": -43.217854, "objects": [], "identifications": []}, {"id": "000035", "name": "RUA BARATA RIBEIRO X RUA CONSTANTE RAMOS", "rtsp_url": "rtsp://admin:admin@10.52.22.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.972881, "longitude": -43.190783, "objects": [], "identifications": []}, {"id": "003281", "name": "PR. BELO JARDIM X ESTR. DO GALE\u00e3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82036566, "longitude": -43.22713689, "objects": [], "identifications": []}, {"id": "000451", "name": "AV. BR\u00c1S DE PINA X R. PE. ROSER X AV. MERITI (LARGO DO BIC\u00c3O) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839329, "longitude": -43.311646, "objects": [], "identifications": []}, {"id": "000768", "name": "AV. BRASIL X R. FRANCO DE ALMEIDA", "rtsp_url": "rtsp://admin:123smart@10.52.32.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88652, "longitude": -43.22519, "objects": [], "identifications": []}, {"id": "000225", "name": "PRA\u00c7A DA CRUZ VERMELHA", "rtsp_url": "rtsp://admin:cor123@10.52.18.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91222, "longitude": -43.188301, "objects": [], "identifications": []}, {"id": "001700", "name": "AV. \u00c9DISON PASSOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954586, "longitude": -43.264549, "objects": [], "identifications": []}, {"id": "002334", "name": "PEDRA DE ITA\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.9.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0028381, "longitude": -43.42372083, "objects": [], "identifications": []}, {"id": "003792", "name": "ESTRADA ADHEMAR BEBIANO, 4797 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86586, "longitude": -43.30188, "objects": [], "identifications": []}, {"id": "002161", "name": "OLARIA - CACIQUE DE RAMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.41.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84861779, "longitude": -43.2654647, "objects": [], "identifications": []}, {"id": "001677", "name": "ESTR. DO MENDANHA 142 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86966767, "longitude": -43.55448323, "objects": [], "identifications": []}, {"id": "003810", "name": "AV. CES\u00e1RIO DE MELO, 776 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895439, "longitude": -43.544651, "objects": [], "identifications": []}, {"id": "003235", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X PRA\u00e7A COP\u00e9RNICO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.200/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.806353, "longitude": -43.364915, "objects": [], "identifications": []}, {"id": "000732", "name": "AV. BRASIL X AV. LOBO J\u00daNIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.827076, "longitude": -43.274333, "objects": [], "identifications": []}, {"id": "004028", "name": "ESTR. DOS BANDEIRANTES, 2508 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94611973, "longitude": -43.37201321, "objects": [], "identifications": []}, {"id": "003345", "name": "RUA CAMBA\u00faBA 6", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.808138, "longitude": -43.207306, "objects": [], "identifications": []}, {"id": "001640", "name": "AV. ARMANDO LOMBARDI, N. 800 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.85/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006262, "longitude": -43.313202, "objects": [], "identifications": []}, {"id": "003666", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 9702 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.836304, "longitude": -43.339324, "objects": [], "identifications": []}, {"id": "001775", "name": "ESTR. VELHA DA TIJUCA, 2400-2424 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96018739, "longitude": -43.27125237, "objects": [], "identifications": []}, {"id": "002530", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83889643, "longitude": -43.23992951, "objects": [], "identifications": []}, {"id": "003360", "name": "ESTR. DOS BANDEIRANTES, 14914 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.184/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982854, "longitude": -43.462664, "objects": [], "identifications": []}, {"id": "003764", "name": "RUA GOI\u00e1S X RUA SILVANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.233/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892656, "longitude": -43.306341, "objects": [], "identifications": []}, {"id": "003294", "name": "ESTR. DOS BANDEIRANTES, 21717 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987888, "longitude": -43.481604, "objects": [], "identifications": []}, {"id": "002486", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88381897, "longitude": -43.39943478, "objects": [], "identifications": []}, {"id": "002428", "name": "MAGALH\u00c3ES BASTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.20.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86832751, "longitude": -43.41340843, "objects": [], "identifications": []}, {"id": "003159", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.136/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96220281, "longitude": -43.19116781, "objects": [], "identifications": []}, {"id": "001114", "name": "MONUMENTO PORT\u00c3O DA QUINTA DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9044747, "longitude": -43.22063443, "objects": [], "identifications": []}, {"id": "000046", "name": "RUA VOLUNT\u00c1RIOS DA P\u00c1TRIA X RUA PRAIA DE BOTAFOGO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950509, "longitude": -43.181605, "objects": [], "identifications": []}, {"id": "004262", "name": "RUA PINTO DE AZEVEDO, 190 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.245.49/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91185076, "longitude": -43.20410896, "objects": [], "identifications": []}, {"id": "002254", "name": "PARQUE DAS ROSAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.102.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000094, "longitude": -43.352628, "objects": [], "identifications": []}, {"id": "000192", "name": "R. CANDIDO BENICIO X BRT IPASE", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90394379, "longitude": -43.35652741, "objects": [], "identifications": []}, {"id": "001607", "name": "AV. GOMES FREIRE, 615- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911472, "longitude": -43.183563, "objects": [], "identifications": []}, {"id": "001305", "name": "PRA\u00c7A VEREADOR ROCHA LE\u00c3O, N 88 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9641182, "longitude": -43.19091906, "objects": [], "identifications": []}, {"id": "000206", "name": "R. BELA X CAMPO DE S\u00c3O CRIST\u00d3V\u00c3O (EMBAIXO DA LINHA VERMELHA)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.16/sub", "update_interval": 120, "latitude": -22.895548, "longitude": -43.219326, "objects": [], "identifications": []}, {"id": "003371", "name": "ESTR. DOS BANDEIRANTES, 14040 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987146, "longitude": -43.456313, "objects": [], "identifications": []}, {"id": "003376", "name": "ESTR. DOS BANDEIRANTES, 13787 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98894827, "longitude": -43.45402382, "objects": [], "identifications": []}, {"id": "001021", "name": "DRUMMOND 02 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98461975, "longitude": -43.18941576, "objects": [], "identifications": []}, {"id": "002294", "name": "BOSQUE MARAPENDI - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.107.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00385247, "longitude": -43.32281239, "objects": [], "identifications": []}, {"id": "001597", "name": "RETORNO VIADUTO 31 DE MAR\u00c7O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911511, "longitude": -43.195651, "objects": [], "identifications": []}, {"id": "003794", "name": "AV. MARACAN\u00e3, 160 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91315088, "longitude": -43.2272154, "objects": [], "identifications": []}, {"id": "002485", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88417481, "longitude": -43.39939187, "objects": [], "identifications": []}, {"id": "002373", "name": "NOTRE DAME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02072396, "longitude": -43.49982825, "objects": [], "identifications": []}, {"id": "001017", "name": "AV. EMBAIXADOR ABERLADO BUENO, PR\u00d3X. AO PARQUE AQU\u00c1TICO MARIA LENK", "rtsp_url": "rtsp://admin:admin@10.50.106.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973572, "longitude": -43.388123, "objects": [], "identifications": []}, {"id": "000423", "name": "R. LEOPOLDO BULH\u00d5ES ALT. DA LINHA AMARELA", "rtsp_url": "rtsp://10.52.210.174/423-VIDEO", "update_interval": 120, "latitude": -22.871603, "longitude": -43.253429, "objects": [], "identifications": []}, {"id": "003550", "name": "ESTR. DO RIO JEQUI\u00e1, 582 - ZUMBI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.818661, "longitude": -43.184914, "objects": [], "identifications": []}, {"id": "002174", "name": "GALE\u00c3O TOM JOBIM 1 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.47.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81146072, "longitude": -43.25074992, "objects": [], "identifications": []}, {"id": "001279", "name": "AV. ATL\u00c2NTICA X R. ALM. GON\u00c7ALVES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979469, "longitude": -43.189304, "objects": [], "identifications": []}, {"id": "000902", "name": "ESTR. DOS BANDEIRANTES, N\u00b0 7800", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968051, "longitude": -43.413291, "objects": [], "identifications": []}, {"id": "001014", "name": "R. ARQUIAS CORDEIRO X R. DR. PADILHA", "rtsp_url": "rtsp://admin:admin@10.52.210.31/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895631, "longitude": -43.291151, "objects": [], "identifications": []}, {"id": "000341", "name": "R. HADDOCK LOBO X R. ENGENHEIRO ADEL", "rtsp_url": "rtsp://admin:admin@10.52.252.174/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92050585, "longitude": -43.21674664, "objects": [], "identifications": []}, {"id": "003802", "name": "R. RIO GRANDE DO SUL X R. ARISTIDES CAIRE - M\u00e9IER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.898427, "longitude": -43.277293, "objects": [], "identifications": []}, {"id": "003836", "name": "ESTR. DOS BANDEIRANTES, 24499 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97725042, "longitude": -43.49738505, "objects": [], "identifications": []}, {"id": "003833", "name": "AV. PASTEUR ALT. PRA\u00e7A GENERAL TIB\u00faRCIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95437579, "longitude": -43.16656111, "objects": [], "identifications": []}, {"id": "003231", "name": "AV. EMBAIXADOR ABELARDO BUENO, 95", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973026, "longitude": -43.400432, "objects": [], "identifications": []}, {"id": "001861", "name": "ESTR. DAS FURNAS, 395 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984728, "longitude": -43.30029, "objects": [], "identifications": []}, {"id": "003754", "name": "AV. DOM H\u00e9LDER C\u00e2MARA X R. VASCO DA GAMA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.220/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887605, "longitude": -43.282868, "objects": [], "identifications": []}, {"id": "000352", "name": "R. TEODORO DA SILVA X R. SOUSA FRANCO", "rtsp_url": "rtsp://10.52.26.152/352-VIDEO", "update_interval": 120, "latitude": -22.917582, "longitude": -43.245506, "objects": [], "identifications": []}, {"id": "000043", "name": "RUA HUMAIT\u00c1 X RUA MACEDO SOBRINHO", "rtsp_url": "rtsp://10.52.12.141/043-VIDEO", "update_interval": 120, "latitude": -22.957511, "longitude": -43.199065, "objects": [], "identifications": []}, {"id": "002446", "name": "MARECHAL FONTENELLE - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.7/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88642, "longitude": -43.40068, "objects": [], "identifications": []}, {"id": "002466", "name": "BOI\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.16.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91516318, "longitude": -43.39856259, "objects": [], "identifications": []}, {"id": "002160", "name": "OLARIA - CACIQUE DE RAMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.41.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84841593, "longitude": -43.26560581, "objects": [], "identifications": []}, {"id": "002146", "name": "CAPITAO MENEZES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.23.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89319981, "longitude": -43.34875819, "objects": [], "identifications": []}, {"id": "001732", "name": "ALTO DA BOA VISTA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.53/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950746, "longitude": -43.257729, "objects": [], "identifications": []}, {"id": "001124", "name": "R. S\u00c3O FRANCISCO XAVIER X R. 8 DE DEZEMBRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90878481, "longitude": -43.238695, "objects": [], "identifications": []}, {"id": "000578", "name": "ESTR. DO MONTEIRO (ENTRE ESTR. DA CAMBOTA E ESTR. IARAQU\u00c3) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920631, "longitude": -43.56299, "objects": [], "identifications": []}, {"id": "003324", "name": "RUA CAMBA\u00faBA , 1510 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.816474, "longitude": -43.204871, "objects": [], "identifications": []}, {"id": "003828", "name": "R. JOAQUIM SILVA,93 X ESCADARIA SELARON", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91526788, "longitude": -43.17904135, "objects": [], "identifications": []}, {"id": "002320", "name": "NOVO LEBLON - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.3.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00041755, "longitude": -43.38318928, "objects": [], "identifications": []}, {"id": "001817", "name": "ESTR. DAS FURNAS, 1440 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.974418, "longitude": -43.286016, "objects": [], "identifications": []}, {"id": "001676", "name": "ESTR. DO MENDANHA 142 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8696279, "longitude": -43.5544962, "objects": [], "identifications": []}, {"id": "000296", "name": "R. BARATA RIBEIRO X R. RODOLFO DANTAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96479079, "longitude": -43.1799969, "objects": [], "identifications": []}, {"id": "001968", "name": "AVENIDA AUGUSTO SEVERO, 272C", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9171035, "longitude": -43.17633739, "objects": [], "identifications": []}, {"id": "000839", "name": "R. CONDE AFONSE CELSO, ALT. HOSPITAL DA LAGOA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96291239, "longitude": -43.21651606, "objects": [], "identifications": []}, {"id": "003247", "name": "R. MERC\u00faRIO, 459 - PAVUNA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.805915, "longitude": -43.3607577, "objects": [], "identifications": []}, {"id": "000467", "name": "AV. DAS AM\u00c9RICAS X AV. C\u00c2NDIDO PORTINARI (ALT. DO RIBALTA)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.253/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.999444, "longitude": -43.408248, "objects": [], "identifications": []}, {"id": "001913", "name": "R. CASTRO ALVES, 1", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.247/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.900199, "longitude": -43.275442, "objects": [], "identifications": []}, {"id": "000480", "name": "ESTR. DA BARRA DA TIJUCA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00588786, "longitude": -43.30417465, "objects": [], "identifications": []}, {"id": "003146", "name": "AV. SALVADOR ALLENDE, 750", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96998211, "longitude": -43.39979601, "objects": [], "identifications": []}, {"id": "000759", "name": "R. S\u00c3O FRANCISCO XAVIER X R. 8 DE DEZEMBRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908938, "longitude": -43.238636, "objects": [], "identifications": []}, {"id": "001473", "name": "S\u00c3O FRANCISCO XAVIER X HEITOR BELTR\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.27.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92079958, "longitude": -43.22287825, "objects": [], "identifications": []}, {"id": "000515", "name": "ESTR. DOS TR\u00caS RIOS X ESTR. DO BANANAL", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.936381, "longitude": -43.333275, "objects": [], "identifications": []}, {"id": "000022", "name": "AV. REI PEL\u00c9 X RUA RADIALISTA WALDIR AMARAL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910177, "longitude": -43.233605, "objects": [], "identifications": []}, {"id": "001128", "name": "AV. ERNANI CARDOSO X R. PADRE TEL\u00caMACO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.83/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8820985, "longitude": -43.33209376, "objects": [], "identifications": []}, {"id": "000217", "name": "R. ALM. MARIATH X AV. RIO DE JANEIRO", "rtsp_url": "rtsp://admin:admin@10.52.30.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89226322, "longitude": -43.21489423, "objects": [], "identifications": []}, {"id": "003689", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, ALT. METRO NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.249/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87632239, "longitude": -43.2759797, "objects": [], "identifications": []}, {"id": "003434", "name": "ESTR. DOS BANDEIRANTES, 7416 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980108, "longitude": -43.5059, "objects": [], "identifications": []}, {"id": "004083", "name": "ESTR. DOS BANDEIRANTES, 1700 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93990038, "longitude": -43.37277813, "objects": [], "identifications": []}, {"id": "004012", "name": "ESTR. DOS BANDEIRANTES, 26971 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98952994, "longitude": -43.50326254, "objects": [], "identifications": []}, {"id": "001631", "name": "AV. GABRIELA PRADO MAIA RIBEIRO, 289B - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923405, "longitude": -43.230503, "objects": [], "identifications": []}, {"id": "001062", "name": "QUINTA DA BOA VISTA 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90807723, "longitude": -43.22174629, "objects": [], "identifications": []}, {"id": "003375", "name": "ESTR. DOS BANDEIRANTES, 13833 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988471, "longitude": -43.454566, "objects": [], "identifications": []}, {"id": "004013", "name": "ESTR. DOS BANDEIRANTES, 27596 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.66/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99239351, "longitude": -43.50620294, "objects": [], "identifications": []}, {"id": "000252", "name": "R. BULH\u00d5ES DE CARVALHO X R. FRANCISCO S\u00c1", "rtsp_url": "rtsp://admin:cor12345@10.52.22.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98375, "longitude": -43.194079, "objects": [], "identifications": []}, {"id": "003461", "name": "ESTR. DOS BANDEIRANTES, 10915-10639 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985215, "longitude": -43.430104, "objects": [], "identifications": []}, {"id": "003776", "name": "RUA HENRIQUE SCHEID, N\u00ba 294 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.78/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88932625, "longitude": -43.28976592, "objects": [], "identifications": []}, {"id": "001150", "name": "ESTR. DA BARRA DA TIJUCA X HOTEL SERRAMAR - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00414375, "longitude": -43.30451097, "objects": [], "identifications": []}, {"id": "004165", "name": "AV. MAESTRO PAULO E SILVA 400 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80190846, "longitude": -43.20239801, "objects": [], "identifications": []}, {"id": "000150", "name": "PREFEITURA CASS", "rtsp_url": "rtsp://admin:admin123@10.52.2.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911171, "longitude": -43.205686, "objects": [], "identifications": []}, {"id": "002133", "name": "ARACY CABRAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.19.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92020054, "longitude": -43.36821121, "objects": [], "identifications": []}, {"id": "001420", "name": "AV. NIEMEYER 126 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.991043, "longitude": -43.232612, "objects": [], "identifications": []}, {"id": "002036", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842329, "longitude": -43.276621, "objects": [], "identifications": []}, {"id": "003368", "name": "ESTR. DOS BANDEIRANTES, 14172-14254 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986195, "longitude": -43.457426, "objects": [], "identifications": []}, {"id": "000428", "name": "AV. PARANAPU\u00c3 X RUA CAPANEMA - FIXA", "rtsp_url": "rtsp://admin2:123smart@10.52.210.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.795282, "longitude": -43.182728, "objects": [], "identifications": []}, {"id": "003767", "name": "AV. DOM H\u00e9LDER C\u00e2MARA 7765 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88616253, "longitude": -43.30249741, "objects": [], "identifications": []}, {"id": "003733", "name": "AV. ERNANI CARDOSO, 154 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88220252, "longitude": -43.33333844, "objects": [], "identifications": []}, {"id": "002519", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87784005, "longitude": -43.33663404, "objects": [], "identifications": []}, {"id": "002339", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00835122, "longitude": -43.44308538, "objects": [], "identifications": []}, {"id": "003737", "name": "RUA C\u00e2NDIDO BEN\u00edCIO ALT. BRT - PINTO TELES", "rtsp_url": "rtsp://admin:7lanmstr@10.152.24.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88803522, "longitude": -43.34563638, "objects": [], "identifications": []}, {"id": "002235", "name": "PINA RANGEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.53.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90749032, "longitude": -43.57544603, "objects": [], "identifications": []}, {"id": "001963", "name": "MONUMENTO MARIELLE FRANCO (FRENTE) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9061647, "longitude": -43.1767343, "objects": [], "identifications": []}, {"id": "003151", "name": "T\u00faNEL VELHO SENT. COPACABANA - 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96114, "longitude": -43.190897, "objects": [], "identifications": []}, {"id": "002412", "name": "RIOCENTRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.6.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97669954, "longitude": -43.40618889, "objects": [], "identifications": []}, {"id": "002211", "name": "JULIA MIGUEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.45.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915786, "longitude": -43.628286, "objects": [], "identifications": []}, {"id": "000169", "name": "AV. BRASIL ALTURA DA LINHA VERMELHA", "rtsp_url": "rtsp://10.52.32.4/", "update_interval": 120, "latitude": -22.88554119, "longitude": -43.2263193, "objects": [], "identifications": []}, {"id": "003718", "name": "R. PINTO TELES, 1307 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.234/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.883566, "longitude": -43.35647, "objects": [], "identifications": []}, {"id": "004256", "name": "R. GUINEZA, 297", "rtsp_url": "rtsp://admin:123smart@10.52.211.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892514, "longitude": -43.298613, "objects": [], "identifications": []}, {"id": "001719", "name": "AV. \u00c9DISON PASSOS, 667 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949477, "longitude": -43.260683, "objects": [], "identifications": []}, {"id": "003156", "name": "T\u00faNEL VELHO SENT. COPACABANA - 10 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963151, "longitude": -43.191548, "objects": [], "identifications": []}, {"id": "000358", "name": "R. PROFESSOR EURICO RABELO X R. RAD. VALDIR AMARAL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912127, "longitude": -43.233954, "objects": [], "identifications": []}, {"id": "003328", "name": "ESTRADA DO GALE\u00e3O X RUA VISTULA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.808073, "longitude": -43.196808, "objects": [], "identifications": []}, {"id": "001735", "name": "AV. \u00c9DISON PASSOS, 1596-1708 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.56/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951749, "longitude": -43.259494, "objects": [], "identifications": []}, {"id": "003342", "name": "AV. AUTOM\u00f3VEL CLUBE, 41", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8045866, "longitude": -43.3668765, "objects": [], "identifications": []}, {"id": "003338", "name": "ESTRADA DO GALE\u00e3O, 123 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81617109, "longitude": -43.1885125, "objects": [], "identifications": []}, {"id": "003162", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 6 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.20.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96207256, "longitude": -43.19112778, "objects": [], "identifications": []}, {"id": "000027", "name": "AV. NOSSA SRA. DE COPACABANA X RUA SANTA CLARA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.234/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971621, "longitude": -43.18743, "objects": [], "identifications": []}, {"id": "001122", "name": "AV. D. HELDER C\u00c2MARA X R. CER. DALTRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.84/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882069, "longitude": -43.32496442, "objects": [], "identifications": []}, {"id": "004285", "name": "RUA MARQUES DE S\u00c3O VICENTE X RUA ARTUR ARARIPE", "rtsp_url": "rtsp://admin:123smart@10.52.37.200/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.975861, "longitude": -43.228367, "objects": [], "identifications": []}, {"id": "002415", "name": "MORRO DO OUTEIRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.9.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97173719, "longitude": -43.40157374, "objects": [], "identifications": []}, {"id": "000545", "name": "AV. DE SANTA CRUZ X R. FRANCISCO REAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.877114, "longitude": -43.445767, "objects": [], "identifications": []}, {"id": "003826", "name": "R. JOAQUIM SILVA, 93 X ESCADARIA SELAR\u00f3N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915195, "longitude": -43.179095, "objects": [], "identifications": []}, {"id": "002031", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84202, "longitude": -43.277129, "objects": [], "identifications": []}, {"id": "002316", "name": "BOSQUE DA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.2.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00035281, "longitude": -43.37709932, "objects": [], "identifications": []}, {"id": "004184", "name": "R. EUT\u00edQUIO SOLEDADE X R. CAPANEMA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79409108, "longitude": -43.183775, "objects": [], "identifications": []}, {"id": "004264", "name": "RUA ULYSSES GUIMAR\u00e3ES, 4 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.245.51/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91222827, "longitude": -43.20525934, "objects": [], "identifications": []}, {"id": "003170", "name": "AV. AYRTON SENNA X TERMINAL ALVORADA C", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.001799, "longitude": -43.367594, "objects": [], "identifications": []}, {"id": "000056", "name": "MONUMENTO DRUMMOND - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9845679, "longitude": -43.18959278, "objects": [], "identifications": []}, {"id": "001964", "name": "RUA HIL\u00c1RIO DE GOUV\u00caIA 493", "rtsp_url": "rtsp://admin:7lanmstr@10.52.39.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968524, "longitude": -43.1836488, "objects": [], "identifications": []}, {"id": "001760", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95839023, "longitude": -43.26501683, "objects": [], "identifications": []}, {"id": "003446", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913433, "longitude": -43.251867, "objects": [], "identifications": []}, {"id": "001455", "name": "PORT\u00c3O DO BRT - R. LEONARDO VILAS BOAS, 3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.29/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.965863, "longitude": -43.391308, "objects": [], "identifications": []}, {"id": "000838", "name": "AV. NOSSA SRA DE COPACABANA X R. FIG. MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97030516, "longitude": -43.18587461, "objects": [], "identifications": []}, {"id": "003847", "name": "R. DIAS DA CRUZ X R. JURUNAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904732, "longitude": -43.294165, "objects": [], "identifications": []}, {"id": "001330", "name": "AV. ATL\u00c2NTICA, N 110 - FIXA", "rtsp_url": "rtsp://10.52.252.74/", "update_interval": 120, "latitude": -22.9721, "longitude": -43.18433, "objects": [], "identifications": []}, {"id": "002361", "name": "GILKA MACHADO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.17.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01696232, "longitude": -43.4766837, "objects": [], "identifications": []}, {"id": "002307", "name": "RICARDO MARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.103.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00023031, "longitude": -43.34681056, "objects": [], "identifications": []}, {"id": "002075", "name": "DIVINA PROVIDENCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.14.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9406659, "longitude": -43.37255207, "objects": [], "identifications": []}, {"id": "003574", "name": "AV. PASTOR MARTIN LUTHER KING JR. 5000", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.126/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.853477, "longitude": -43.313522, "objects": [], "identifications": []}, {"id": "004245", "name": "R. DA ABOLI\u00e7\u00e3O X R. MARIO CARPENTER", "rtsp_url": "rtsp://admin:123smart@10.52.211.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887936, "longitude": -43.296514, "objects": [], "identifications": []}, {"id": "000422", "name": "AV. BRASIL X FIOCRUZ", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87239192, "longitude": -43.2448921, "objects": [], "identifications": []}, {"id": "002483", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88453313, "longitude": -43.39930739, "objects": [], "identifications": []}, {"id": "003638", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3480 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.202/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.867112, "longitude": -43.299277, "objects": [], "identifications": []}, {"id": "002518", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87774862, "longitude": -43.33688483, "objects": [], "identifications": []}, {"id": "004156", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85418673, "longitude": -43.38355414, "objects": [], "identifications": []}, {"id": "001910", "name": "ESTRADA DA BARRA DA TIJUCA, 79 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.211/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987156, "longitude": -43.302019, "objects": [], "identifications": []}, {"id": "003450", "name": "ESTR. DOS BANDEIRANTES, 11864-11912 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988824, "longitude": -43.438931, "objects": [], "identifications": []}, {"id": "003726", "name": "AV. ERNANI CARDOSO, 371-361 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.216/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88273229, "longitude": -43.33935834, "objects": [], "identifications": []}, {"id": "002501", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00649797, "longitude": -43.31339259, "objects": [], "identifications": []}, {"id": "000139", "name": "AV. BRASIL X R. SANTOS LIMA", "rtsp_url": "rtsp://admin:admin@10.52.30.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895623, "longitude": -43.214936, "objects": [], "identifications": []}, {"id": "000310", "name": "LARGO DO MACHADO X BENTO LISBOA", "rtsp_url": "rtsp://admin:admin@10.52.14.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.930591, "longitude": -43.179231, "objects": [], "identifications": []}, {"id": "003786", "name": "ESTR. DA PEDRA - ALT. BRT CURRAL FALSO", "rtsp_url": "rtsp://admin:7lanmstr@10.151.32.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93704754, "longitude": -43.66696519, "objects": [], "identifications": []}, {"id": "003132", "name": "R. CAT\u00c3O, 13", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.806976, "longitude": -43.363851, "objects": [], "identifications": []}, {"id": "000243", "name": "AV. BORGES DE MEDEIROS X R. LINEU DE PAULA MACHADO", "rtsp_url": "rtsp://admin:admin@10.52.12.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962938, "longitude": -43.211589, "objects": [], "identifications": []}, {"id": "001611", "name": "PRA\u00c7A JO\u00c3O PESSOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912874, "longitude": -43.182766, "objects": [], "identifications": []}, {"id": "002153", "name": "CAMPINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.25.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88195638, "longitude": -43.34193057, "objects": [], "identifications": []}, {"id": "002130", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92480474, "longitude": -43.37392562, "objects": [], "identifications": []}, {"id": "002460", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.6/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91766126, "longitude": -43.68333492, "objects": [], "identifications": []}, {"id": "000193", "name": "R. CANDIDO BENICIO X R. GODOFREDO VIANA - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912524, "longitude": -43.360592, "objects": [], "identifications": []}, {"id": "000058", "name": "AV. AYRTON SENNA X VIA PARQUE DA LOGOA DA TIJUCA", "rtsp_url": "rtsp://admin:admin@10.50.106.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984825, "longitude": -43.365726, "objects": [], "identifications": []}, {"id": "001628", "name": "LAPA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91317, "longitude": -43.179832, "objects": [], "identifications": []}, {"id": "004181", "name": "AV. PARANAPU\u00c3 X RUA CAPANEMA", "rtsp_url": "rtsp://admin:123smart@10.52.216.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79521, "longitude": -43.18245, "objects": [], "identifications": []}, {"id": "003527", "name": "ESTR. DO RIO JEQUI\u00e1, 1000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81943595, "longitude": -43.18271388, "objects": [], "identifications": []}, {"id": "001672", "name": "ESTRADA PADRE ROSER, 750", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.51/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841656, "longitude": -43.320068, "objects": [], "identifications": []}, {"id": "001284", "name": "AV. ATL\u00c2NTICA X RUA SANTA CLARA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97376836, "longitude": -43.18573163, "objects": [], "identifications": []}, {"id": "002208", "name": "SANTA EUG\u00caNIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.44.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916878, "longitude": -43.633078, "objects": [], "identifications": []}, {"id": "001286", "name": "AV. ATL\u00c2NTICA X RUA SANTA CLARA - FIXA", "rtsp_url": "rtsp://10.52.252.195/", "update_interval": 120, "latitude": -22.97334361, "longitude": -43.18569944, "objects": [], "identifications": []}, {"id": "003193", "name": "AV. GLAUCIO GIL, 680 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018904, "longitude": -43.459443, "objects": [], "identifications": []}, {"id": "003319", "name": "R. IPIRU, 416", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.122/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8194611, "longitude": -43.1919038, "objects": [], "identifications": []}, {"id": "001426", "name": "AV. NIEMEYER 226 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.995806, "longitude": -43.235542, "objects": [], "identifications": []}, {"id": "003315", "name": "PRA\u00e7A JERUSAL\u00e9M PR\u00f3XIMO AO N\u00ba29", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.119/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8191751, "longitude": -43.2014486, "objects": [], "identifications": []}, {"id": "003239", "name": "AVENIDA SARGENTO DE MIL\u00edCIAS, 23", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.805157, "longitude": -43.363934, "objects": [], "identifications": []}, {"id": "003849", "name": "ESTR. DOS BANDEIRANTES, 25422-25636 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97864396, "longitude": -43.50239171, "objects": [], "identifications": []}, {"id": "001074", "name": "JOQUEI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97307692, "longitude": -43.22498498, "objects": [], "identifications": []}, {"id": "000118", "name": "AV. EPIT\u00c1CIO PESSOA PR\u00d3XIMO AO CORTE DO CANTAGALO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.228/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976344, "longitude": -43.198633, "objects": [], "identifications": []}, {"id": "003491", "name": "R. DO CRUZEIRO, 10 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91959103, "longitude": -43.68381847, "objects": [], "identifications": []}, {"id": "001458", "name": "LAPA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91366011, "longitude": -43.17875469, "objects": [], "identifications": []}, {"id": "001240", "name": "AV. ATL\u00c2NTICA X RUA BAR\u00c3O DE IPANEMA - FIXA", "rtsp_url": "rtsp://10.52.252.91/", "update_interval": 120, "latitude": -22.975535, "longitude": -43.187264, "objects": [], "identifications": []}, {"id": "002490", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88422669, "longitude": -43.39990415, "objects": [], "identifications": []}, {"id": "001591", "name": "AV. PRES. VARGAS, 2135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90667, "longitude": -43.19429, "objects": [], "identifications": []}, {"id": "001274", "name": "HOTEL FAIRMONT - COPACABANA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98580409, "longitude": -43.18936023, "objects": [], "identifications": []}, {"id": "002469", "name": "TERMINAL RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.1.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00843759, "longitude": -43.44038346, "objects": [], "identifications": []}, {"id": "002388", "name": "MAGAR\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.28.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96876238, "longitude": -43.622342, "objects": [], "identifications": []}, {"id": "001560", "name": "COMLURB - RUA BELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.886781, "longitude": -43.226187, "objects": [], "identifications": []}, {"id": "000025", "name": "AV. ATL\u00c2NTICA X AV. PRINCESA ISABEL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964967, "longitude": -43.173588, "objects": [], "identifications": []}, {"id": "001583", "name": "AV. PRES. VARGAS X R. 1\u00ba MAR\u00c7O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9004745, "longitude": -43.17716349, "objects": [], "identifications": []}, {"id": "003537", "name": "R. MALDONADO, 297 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.824728, "longitude": -43.169422, "objects": [], "identifications": []}, {"id": "001406", "name": "AV. BARTOLOMEU MITRE, 1099 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978169, "longitude": -43.224816, "objects": [], "identifications": []}, {"id": "002214", "name": "PARQUE S\u00c3O PAULO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.46.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916332, "longitude": -43.622011, "objects": [], "identifications": []}, {"id": "000564", "name": "R. CAMPO GRANDE X ALT. ESTA\u00c7\u00c3O FERROVI\u00c1RIA DE CAMPO GRANDE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901756, "longitude": -43.558879, "objects": [], "identifications": []}, {"id": "004284", "name": "VIADUTO PREF. ALIM PEDRO, ALT. BRT", "rtsp_url": "rtsp://admin:123smart@10.151.57.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90369801, "longitude": -43.56614734, "objects": [], "identifications": []}, {"id": "001547", "name": "R. MANUEL MIRANDA, 57 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.251/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9024, "longitude": -43.265316, "objects": [], "identifications": []}, {"id": "000386", "name": "PARQUE DE MADUREIRA PALCO PRA\u00c7A DO SAMBA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.49/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86797353, "longitude": -43.34119058, "objects": [], "identifications": []}, {"id": "001702", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956146, "longitude": -43.265518, "objects": [], "identifications": []}, {"id": "002434", "name": "OUTEIRO SANTO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.15.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.927676, "longitude": -43.396061, "objects": [], "identifications": []}, {"id": "002442", "name": "MARECHAL FONTENELLE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.3/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88656897, "longitude": -43.40073802, "objects": [], "identifications": []}, {"id": "001706", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.35/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957304, "longitude": -43.265045, "objects": [], "identifications": []}, {"id": "000765", "name": "R. PREFEITO OLIMPIO DE MELO X R. CHIBATA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890345, "longitude": -43.23419, "objects": [], "identifications": []}, {"id": "001790", "name": "R. FERREIRA DE ALMEIDA, 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964243, "longitude": -43.276656, "objects": [], "identifications": []}, {"id": "003492", "name": "R. TERESA CRISTINA, 98 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91954902, "longitude": -43.68450924, "objects": [], "identifications": []}, {"id": "001741", "name": "AV. \u00c9DISON PASSOS, 2272 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954949, "longitude": -43.264892, "objects": [], "identifications": []}, {"id": "002204", "name": "31 DE OUTUBRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.43.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918129, "longitude": -43.638782, "objects": [], "identifications": []}, {"id": "001068", "name": "R. TIROL X R. CMTE RUBENS SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93959419, "longitude": -43.33679093, "objects": [], "identifications": []}, {"id": "003713", "name": "AV. ERNANI CARDOSO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.210/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88292094, "longitude": -43.34137238, "objects": [], "identifications": []}, {"id": "002222", "name": "INHOA\u00cdBA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.50.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913315, "longitude": -43.595605, "objects": [], "identifications": []}, {"id": "003765", "name": "RUA GOI\u00e1S X RUA SILVANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89270047, "longitude": -43.30625248, "objects": [], "identifications": []}, {"id": "001436", "name": "AV. NIEMEYER 400 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00013721, "longitude": -43.24185602, "objects": [], "identifications": []}, {"id": "001452", "name": "PORT\u00c3O DO BRT - R. BARREIROS, 21 - RAMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.77/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854565, "longitude": -43.25087, "objects": [], "identifications": []}, {"id": "004176", "name": "ESTR. DO RIO JEQUI\u00e1, 2167 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81634333, "longitude": -43.18706157, "objects": [], "identifications": []}, {"id": "002167", "name": "VIA PARQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.4.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98397341, "longitude": -43.36564722, "objects": [], "identifications": []}, {"id": "000047", "name": "AV. LAURO SODR\u00c9 X R. GENERAL GOIS MONTEIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955582, "longitude": -43.178137, "objects": [], "identifications": []}, {"id": "002115", "name": "ARROIO PAVUNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.11.02/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95529134, "longitude": -43.37732539, "objects": [], "identifications": []}, {"id": "001551", "name": "AUTOESTRADA ENG. FERNANDO MAC DOWELL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.996394, "longitude": -43.26018, "objects": [], "identifications": []}, {"id": "004230", "name": "AV. PEDRO II X R. S\u00c3O CRIST\u00d3V\u00c3O - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.28.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90466868, "longitude": -43.21794029, "objects": [], "identifications": []}, {"id": "001772", "name": "AV. \u00c9DSON PASSOS, 4211 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.92/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95999363, "longitude": -43.26974274, "objects": [], "identifications": []}, {"id": "004276", "name": "PRA\u00c7A SIB\u00c9LIUS - LPR - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.37.205/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97844725, "longitude": -43.2265768, "objects": [], "identifications": []}, {"id": "001867", "name": "ESTR. DAS FURNAS, 3700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986324, "longitude": -43.301322, "objects": [], "identifications": []}, {"id": "001248", "name": "R. CONSTANTE RAMOS X AV. ATL\u00c2NTICA - FIXA", "rtsp_url": "rtsp://10.52.252.89/", "update_interval": 120, "latitude": -22.974787, "longitude": -43.187607, "objects": [], "identifications": []}, {"id": "003380", "name": "ESTR. DOS BANDEIRANTES, 12790 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992676, "longitude": -43.448693, "objects": [], "identifications": []}, {"id": "001230", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96313901, "longitude": -43.16794473, "objects": [], "identifications": []}, {"id": "004177", "name": "ESTR. DO RIO JEQUI\u00e1, 2167 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.94/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8165065, "longitude": -43.18674775, "objects": [], "identifications": []}, {"id": "004232", "name": "R. DA IGREJINHA, 10 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.30.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89573666, "longitude": -43.21491454, "objects": [], "identifications": []}, {"id": "001696", "name": "AV. RADIAL OESTE, 6007 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910649, "longitude": -43.228401, "objects": [], "identifications": []}, {"id": "003333", "name": "ESTRADA DO GALE\u00e3O, 12 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8160293, "longitude": -43.1871324, "objects": [], "identifications": []}, {"id": "003148", "name": "T\u00daNEL VELHO SENT. COPACABANA - 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96104203, "longitude": -43.19089268, "objects": [], "identifications": []}, {"id": "001633", "name": "AV. MARACAN\u00c3, 970 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.202/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923046, "longitude": -43.236094, "objects": [], "identifications": []}, {"id": "001077", "name": "R. CONDE DE BONFIM X R. BASILEIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93880518, "longitude": -43.24760535, "objects": [], "identifications": []}, {"id": "003665", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 9652 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.228/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.835896, "longitude": -43.33968, "objects": [], "identifications": []}, {"id": "002003", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012393, "longitude": -43.458908, "objects": [], "identifications": []}, {"id": "001903", "name": "ESTR. DO MENDANHA, 3376 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.864806, "longitude": -43.549214, "objects": [], "identifications": []}, {"id": "002284", "name": "CURRAL FALSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.32.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93630431, "longitude": -43.66690327, "objects": [], "identifications": []}, {"id": "002374", "name": "NOTRE DAME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02057875, "longitude": -43.5004557, "objects": [], "identifications": []}, {"id": "000045", "name": "PRA\u00c7A SIB\u00c9LIUS", "rtsp_url": "rtsp://admin:admin@10.52.37.187/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978488, "longitude": -43.226668, "objects": [], "identifications": []}, {"id": "001574", "name": "AV. AYRTON SENNA, 2000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.996665, "longitude": -43.365818, "objects": [], "identifications": []}, {"id": "001881", "name": "RUA CAPIT\u00c3O M\u00c1RIO BARBEDO, 460 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8349801, "longitude": -43.3996392, "objects": [], "identifications": []}, {"id": "000097", "name": "VIADUTO ENG. NORONHA SOB VIADUTO JARDEL FILHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934568, "longitude": -43.184539, "objects": [], "identifications": []}, {"id": "004108", "name": "ESTR. DOS BANDEIRANTES, 21629 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.208.249/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987583, "longitude": -43.47997, "objects": [], "identifications": []}, {"id": "001821", "name": "ESTR. DAS FURNAS, 1850 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.209.46/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977092, "longitude": -43.290909, "objects": [], "identifications": []}, {"id": "002336", "name": "PONT\u00d5ES/BARRASUL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.10.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00549625, "longitude": -43.43193858, "objects": [], "identifications": []}, {"id": "001065", "name": "ESTR. T. CORONEL M. DE ARAG\u00c3O X ESTR. DE JACAREPAGU\u00c1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94757464, "longitude": -43.33976878, "objects": [], "identifications": []}, {"id": "001211", "name": "AV. ATL\u00c2NTICA X R. FRANCISCO S\u00c1 - FIXA", "rtsp_url": "rtsp://10.52.252.125/", "update_interval": 120, "latitude": -22.982922, "longitude": -43.189551, "objects": [], "identifications": []}, {"id": "004022", "name": "ESTR. DOS BANDEIRANTES, 1458 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93654414, "longitude": -43.37197976, "objects": [], "identifications": []}, {"id": "001784", "name": "R. BOA VISTA, 42 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96200947, "longitude": -43.2743245, "objects": [], "identifications": []}, {"id": "004033", "name": "ESTR. DOS BANDEIRANTES, 2593 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94857043, "longitude": -43.37263991, "objects": [], "identifications": []}, {"id": "003753", "name": "R. JOS\u00e9 DOS REIS, 1788 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.217/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88151888, "longitude": -43.28726228, "objects": [], "identifications": []}, {"id": "004237", "name": "RUA INHOMIRIM, 370 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.30.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.900439, "longitude": -43.216042, "objects": [], "identifications": []}, {"id": "004170", "name": "RUA HAROLDO L\u00d4BO, 294", "rtsp_url": "rtsp://admin:123smart@10.52.216.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8026599, "longitude": -43.2097652, "objects": [], "identifications": []}, {"id": "001309", "name": "AV. LUCIO COSTA X RUA ALBERT SABIN - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02828043, "longitude": -43.46676365, "objects": [], "identifications": []}, {"id": "003508", "name": "ESTR. DOS BANDEIRANTES, 275 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979023, "longitude": -43.419076, "objects": [], "identifications": []}, {"id": "002348", "name": "GUIGNARD - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.13.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01090361, "longitude": -43.45288318, "objects": [], "identifications": []}, {"id": "002104", "name": "REDE SARAH - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.6.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97337407, "longitude": -43.37634622, "objects": [], "identifications": []}, {"id": "000561", "name": "AV. DE SANTA CRUZ X R. GAL. SEZEFREDO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.878107, "longitude": -43.434836, "objects": [], "identifications": []}, {"id": "000116", "name": "AV. EPIT\u00c1CIO PESSOA PR\u00d3XIMO AO JARDIM DE ALAH", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980392, "longitude": -43.214439, "objects": [], "identifications": []}, {"id": "003438", "name": "R. REP\u00faBLICA \u00c1RABE DA S\u00edRIA, 111", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.253/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8048, "longitude": -43.206975, "objects": [], "identifications": []}, {"id": "001909", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES, 1992 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.198/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882089, "longitude": -43.572254, "objects": [], "identifications": []}, {"id": "002230", "name": "ANA GONZAGA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.51.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91131246, "longitude": -43.58971976, "objects": [], "identifications": []}, {"id": "003801", "name": "RUA VISCONDE DO RIO BRANCO X RUA DO LAVRADIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.138/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90773785, "longitude": -43.18412619, "objects": [], "identifications": []}, {"id": "002203", "name": "CESARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.42.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92063, "longitude": -43.643801, "objects": [], "identifications": []}, {"id": "001743", "name": "AV. \u00c9DISON PASSOS, 2477 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955851, "longitude": -43.264505, "objects": [], "identifications": []}, {"id": "001757", "name": "AV. \u00c9DISON PASSOS, 3123", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.77/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95799102, "longitude": -43.2642709, "objects": [], "identifications": []}, {"id": "001229", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96309393, "longitude": -43.16783074, "objects": [], "identifications": []}, {"id": "001208", "name": "AVENIDA ATL\u00c2NTICA, 3958, EM FRENTE \u00c0, R. JULIO - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98359757, "longitude": -43.18944667, "objects": [], "identifications": []}, {"id": "002315", "name": "BOSQUE DA BARRA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.2.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00035279, "longitude": -43.37776479, "objects": [], "identifications": []}, {"id": "001714", "name": "AV. \u00c9DISON PASSOS, 97 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.247.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946111, "longitude": -43.258687, "objects": [], "identifications": []}, {"id": "003715", "name": "RUA MARIA JOS\u00e9, 318 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.212/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8801851, "longitude": -43.34449987, "objects": [], "identifications": []}, {"id": "003269", "name": "R. CLARA NUNES, 10-170 - PORTELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.870714, "longitude": -43.343139, "objects": [], "identifications": []}, {"id": "001731", "name": "ALTO DA BOA VISTA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.52/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95136, "longitude": -43.259822, "objects": [], "identifications": []}, {"id": "000356", "name": "BOULEVARD 28 DE SETEMBRO X P\u00c7A BAR\u00c3O DE DRUMOND", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916451, "longitude": -43.25003, "objects": [], "identifications": []}, {"id": "004070", "name": "ESTR. DOS BANDEIRANTES, 3917-3961 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955249, "longitude": -43.377613, "objects": [], "identifications": []}, {"id": "002261", "name": "COSMOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.47.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915575, "longitude": -43.616402, "objects": [], "identifications": []}, {"id": "001332", "name": "AV. ATL\u00c2NTICA, N 110 - FIXA", "rtsp_url": "rtsp://10.52.252.77/", "update_interval": 120, "latitude": -22.972154, "longitude": -43.184684, "objects": [], "identifications": []}, {"id": "000705", "name": "BRT TRANSOL\u00cdMPICA X R. ALMIRANTE MIL\u00c2NEZ", "rtsp_url": "rtsp://admin:admin@10.52.208.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.872966, "longitude": -43.408237, "objects": [], "identifications": []}, {"id": "004236", "name": "R. CONDE DE LEOPOLDINA, 210 LPR - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.32.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890508, "longitude": -43.219063, "objects": [], "identifications": []}, {"id": "003509", "name": "ESTR. DOS BANDEIRANTES, 9399-9133 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980016, "longitude": -43.422012, "objects": [], "identifications": []}, {"id": "001035", "name": "RUA MEDINA N\u00ba165 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90062756, "longitude": -43.28182161, "objects": [], "identifications": []}, {"id": "004006", "name": "RUA CONDE DE BONFIM, 422 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.213/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92529, "longitude": -43.234645, "objects": [], "identifications": []}, {"id": "000228", "name": "PRA\u00c7A DA REP\u00daBLICA X R. VINTE DE ABRIL", "rtsp_url": "rtsp://10.52.18.146/228-VIDEO", "update_interval": 120, "latitude": -22.908966, "longitude": -43.18871, "objects": [], "identifications": []}, {"id": "003721", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.237/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88077596, "longitude": -43.3534137, "objects": [], "identifications": []}, {"id": "001045", "name": "R. DIAS DA CRUZ, 163 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902817, "longitude": -43.281995, "objects": [], "identifications": []}, {"id": "002312", "name": "BARRA SHOPPING - PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.100.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00007645, "longitude": -43.36144305, "objects": [], "identifications": []}, {"id": "001550", "name": "AUTOESTRADA ENG. FERNANDO MAC DOWELL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.996567, "longitude": -43.260566, "objects": [], "identifications": []}, {"id": "001015", "name": "R. ARQUIAS X R. PIAUI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.896753, "longitude": -43.286711, "objects": [], "identifications": []}, {"id": "002053", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852457, "longitude": -43.312151, "objects": [], "identifications": []}, {"id": "000410", "name": "R. ABELARDO BUENO X R. ARROIO PAVUNA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973264, "longitude": -43.378744, "objects": [], "identifications": []}, {"id": "000201", "name": "R. HADDOCK LOBO X AV. PAULO DE FRONTIN", "rtsp_url": "rtsp://10.52.33.21/201-VIDEO", "update_interval": 120, "latitude": -22.917126, "longitude": -43.210312, "objects": [], "identifications": []}, {"id": "003196", "name": "AV. GLAUCIO GIL, 595 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.172/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.019561, "longitude": -43.459146, "objects": [], "identifications": []}, {"id": "001275", "name": "HOTEL RIO OTHON PALACE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9774487, "longitude": -43.18912, "objects": [], "identifications": []}, {"id": "002220", "name": "VILAR CARIOCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.49.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914219, "longitude": -43.600925, "objects": [], "identifications": []}, {"id": "002050", "name": "VILA KOSMOS - NOSSA SENHORA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.33.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.849503, "longitude": -43.307684, "objects": [], "identifications": []}, {"id": "000269", "name": "R. REAL GRANDEZA X R. GAL POLIDORO", "rtsp_url": "rtsp://admin:admin@10.52.20.230/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95816119, "longitude": -43.19136634, "objects": [], "identifications": []}, {"id": "000120", "name": "AUTOESTRADA LAGOA-BARRA X AV. NIEMEYER", "rtsp_url": "rtsp://10.50.106.95/120-VIDEO", "update_interval": 120, "latitude": -22.992837, "longitude": -43.253635, "objects": [], "identifications": []}, {"id": "003153", "name": "T\u00faNEL VELHO SENT. COPACABANA - 7 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962533, "longitude": -43.191353, "objects": [], "identifications": []}, {"id": "000287", "name": "AV. N. SRA. DE COPACABANA X AV. RAINHA ELISABETH", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984856, "longitude": -43.190283, "objects": [], "identifications": []}, {"id": "002229", "name": "ANA GONZAGA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.51.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911436, "longitude": -43.590106, "objects": [], "identifications": []}, {"id": "001870", "name": "ESTR. DAS FURNAS, 3042-3044 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98263297, "longitude": -43.29571018, "objects": [], "identifications": []}, {"id": "003131", "name": "ESTR. VEREADOR ALCEU DE CARVALHO, 114 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.014347, "longitude": -43.493038, "objects": [], "identifications": []}, {"id": "000053", "name": "AV. PRESIDENTE WILSON X AV. CAL\u00d3GERAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911375, "longitude": -43.173341, "objects": [], "identifications": []}, {"id": "003179", "name": "AV. SALVADOR ALLENDE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000213, "longitude": -43.430007, "objects": [], "identifications": []}, {"id": "001299", "name": "RUA FIGUEIREDO MAGALH\u00c3ES X RUA MINISTRO ALFREDO VALAD\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96634813, "longitude": -43.18940236, "objects": [], "identifications": []}, {"id": "003841", "name": "ESTR. DOS BANDEIRANTES, 24179 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97663629, "longitude": -43.49565543, "objects": [], "identifications": []}, {"id": "003577", "name": "ESTR. DOS BANDEIRANTES, 5450 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96074053, "longitude": -43.39239367, "objects": [], "identifications": []}, {"id": "003813", "name": "AV. CES\u00e1RIO DE MELO, 276 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893709, "longitude": -43.540378, "objects": [], "identifications": []}, {"id": "004085", "name": "ESTR. DOS BANDEIRANTES, 1540 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93779016, "longitude": -43.3723735, "objects": [], "identifications": []}, {"id": "000176", "name": "VIADUTO AGENOR DE OLIVEIRA", "rtsp_url": "rtsp://10.52.26.10/176-VIDEO", "update_interval": 120, "latitude": -22.90517, "longitude": -43.241737, "objects": [], "identifications": []}, {"id": "004260", "name": "R. BENTO GON\u00e7ALVES, 352", "rtsp_url": "rtsp://admin:123smart@10.52.216.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893925, "longitude": -43.298856, "objects": [], "identifications": []}, {"id": "002445", "name": "MARECHAL FONTENELLE - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8864, "longitude": -43.40089, "objects": [], "identifications": []}, {"id": "004087", "name": "ESTR. DOS BANDEIRANTES, 4666 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95907972, "longitude": -43.38609406, "objects": [], "identifications": []}, {"id": "000218", "name": "INTO X AV. BRASIL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892544, "longitude": -43.216696, "objects": [], "identifications": []}, {"id": "004188", "name": "PRAIA DA GUANABARA, 09", "rtsp_url": "rtsp://admin:123smart@10.52.216.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.7935656, "longitude": -43.17030267, "objects": [], "identifications": []}, {"id": "001991", "name": "ESTR. DOS BANDEIRANTES, 22310 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988026, "longitude": -43.487614, "objects": [], "identifications": []}, {"id": "004002", "name": "ESTR. DOS BANDEIRANTES, 22975 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9829366, "longitude": -43.48981803, "objects": [], "identifications": []}, {"id": "003482", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90970906, "longitude": -43.25465061, "objects": [], "identifications": []}, {"id": "002443", "name": "MARECHAL FONTENELLE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88593, "longitude": -43.40071, "objects": [], "identifications": []}, {"id": "004064", "name": "AV. BRASIL, ALT. BRT INTO - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.30.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89585, "longitude": -43.214835, "objects": [], "identifications": []}, {"id": "004133", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85352324, "longitude": -43.38434822, "objects": [], "identifications": []}, {"id": "000514", "name": "AV. GEREM\u00c1RIO DANTAS X ESTR. DOS TR\u00caS RIOS (P\u00c7A. PROF\u00aa CAMIS\u00c3O)", "rtsp_url": "rtsp://admin:admin@10.50.224.222/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93978, "longitude": -43.343768, "objects": [], "identifications": []}, {"id": "001417", "name": "AV. NIEMEYER 88 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990576, "longitude": -43.230766, "objects": [], "identifications": []}, {"id": "002426", "name": "MAGALH\u00c3ES BASTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.20.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8681799, "longitude": -43.41306149, "objects": [], "identifications": []}, {"id": "001728", "name": "AV. \u00c9DISON PASSOS, 1271 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.49/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951528, "longitude": -43.260449, "objects": [], "identifications": []}, {"id": "004155", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85416696, "longitude": -43.38360511, "objects": [], "identifications": []}, {"id": "004000", "name": "ESTR. DOS BANDEIRANTES, 26825 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.57/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99050202, "longitude": -43.50300436, "objects": [], "identifications": []}, {"id": "004113", "name": "R. TAQUAREMBO, 234 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903552, "longitude": -43.573556, "objects": [], "identifications": []}, {"id": "003329", "name": "ESTRADA DO GALE\u00e3O X R. COPENHAGUE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81020484, "longitude": -43.19521244, "objects": [], "identifications": []}, {"id": "001636", "name": "AV. BRASIL, 418 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887506, "longitude": -43.224199, "objects": [], "identifications": []}, {"id": "003206", "name": "ESTR. RIO S\u00e3O PAULO, 5799 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.181/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.868133, "longitude": -43.585724, "objects": [], "identifications": []}, {"id": "002044", "name": "PRACA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.35.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838843, "longitude": -43.295112, "objects": [], "identifications": []}, {"id": "003784", "name": "ESTRADA DO LAMEIR\u00e3O X ESTRADA DA POSSE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.875651, "longitude": -43.526372, "objects": [], "identifications": []}, {"id": "003690", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, ALT. METRO NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.250/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87816593, "longitude": -43.2736891, "objects": [], "identifications": []}, {"id": "000168", "name": "AV. BRAZ DE PINA X AV. VICENTE DE CARVALHO - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839228, "longitude": -43.296019, "objects": [], "identifications": []}, {"id": "000136", "name": "AV. AYRTON SENNA PR\u00d3XIMO AO SENAC", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.965357, "longitude": -43.357022, "objects": [], "identifications": []}, {"id": "000105", "name": "R. CARDOSO DE MORAES X R. EMILIO ZALUAR - BRT", "rtsp_url": "rtsp://ineo:telca2000@10.52.210.83/mpeg4/ch1/sub/av_stream", "update_interval": 120, "latitude": -22.857624, "longitude": -43.257354, "objects": [], "identifications": []}, {"id": "002199", "name": "TR\u00caS PONTES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.41.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925432, "longitude": -43.649952, "objects": [], "identifications": []}, {"id": "004138", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85372963, "longitude": -43.38391236, "objects": [], "identifications": []}, {"id": "004023", "name": "AV. BRASIL, ALT. BRT IGREJINHA - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.32.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.889377, "longitude": -43.219613, "objects": [], "identifications": []}, {"id": "002118", "name": "VILA SAPE - IV CENTENARIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.12.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95233839, "longitude": -43.37461184, "objects": [], "identifications": []}, {"id": "001580", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907389, "longitude": -43.197549, "objects": [], "identifications": []}, {"id": "001218", "name": "R. REAL GRANDEZA X SA\u00cdDA DO T\u00daNEL ALAOR PRATA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96084259, "longitude": -43.19058837, "objects": [], "identifications": []}, {"id": "001604", "name": "AV. PRES. VARGAS, 4-177 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906653, "longitude": -43.196331, "objects": [], "identifications": []}, {"id": "000075", "name": "R. URUGUAI X R. MAXWELL", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.922275, "longitude": -43.247679, "objects": [], "identifications": []}, {"id": "001228", "name": "AV. NOSSA SRA DE COPACABANA X R. FIG. MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97034652, "longitude": -43.18601744, "objects": [], "identifications": []}, {"id": "003738", "name": "AV. VIEIRA SOUTO X R. RAINHA ELIZABETH - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98696236, "longitude": -43.19769346, "objects": [], "identifications": []}, {"id": "001543", "name": "AV. MARACAN\u00c3 X S\u00c3O FRANCISCO XAVIER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916272, "longitude": -43.229357, "objects": [], "identifications": []}, {"id": "000039", "name": "AV. PRES. ANT\u00d4NIO CARLOS X AV. FRANKLIN ROOSEVELT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910115, "longitude": -43.171723, "objects": [], "identifications": []}, {"id": "001298", "name": "RUA FIGUEIREDO MAGALH\u00c3ES X RUA MINISTRO ALFREDO VALAD\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.966237, "longitude": -43.189397, "objects": [], "identifications": []}, {"id": "001123", "name": "R. BERNARDO DE VASCONCELOS X PRA\u00c7A DO CANH\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.121/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87626146, "longitude": -43.42953026, "objects": [], "identifications": []}, {"id": "000359", "name": "R. S\u00c3O FRANCISCO XAVIER X R. LUIZ DE MATOS", "rtsp_url": "rtsp://admin:admin@10.52.26.16/mpeg4/ch1/sub/av_stream", "update_interval": 120, "latitude": -22.910967, "longitude": -43.238104, "objects": [], "identifications": []}, {"id": "003223", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES X R. VICENTE FRANCISCO DOS SANTOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.190/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.878867, "longitude": -43.573553, "objects": [], "identifications": []}, {"id": "003127", "name": "AV. PASTOR MARTIN LUTHER KING J\u00daNIOR, 8348 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.250/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.823646, "longitude": -43.350866, "objects": [], "identifications": []}, {"id": "003483", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91000061, "longitude": -43.25404178, "objects": [], "identifications": []}, {"id": "002325", "name": "SANTA M\u00d4NICA JARDINS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.5.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00023789, "longitude": -43.39813793, "objects": [], "identifications": []}, {"id": "003152", "name": "T\u00faNEL VELHO SENT. COPACABANA - 6 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962633, "longitude": -43.191353, "objects": [], "identifications": []}, {"id": "002293", "name": "BOSQUE MARAPENDI - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.107.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00324512, "longitude": -43.32421251, "objects": [], "identifications": []}, {"id": "001042", "name": "R. DIAS DA CRUZ, 69 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901962, "longitude": -43.279594, "objects": [], "identifications": []}, {"id": "001370", "name": "AV. PRINCESA ISABEL - COPACABANA- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96300956, "longitude": -43.17449153, "objects": [], "identifications": []}, {"id": "001315", "name": "R. SANTA CLARA X AV. ATL\u00c2NTICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.79/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97287, "longitude": -43.18595, "objects": [], "identifications": []}, {"id": "000021", "name": "PRA\u00c7A DA BANDEIRA", "rtsp_url": "rtsp://admin:admin@10.52.36.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910919, "longitude": -43.213874, "objects": [], "identifications": []}, {"id": "003382", "name": "ESTR. DOS BANDEIRANTES, 12833-12817 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992414, "longitude": -43.446726, "objects": [], "identifications": []}, {"id": "000483", "name": "ESTRADA DO PONTAL EM FRENTE AO N.\u00ba 6870 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.03024991, "longitude": -43.47844879, "objects": [], "identifications": []}, {"id": "004259", "name": "R. DOIS DE FEVEREIRO X AV. AMARO CAVALCANTI", "rtsp_url": "rtsp://admin:123smart@10.52.216.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895956, "longitude": -43.300677, "objects": [], "identifications": []}, {"id": "002515", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87764484, "longitude": -43.33706992, "objects": [], "identifications": []}, {"id": "001076", "name": "RUA CONDE DE BONFIM X R. RADMAKER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93451957, "longitude": -43.24304072, "objects": [], "identifications": []}, {"id": "001632", "name": "AV. MARACAN\u00c3, 970 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923123, "longitude": -43.236016, "objects": [], "identifications": []}, {"id": "000460", "name": "AV. MINISTRO EDGARD ROMERO X R. CONSELHEIRO GALV\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.46/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87229, "longitude": -43.336387, "objects": [], "identifications": []}, {"id": "002407", "name": "ILHA PURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.4.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98981433, "longitude": -43.41792998, "objects": [], "identifications": []}, {"id": "001202", "name": "AV. ATL\u00c2NTICA - COPACABANA - FIXA", "rtsp_url": "rtsp://10.52.252.129/", "update_interval": 120, "latitude": -22.98351891, "longitude": -43.1896651, "objects": [], "identifications": []}, {"id": "002326", "name": "SANTA M\u00d4NICA JARDINS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.5.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00022252, "longitude": -43.39848265, "objects": [], "identifications": []}, {"id": "001891", "name": "ESTR. DO MENDANHA, 1149 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.179/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879001, "longitude": -43.554758, "objects": [], "identifications": []}, {"id": "000388", "name": "R. HEMENGARDA X JOAQUIM MEIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903837, "longitude": -43.278715, "objects": [], "identifications": []}, {"id": "000520", "name": "ESTR. DO PAU-FERRO X ESTR. DO GUANUMBI", "rtsp_url": "rtsp://10.50.224.115/520-VIDEO", "update_interval": 120, "latitude": -22.932706, "longitude": -43.330454, "objects": [], "identifications": []}, {"id": "004282", "name": "AV. RODRIGO OT\u00c1VIO, PROX. ARENA JOCKEY", "rtsp_url": "rtsp://admin:123smart@10.52.37.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97318928, "longitude": -43.22524783, "objects": [], "identifications": []}, {"id": "001998", "name": "R. HENRY FORD, 301", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.138/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9289714, "longitude": -43.2339482, "objects": [], "identifications": []}, {"id": "001396", "name": "PRAIA DO FLAMENGO X AV. OSWALDO CRUZ - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9387028, "longitude": -43.17378083, "objects": [], "identifications": []}, {"id": "001345", "name": "AV. HENRIQUE DODSWORTH, 64 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976664, "longitude": -43.195109, "objects": [], "identifications": []}, {"id": "003649", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 7225 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.213/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84806, "longitude": -43.3237, "objects": [], "identifications": []}, {"id": "000038", "name": "RUA TEIXEIRA DE CASTRO X AV. DOS CAMPE\u00d5ES - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.855061, "longitude": -43.251987, "objects": [], "identifications": []}, {"id": "001073", "name": "AV. LINEU DE P. MACHADO X R. JOS\u00c9 JOAQUIM SEABRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96416266, "longitude": -43.21623665, "objects": [], "identifications": []}, {"id": "002314", "name": "BARRA SHOPPING - PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.100.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99999496, "longitude": -43.36160398, "objects": [], "identifications": []}, {"id": "001177", "name": "AV. ATL\u00c2NTICA X R. ANCHIETA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96364467, "longitude": -43.16979344, "objects": [], "identifications": []}, {"id": "003321", "name": "RUA CAMBA\u00faBA, 448 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.124/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8091289, "longitude": -43.2083119, "objects": [], "identifications": []}, {"id": "004084", "name": "ESTR. DOS BANDEIRANTES, 1540 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.937721, "longitude": -43.372344, "objects": [], "identifications": []}, {"id": "001249", "name": "AV. ATL\u00c2NTICA X R. SANTA CLARA, POSTO BR - FIXA", "rtsp_url": "rtsp://10.52.252.85/", "update_interval": 120, "latitude": -22.973449, "longitude": -43.186078, "objects": [], "identifications": []}, {"id": "002304", "name": "RIVIERA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.104.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00027002, "longitude": -43.34231383, "objects": [], "identifications": []}, {"id": "002535", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83969976, "longitude": -43.23975514, "objects": [], "identifications": []}, {"id": "001044", "name": "R. DIAS DA CRUZ, 163 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90291088, "longitude": -43.28215593, "objects": [], "identifications": []}, {"id": "003684", "name": "AV. PASTOR MARTIN LUTHER KING JR. 10972 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82725, "longitude": -43.34717, "objects": [], "identifications": []}, {"id": "002045", "name": "PRACA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.35.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838619, "longitude": -43.294788, "objects": [], "identifications": []}, {"id": "003714", "name": "RUA MARIA JOS\u00e9, 318 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.211/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.880237, "longitude": -43.344752, "objects": [], "identifications": []}, {"id": "003581", "name": "ESTR. DOS BANDEIRANTES, 5900 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96154411, "longitude": -43.39564416, "objects": [], "identifications": []}, {"id": "000298", "name": "R. EPIT\u00c1CIO PESSOA X R. VINICIUS DE MORAIS", "rtsp_url": "rtsp://admin:admin@10.52.24.5/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979536, "longitude": -43.202644, "objects": [], "identifications": []}, {"id": "001371", "name": "AV. NOSSA SRA. DE COPACABANA, 68 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96386777, "longitude": -43.17421124, "objects": [], "identifications": []}, {"id": "000363", "name": "AV. BRASIL X TREVO DAS MARGARIDAS", "rtsp_url": "rtsp://admin:admin@10.50.224.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82214057, "longitude": -43.31976235, "objects": [], "identifications": []}, {"id": "001789", "name": "R. BOA VISTA, 111-71 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963734, "longitude": -43.275644, "objects": [], "identifications": []}, {"id": "003618", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 4221 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.866589, "longitude": -43.30606, "objects": [], "identifications": []}, {"id": "002191", "name": "CESAR\u00c3O II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.38.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933434, "longitude": -43.661933, "objects": [], "identifications": []}, {"id": "001647", "name": "R. S\u00c3O CLEMENTE, 466 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952577, "longitude": -43.196284, "objects": [], "identifications": []}, {"id": "002218", "name": "ICURANA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.48.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915293, "longitude": -43.606135, "objects": [], "identifications": []}, {"id": "002142", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89719163, "longitude": -43.35188615, "objects": [], "identifications": []}, {"id": "003779", "name": "PASSARELA ENGENH\u00e3O - PORT\u00e3O ALA SUL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89506056, "longitude": -43.29283759, "objects": [], "identifications": []}, {"id": "002461", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91672988, "longitude": -43.68372787, "objects": [], "identifications": []}, {"id": "001925", "name": "R. S\u00c3O LUIZ GONZAGA, 1667", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8979917, "longitude": -43.236923, "objects": [], "identifications": []}, {"id": "001921", "name": "ESTR. DO MENDANHA, 4240 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8618516, "longitude": -43.5414545, "objects": [], "identifications": []}, {"id": "001200", "name": "AV. ATL\u00c2NTICA, 4240 - FIXA", "rtsp_url": "rtsp://10.52.21.18/", "update_interval": 120, "latitude": -22.98621673, "longitude": -43.18881325, "objects": [], "identifications": []}, {"id": "001973", "name": "ESTR. VER. ALCEU DE CARVALHO, 226-564", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.029094, "longitude": -43.492394, "objects": [], "identifications": []}, {"id": "001688", "name": "AV. \u00c9DISON PASSOS, 637 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94948, "longitude": -43.260452, "objects": [], "identifications": []}, {"id": "002232", "name": "S\u00c3O JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.52.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91097794, "longitude": -43.58449669, "objects": [], "identifications": []}, {"id": "003572", "name": "AV. PARANAPUAM, 2326", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.124/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80317637, "longitude": -43.18164117, "objects": [], "identifications": []}, {"id": "001251", "name": "AV. LAURO SODR\u00c9, 20 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95663056, "longitude": -43.17772349, "objects": [], "identifications": []}, {"id": "000485", "name": "AV. DAS AM\u00c9RICAS X ESTR. BENVINDO DE NOVAES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.94/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01305144, "longitude": -43.46352352, "objects": [], "identifications": []}, {"id": "001471", "name": "AV. DO PEP X AV. OLEGRIO MACIEL - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.50.106.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01514496, "longitude": -43.30576978, "objects": [], "identifications": []}, {"id": "003653", "name": "AV. PASTOR MARTIN LUTHER KING JUNIOR 74 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.217/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.874603, "longitude": -43.281488, "objects": [], "identifications": []}, {"id": "000466", "name": "AV. DAS AM\u00c9RICAS X SHOPPING RECREIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.020528, "longitude": -43.490238, "objects": [], "identifications": []}, {"id": "001762", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.82/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958189, "longitude": -43.265197, "objects": [], "identifications": []}, {"id": "000833", "name": "R. MARQUES DE ABRANTES X R. MARQUES DE PARANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.938009, "longitude": -43.177722, "objects": [], "identifications": []}, {"id": "001032", "name": "RUA ANA BARBOSA N\u00ba12 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90162576, "longitude": -43.28052342, "objects": [], "identifications": []}, {"id": "000334", "name": "R. CONDE DE BONFIM X R. S\u00c3O FRANCISCO XAVIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921915, "longitude": -43.221416, "objects": [], "identifications": []}, {"id": "001060", "name": "ESTR. DO PORTELA 247 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87068846, "longitude": -43.34182943, "objects": [], "identifications": []}, {"id": "002266", "name": "DOM BOSCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.22.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018183, "longitude": -43.50929, "objects": [], "identifications": []}, {"id": "000314", "name": "PRAIA DO FLAMENGO X R. FERREIRA VIANA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.927656, "longitude": -43.173941, "objects": [], "identifications": []}, {"id": "003803", "name": "R. RIO GRANDE DO SUL X R. ARISTIDES CAIRE - M\u00e9IER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.898553, "longitude": -43.277564, "objects": [], "identifications": []}, {"id": "003322", "name": "PRA\u00e7A JERUSAL\u00e9M N\u00ba 241", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.125/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8193511, "longitude": -43.2020761, "objects": [], "identifications": []}, {"id": "002148", "name": "PINTO TELES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.24.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88820104, "longitude": -43.34575175, "objects": [], "identifications": []}, {"id": "003575", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 5000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.127/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854195, "longitude": -43.312727, "objects": [], "identifications": []}, {"id": "001117", "name": "RUA MARQU\u00caS DE S\u00c3O VICENTE X R. VICE-GOV. RUBENS BERARDO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97714671, "longitude": -43.23073507, "objects": [], "identifications": []}, {"id": "003384", "name": "ESTR. DOS BANDEIRANTES, 12427 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.208/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.991737, "longitude": -43.445642, "objects": [], "identifications": []}, {"id": "002157", "name": "IBIAPINA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.40.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8423759, "longitude": -43.27246268, "objects": [], "identifications": []}, {"id": "000574", "name": "R. XAVIER MARQUES X R. CEL. AGOSTINHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.17/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90389, "longitude": -43.559139, "objects": [], "identifications": []}, {"id": "003292", "name": "ESTR. DOS BANDEIRANTES, 21979 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987522, "longitude": -43.484395, "objects": [], "identifications": []}, {"id": "004090", "name": "ESTR. DO MONTEIRO, 101 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910055, "longitude": -43.566089, "objects": [], "identifications": []}, {"id": "003695", "name": "AV. NOSSA SRA. DE COPACABANA X R BELFORT ROXO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96469202, "longitude": -43.17592198, "objects": [], "identifications": []}, {"id": "001904", "name": "ESTR. DO MENDANHA, 3500 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.863843, "longitude": -43.547585, "objects": [], "identifications": []}, {"id": "001402", "name": "R. MARIO CARVALHO X AV. PST M. LUTHER KING JR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852282, "longitude": -43.31603335, "objects": [], "identifications": []}, {"id": "004185", "name": "R. DEM\u00e9TRIO DE TOL\u00eaDO, 151 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79319, "longitude": -43.18413, "objects": [], "identifications": []}, {"id": "002438", "name": "PE. JO\u00c3O CRIBBIN / MARECHAL MALLET - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.19.2/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.875771, "longitude": -43.405322, "objects": [], "identifications": []}, {"id": "001890", "name": "ESTR. DO MENDANHA, 1105 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.178/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.880277, "longitude": -43.555245, "objects": [], "identifications": []}, {"id": "000392", "name": "DOM HELDER CAMARA X R. CACHAMBI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88488391, "longitude": -43.27794905, "objects": [], "identifications": []}, {"id": "004010", "name": "ESTR. DOS BANDEIRANTES, 27629 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99145458, "longitude": -43.50448674, "objects": [], "identifications": []}, {"id": "000042", "name": "RUA PRAIA DO FLAMENGO X RUA BAR\u00c3O DO FLAMENGO", "rtsp_url": "rtsp://10.52.14.143/042-VIDEO", "update_interval": 120, "latitude": -22.933241, "longitude": -43.174673, "objects": [], "identifications": []}, {"id": "000255", "name": "R. TONELERO X R. FIGUEIREDO MAGALH\u00c3ES", "rtsp_url": "rtsp://admin:admin@10.52.20.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968163, "longitude": -43.187943, "objects": [], "identifications": []}, {"id": "002265", "name": "DOM BOSCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.22.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018348, "longitude": -43.50867, "objects": [], "identifications": []}, {"id": "001723", "name": "AV. \u00c9DISON PASSOS, 934 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.46/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950587, "longitude": -43.2619, "objects": [], "identifications": []}, {"id": "001649", "name": "R. S\u00c3O CLEMENTE X DONA MARIANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94972696, "longitude": -43.19003593, "objects": [], "identifications": []}, {"id": "000013", "name": "PRAIA DE BOTAGO X VIADUTO SANTIAGO DANTAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.943196, "longitude": -43.18166, "objects": [], "identifications": []}, {"id": "002234", "name": "PINA RANGEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.53.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90750444, "longitude": -43.57576085, "objects": [], "identifications": []}, {"id": "003495", "name": "R. MARINO DA COSTA, 725 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.810323, "longitude": -43.208662, "objects": [], "identifications": []}, {"id": "001157", "name": "AV. RIO BRANCO, 4700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91405137, "longitude": -43.17467677, "objects": [], "identifications": []}, {"id": "001924", "name": "R. DR. RODRIGUES DE SANTANA, 3A", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895785, "longitude": -43.2374382, "objects": [], "identifications": []}, {"id": "003939", "name": "ESTR. DOS BANDEIRANTES, 25139-25135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.41/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9768422, "longitude": -43.49364608, "objects": [], "identifications": []}, {"id": "000636", "name": "AV. BRASIL X R. LEOC\u00c1DIO FIGUEIREDO - GUADALUPE SHOPPING", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.247/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84057995, "longitude": -43.36928373, "objects": [], "identifications": []}, {"id": "004044", "name": "ESTR. DOS BANDEIRANTES, 3786 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95117025, "longitude": -43.37392065, "objects": [], "identifications": []}, {"id": "000028", "name": "AV. ATL\u00c2NTICA X RUA RAINHA ELIZABETH", "rtsp_url": "rtsp://admin:7LANMSTR@10.52.21.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984335, "longitude": -43.189473, "objects": [], "identifications": []}, {"id": "004093", "name": "AV. ATL\u00e2NTICA, 22 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.31.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96634689, "longitude": -43.17610221, "objects": [], "identifications": []}, {"id": "001561", "name": "COMLURB - R. RIO GRANDE DO SUL, 26 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.898263, "longitude": -43.276429, "objects": [], "identifications": []}, {"id": "003565", "name": "R. PRIMEIRO DE MAR\u00c7O X R. SETE DE SETEMBRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903397, "longitude": -43.175241, "objects": [], "identifications": []}, {"id": "001896", "name": "ESTR. DO MENDANHA, 1966-1986 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.184/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8744188, "longitude": -43.5537439, "objects": [], "identifications": []}, {"id": "003850", "name": "ESTR. DOS BANDEIRANTES, 25422-25636 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979256, "longitude": -43.504892, "objects": [], "identifications": []}, {"id": "000484", "name": "AV. DAS AM\u00c9RICAS X AV. SALVADOR ALLENDE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00637287, "longitude": -43.43713414, "objects": [], "identifications": []}, {"id": "003791", "name": "AV. PASTOR MARTIN LUTHER KING JUNIOR, 4036 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86590855, "longitude": -43.30193277, "objects": [], "identifications": []}, {"id": "001931", "name": "ESTR. DAS FURNAS, 3063-3055", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98296897, "longitude": -43.29826398, "objects": [], "identifications": []}, {"id": "003169", "name": "TERMINAL ALVORADA B", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000664, "longitude": -43.36452, "objects": [], "identifications": []}, {"id": "001222", "name": "R. TONELERO X R. FIGUEIREDO MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96783763, "longitude": -43.18792221, "objects": [], "identifications": []}, {"id": "001207", "name": "AVENIDA ATL\u00c2NTICA, 3958, EM FRENTE \u00c0, R. JULIO - FIXA", "rtsp_url": "rtsp://10.52.252.132/", "update_interval": 120, "latitude": -22.98331113, "longitude": -43.18935279, "objects": [], "identifications": []}, {"id": "001091", "name": "AV. PASTOR MARTIN LUTHER KING JR.\u00a0X AV. MONSENHOR FELIX - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84713155, "longitude": -43.32467703, "objects": [], "identifications": []}, {"id": "003811", "name": "AV. CES\u00e1RIO DE MELO, 677 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894786, "longitude": -43.543746, "objects": [], "identifications": []}, {"id": "003458", "name": "ESTR. DOS BANDEIRANTES, 11059 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986507, "longitude": -43.432039, "objects": [], "identifications": []}, {"id": "000034", "name": "RUA VISCONDE DE PIRAJ\u00c1 X RUA GOMES CARNEIRO.", "rtsp_url": "rtsp://10.52.22.144/axis-media/media.amp", "update_interval": 120, "latitude": -22.98483, "longitude": -43.195183, "objects": [], "identifications": []}, {"id": "001047", "name": "R. ARQUIAS CORDEIRO 346 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90176457, "longitude": -43.27785793, "objects": [], "identifications": []}, {"id": "000594", "name": "RUA SENADOR CAMAR\u00c1, 207", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.29/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914262, "longitude": -43.686219, "objects": [], "identifications": []}, {"id": "003138", "name": "ESTRADA CEL. PEDRO CORR\u00caA 120-140.", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.74/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96808, "longitude": -43.390844, "objects": [], "identifications": []}, {"id": "000337", "name": "R. BAR\u00c3O DE MESQUITA X R. JOS\u00c9 HIGINO", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.924237, "longitude": -43.240396, "objects": [], "identifications": []}, {"id": "004126", "name": "R. DOM CARLOS, 27", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892973, "longitude": -43.228685, "objects": [], "identifications": []}, {"id": "004071", "name": "ESTR. DOS BANDEIRANTES, 3917-3961 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.177/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95529222, "longitude": -43.37765993, "objects": [], "identifications": []}, {"id": "003617", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X RUA ARC\u00e1DIA", "rtsp_url": "rtsp://admin2:7lanmstr@10.52.211.181/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.864895, "longitude": -43.30713, "objects": [], "identifications": []}, {"id": "001999", "name": "AV. PASTOR MARTIN LUTHER KING J\u00daNIOR, 11009 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8260986, "longitude": -43.3488001, "objects": [], "identifications": []}, {"id": "001112", "name": "R. AMARO CAVALCANTI X VIADUTO DE TODOS OS SANTOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89730765, "longitude": -43.28563647, "objects": [], "identifications": []}, {"id": "001657", "name": "AV. MARACAN\u00c3, N\u00ba 160", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913204, "longitude": -43.227261, "objects": [], "identifications": []}, {"id": "004263", "name": "RUA ULYSSES GUIMAR\u00e3ES, 4 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.245.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91220851, "longitude": -43.20521777, "objects": [], "identifications": []}, {"id": "001285", "name": "AV. ATL\u00c2NTICA X RUA SANTA CLARA - FIXA", "rtsp_url": "rtsp://10.52.252.183/", "update_interval": 120, "latitude": -22.9732152, "longitude": -43.18599985, "objects": [], "identifications": []}, {"id": "001642", "name": "R. PEREIRA NUNES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923836, "longitude": -43.236111, "objects": [], "identifications": []}, {"id": "004034", "name": "AV. DE SANTA CRUZ, 12457 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.75/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894063, "longitude": -43.53368, "objects": [], "identifications": []}, {"id": "000018", "name": "RUA M\u00c1RIO RIBEIRO X AV. BORGES DE MEDEIROS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976902, "longitude": -43.21908, "objects": [], "identifications": []}, {"id": "000421", "name": "LINHA VERMELHA ALT. DA AV. BRIGADEIRO TROMPOWSKI", "rtsp_url": "rtsp://admin:admin@10.52.211.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842977, "longitude": -43.238479, "objects": [], "identifications": []}, {"id": "003304", "name": "ESTR. DOS BANDEIRANTES,20265 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9836, "longitude": -43.470621, "objects": [], "identifications": []}, {"id": "001361", "name": "AV. HENRIQUE DODSWORTH, 193 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.212/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97653707, "longitude": -43.19780227, "objects": [], "identifications": []}, {"id": "002177", "name": "GALE\u00c3O TOM JOBIM 2 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.46.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81462743, "longitude": -43.24586528, "objects": [], "identifications": []}, {"id": "000060", "name": "AV. AYRTON SENNA X AV. L\u00daCIO COSTA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.84/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.010777, "longitude": -43.365974, "objects": [], "identifications": []}, {"id": "001749", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.70/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95704, "longitude": -43.268156, "objects": [], "identifications": []}, {"id": "001374", "name": "AV. NOSSA SRA. DE COPACABANA X AV PRINCESA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96388814, "longitude": -43.17378544, "objects": [], "identifications": []}, {"id": "003619", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3839 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.183/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86671, "longitude": -43.30226, "objects": [], "identifications": []}, {"id": "001605", "name": "MONUMENTO ZUMBI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906779, "longitude": -43.196588, "objects": [], "identifications": []}, {"id": "002492", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88455781, "longitude": -43.39995242, "objects": [], "identifications": []}, {"id": "001742", "name": "AV. \u00c9DISON PASSOS, 2395", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9554, "longitude": -43.265319, "objects": [], "identifications": []}, {"id": "003178", "name": "AV. SALVADOR ALLENDE RECREIO DOS BANDEIRANTES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.003092, "longitude": -43.433462, "objects": [], "identifications": []}, {"id": "002484", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88442687, "longitude": -43.39931677, "objects": [], "identifications": []}, {"id": "000891", "name": "AV. LUCIO COSTA X RUA ALBERT SABINN - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.028236, "longitude": -43.466651, "objects": [], "identifications": []}, {"id": "001944", "name": "ESTRADA RIO S\u00c3O PAULO 1456 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.208/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8880079, "longitude": -43.5680954, "objects": [], "identifications": []}, {"id": "002172", "name": "LOURENCO JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.2.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99465729, "longitude": -43.36584562, "objects": [], "identifications": []}, {"id": "001046", "name": "R. ARQUIAS CORDEIRO 346 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90165462, "longitude": -43.27796656, "objects": [], "identifications": []}, {"id": "003821", "name": "AV. JOAQUIM MAGALH\u00e3ES, 495 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89117, "longitude": -43.53269, "objects": [], "identifications": []}, {"id": "003358", "name": "ESTR. DOS BANDEIRANTES, 15050 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982512, "longitude": -43.463208, "objects": [], "identifications": []}, {"id": "003635", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 426 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87512, "longitude": -43.282725, "objects": [], "identifications": []}, {"id": "001776", "name": "AV. \u00c9DISON PASSOS, 4271 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.96/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9603921, "longitude": -43.27202794, "objects": [], "identifications": []}, {"id": "000393", "name": "R. HEMENGARDA X R. LINS DE VASCONCELOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.71/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906716, "longitude": -43.276305, "objects": [], "identifications": []}, {"id": "002363", "name": "GUIOMAR NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.18.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01843611, "longitude": -43.48259779, "objects": [], "identifications": []}, {"id": "002120", "name": "VILA SAPE - IV CENTENARIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.12.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95249963, "longitude": -43.3747636, "objects": [], "identifications": []}, {"id": "003648", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 7337 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.212/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84734, "longitude": -43.32519, "objects": [], "identifications": []}, {"id": "001041", "name": "R. CONSTAN\u00c7A BARBOSA X AV. CAVALCANTI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90047319, "longitude": -43.2797054, "objects": [], "identifications": []}, {"id": "002350", "name": "GUIGNARD - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.13.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01077987, "longitude": -43.45265355, "objects": [], "identifications": []}, {"id": "001180", "name": "R. MIGUEL LEMOS X R. BARATA RIBEIRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.205/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97742665, "longitude": -43.19270625, "objects": [], "identifications": []}, {"id": "003839", "name": "ESTR. DOS BANDEIRANTES, 24160 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97635841, "longitude": -43.49478441, "objects": [], "identifications": []}, {"id": "001662", "name": "AV. RADIAL OESTE, 6007", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910549, "longitude": -43.228401, "objects": [], "identifications": []}, {"id": "004004", "name": "R. CONDE DE BONFIM 610 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93088, "longitude": -43.2383, "objects": [], "identifications": []}, {"id": "002327", "name": "RIO MAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.6.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99994751, "longitude": -43.40689294, "objects": [], "identifications": []}, {"id": "000162", "name": "LINHA VERMELHA - KM 1 X PISTA INFERIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89458, "longitude": -43.219829, "objects": [], "identifications": []}, {"id": "002524", "name": "MERCAD\u00c3O - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.27.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87035737, "longitude": -43.33565995, "objects": [], "identifications": []}, {"id": "000583", "name": "AV. BRASIL X ESTR. RIO-S\u00c3O PAULO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.868979, "longitude": -43.596368, "objects": [], "identifications": []}, {"id": "001916", "name": "ESTRADA RIO S\u00c3O PAULO 883 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891212, "longitude": -43.564705, "objects": [], "identifications": []}, {"id": "002215", "name": "PARQUE S\u00c3O PAULO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.46.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916227, "longitude": -43.622696, "objects": [], "identifications": []}, {"id": "000254", "name": "R. MIGUEL LEMOS X R. BARATA RIBEIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977439, "longitude": -43.192835, "objects": [], "identifications": []}, {"id": "000032", "name": "AV. EPIT\u00c1CIO PESSOA X RUA MARIA QUIT\u00c9RIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980723, "longitude": -43.207148, "objects": [], "identifications": []}, {"id": "003139", "name": "AV. NOSSA SRA. DE COPACABANA X RUA BOL\u00cdVAR.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.975875, "longitude": -43.190084, "objects": [], "identifications": []}, {"id": "004082", "name": "ESTR. DOS BANDEIRANTES, 1700 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.939767, "longitude": -43.372813, "objects": [], "identifications": []}, {"id": "000775", "name": "QUINTA DA BOA VISTA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904731, "longitude": -43.220328, "objects": [], "identifications": []}, {"id": "000059", "name": "AV. AYRTON SENNA X HOSPITAL LOUREN\u00c7O JORGE", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.995624, "longitude": -43.365883, "objects": [], "identifications": []}, {"id": "003583", "name": "ESTR. DOS BANDEIRANTES, 5920 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96161, "longitude": -43.3967, "objects": [], "identifications": []}, {"id": "000610", "name": "AV. EMBAIXADOR ABELARDO BUENO - EM FRENTE 73", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.4/cam/realmonitor?channel=1&subtype=2&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9737359, "longitude": -43.40020534, "objects": [], "identifications": []}, {"id": "000272", "name": "R. VISC. DE PIRAJ\u00c1 X R. TEIXEIRA DE MELO (P\u00c7A. GAL. OS\u00d3RIO)", "rtsp_url": "rtsp://10.50.224.134/272-VIDEO", "update_interval": 120, "latitude": -22.984649, "longitude": -43.198693, "objects": [], "identifications": []}, {"id": "000870", "name": "AV. OLEG\u00c1RIO MACIEL X AV. GILBERTO AMADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.011972, "longitude": -43.304979, "objects": [], "identifications": []}, {"id": "002404", "name": "TAPEBUIAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.3.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99995991, "longitude": -43.42949621, "objects": [], "identifications": []}, {"id": "004121", "name": "AV. NIEMEYER, 72", "rtsp_url": "rtsp://admin:123smart@10.52.37.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99078853, "longitude": -43.22938085, "objects": [], "identifications": []}, {"id": "003735", "name": "R. CANDIDO BENICIO X ESTRADA INTENDENTE MAGALH\u00e3ES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88311445, "longitude": -43.34257344, "objects": [], "identifications": []}, {"id": "002124", "name": "ANDRE ROCHA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.17.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92950909, "longitude": -43.37340305, "objects": [], "identifications": []}, {"id": "001730", "name": "AV. \u00c9DISON PASSOS, 1240-1410 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.51/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951255, "longitude": -43.259331, "objects": [], "identifications": []}, {"id": "001616", "name": "PRA\u00c7A PARIS - ENTRADA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91701262, "longitude": -43.17634714, "objects": [], "identifications": []}, {"id": "002305", "name": "RIVIERA - BRT - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.151.104.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00028764, "longitude": -43.34162933, "objects": [], "identifications": []}, {"id": "001665", "name": "VIADUTO CRIST\u00d3V\u00c3O COLOMBO, 159", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.880774, "longitude": -43.289579, "objects": [], "identifications": []}, {"id": "001405", "name": "PRA\u00c7A NOSSA SENHORA AUXILIADORA 93 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97763908, "longitude": -43.22219685, "objects": [], "identifications": []}, {"id": "001995", "name": "PRA\u00c7A GABRIEL SOARES, 409", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931481, "longitude": -43.23443, "objects": [], "identifications": []}, {"id": "002514", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87761271, "longitude": -43.33708333, "objects": [], "identifications": []}, {"id": "002134", "name": "ARACY CABRAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.19.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91999796, "longitude": -43.36798054, "objects": [], "identifications": []}, {"id": "003499", "name": "AV. ISABEL, 362 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.52/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92599, "longitude": -43.69024, "objects": [], "identifications": []}, {"id": "003128", "name": "AV. PASTOR MARTIN LUTHER KING JR., 11363 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.251/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.824659, "longitude": -43.350029, "objects": [], "identifications": []}, {"id": "002035", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842229, "longitude": -43.276621, "objects": [], "identifications": []}, {"id": "001243", "name": "AV. ATL\u00c2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.96/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977288, "longitude": -43.187999, "objects": [], "identifications": []}, {"id": "001110", "name": "R. CONDE DE BONFIM X R. DOS ARA\u00daJOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92523, "longitude": -43.225606, "objects": [], "identifications": []}, {"id": "001937", "name": "R. DR. RODRIGUES DE SANTANA, 69-15 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8962144, "longitude": -43.2386555, "objects": [], "identifications": []}, {"id": "001599", "name": "SUB DO VIADUTO SAO SEBASTIAO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909005, "longitude": -43.196809, "objects": [], "identifications": []}, {"id": "003280", "name": "PR. BELO JARDIM X ESTR. DO GALE\u00e3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.92/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.820537, "longitude": -43.227394, "objects": [], "identifications": []}, {"id": "002408", "name": "ILHA PURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.4.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98957907, "longitude": -43.41763105, "objects": [], "identifications": []}, {"id": "000179", "name": "AV. VICENTE DE CARVALHO X RUA CAROEM - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842347, "longitude": -43.299856, "objects": [], "identifications": []}, {"id": "002171", "name": "LOURENCO JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.2.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99500177, "longitude": -43.3658433, "objects": [], "identifications": []}, {"id": "001982", "name": "ESTR. VER. ALCEU DE CARVALHO - 2879 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00406296, "longitude": -43.49352683, "objects": [], "identifications": []}, {"id": "003785", "name": "AV. L\u00faCIO COSTA, 5800", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.94/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.010475, "longitude": -43.355403, "objects": [], "identifications": []}, {"id": "000394", "name": "R. DIAS DA CRUZ X R. MAGALHAES COUTO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903605, "longitude": -43.284321, "objects": [], "identifications": []}, {"id": "000589", "name": "R. FELIPE CARDOSO X AV. ISABEL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919718, "longitude": -43.68197, "objects": [], "identifications": []}, {"id": "000106", "name": "R. LEON\u00cdDIA X R. VASSALO CARUSO - BRT", "rtsp_url": "rtsp://10.52.210.84/", "update_interval": 120, "latitude": -22.850865, "longitude": -43.263564, "objects": [], "identifications": []}, {"id": "001781", "name": "PRA\u00c7A AFONSO VISEU, 27 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96099419, "longitude": -43.2731082, "objects": [], "identifications": []}, {"id": "003164", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 8 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.20.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.960992, "longitude": -43.190731, "objects": [], "identifications": []}, {"id": "002126", "name": "ANDRE ROCHA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.17.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.929251, "longitude": -43.373532, "objects": [], "identifications": []}, {"id": "003746", "name": "R. MARQU\u00caS DE ABRANTES X ALTURA DA P.DE BOTAFOGO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94083003, "longitude": -43.17871437, "objects": [], "identifications": []}, {"id": "004208", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 10158", "rtsp_url": "rtsp://admin:123smart@10.52.216.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88192844, "longitude": -43.32533008, "objects": [], "identifications": []}, {"id": "001521", "name": "ESTR. DO QUITUNGO, 1919 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.139/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83632, "longitude": -43.307471, "objects": [], "identifications": []}, {"id": "001319", "name": "AV. ATL\u00c2NTICA N 18- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.216/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96970146, "longitude": -43.18197682, "objects": [], "identifications": []}, {"id": "003775", "name": "RUA HENRIQUE SCHEID, 294 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88938432, "longitude": -43.28981555, "objects": [], "identifications": []}, {"id": "000789", "name": "AV. SALVADOR DE S\u00c1 X RUA EST\u00c1CIO DE S\u00c1 X FREI CANECA", "rtsp_url": "rtsp://admin:admin@10.52.33.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91384364, "longitude": -43.20440066, "objects": [], "identifications": []}, {"id": "003701", "name": "AV. NIEMEYER PROX. HOTEL NACIONAL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.181/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99834617, "longitude": -43.25616871, "objects": [], "identifications": []}, {"id": "001347", "name": "AV. HENRIQUE DODSWORTH, 64-142 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976828, "longitude": -43.19634, "objects": [], "identifications": []}, {"id": "000468", "name": "AV. AYRTON SENNA X CIDADE DA ARTE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00342823, "longitude": -43.366288, "objects": [], "identifications": []}, {"id": "000328", "name": "AUTO ESTR. LAGOA-BARRA X EST. DA G\u00c1VEA", "rtsp_url": "rtsp://admin:admin@10.50.106.81/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99236313, "longitude": -43.25165276, "objects": [], "identifications": []}, {"id": "000455", "name": "AV. ERNANI CARDOSO X ALBERTO SILVA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882581, "longitude": -43.337642, "objects": [], "identifications": []}, {"id": "002429", "name": "VILA MILITAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.21.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86224644, "longitude": -43.40060053, "objects": [], "identifications": []}, {"id": "001349", "name": "AV. NOSSA SRA. DE COPACABANA, 1033 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97813058, "longitude": -43.19061036, "objects": [], "identifications": []}, {"id": "003710", "name": "R. QUAXIMA X PAULO PORTELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879044, "longitude": -43.337069, "objects": [], "identifications": []}, {"id": "002144", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89725586, "longitude": -43.35175471, "objects": [], "identifications": []}, {"id": "003198", "name": "ESTRADA BENVINDO DE NOVAES, 2223 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.174/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.008713, "longitude": -43.459854, "objects": [], "identifications": []}, {"id": "003238", "name": "AVENIDA SARGENTO DE MIL\u00edCIAS, 2113", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.804975, "longitude": -43.363106, "objects": [], "identifications": []}, {"id": "004046", "name": "ESTR. DOS BANDEIRANTES, 3458 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95207998, "longitude": -43.37463947, "objects": [], "identifications": []}, {"id": "003377", "name": "ESTR. DOS BANDEIRANTES, 13787 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98897295, "longitude": -43.45411501, "objects": [], "identifications": []}, {"id": "002213", "name": "PARQUE S\u00c3O PAULO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.46.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916265, "longitude": -43.62236, "objects": [], "identifications": []}, {"id": "004104", "name": "AV. ATL\u00c2NTICA X R. DUVIVIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.966889, "longitude": -43.177194, "objects": [], "identifications": []}, {"id": "001725", "name": "AV. \u00c9DISON PASSOS, 1011 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.48/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951153, "longitude": -43.261803, "objects": [], "identifications": []}, {"id": "001596", "name": "RETORNO VIADUTO 31 DE MAR\u00c7O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911447, "longitude": -43.195545, "objects": [], "identifications": []}, {"id": "003580", "name": "ESTR. DOS BANDEIRANTES, 5832 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96104, "longitude": -43.39431, "objects": [], "identifications": []}, {"id": "000184", "name": "AV. VICENTE DE CARVALHO X RUA FL\u00c1MINIA - BRT", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.845981, "longitude": -43.302541, "objects": [], "identifications": []}, {"id": "003191", "name": "AV. GLAUCIO GIL, 770 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018084, "longitude": -43.459916, "objects": [], "identifications": []}, {"id": "001738", "name": "AV. \u00c9DISON PASSOS, 1919 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953563, "longitude": -43.261949, "objects": [], "identifications": []}, {"id": "002281", "name": "VENDAS DE VARANDA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.30.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95112556, "longitude": -43.65057787, "objects": [], "identifications": []}, {"id": "000365", "name": "R. DR. SATAMINI X R. CAMPOS SALES", "rtsp_url": "rtsp://admin:admin@10.52.252.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918308, "longitude": -43.217307, "objects": [], "identifications": []}, {"id": "002417", "name": "MORRO DO OUTEIRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.9.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97146744, "longitude": -43.40135684, "objects": [], "identifications": []}, {"id": "001698", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95294, "longitude": -43.261063, "objects": [], "identifications": []}, {"id": "001692", "name": "AV. \u00c9DISON PASSOS, 1237-1199 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.23/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951614, "longitude": -43.260078, "objects": [], "identifications": []}, {"id": "000503", "name": "AV. NELSON CARDOSO X R. BACAIRIS", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921718, "longitude": -43.371212, "objects": [], "identifications": []}, {"id": "004195", "name": "AV. SALVADOR DE S\u00e1, 214", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912863, "longitude": -43.202307, "objects": [], "identifications": []}, {"id": "004166", "name": "AV. MAESTRO PAULO E SILVA 109", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.83/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80116, "longitude": -43.2018, "objects": [], "identifications": []}, {"id": "003187", "name": "AV. GLAUCIO GIL, 984 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.016037, "longitude": -43.460605, "objects": [], "identifications": []}, {"id": "001918", "name": "ESTR. DO MENDANHA, 4017 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.862775, "longitude": -43.544143, "objects": [], "identifications": []}, {"id": "003979", "name": "RUA CONDE DE BONFIM, 1310-1382 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.67/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94627, "longitude": -43.25563, "objects": [], "identifications": []}, {"id": "002057", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852657, "longitude": -43.312151, "objects": [], "identifications": []}, {"id": "001149", "name": "ESTR. DA BARRA DA TIJUCA 506 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00763403, "longitude": -43.30255091, "objects": [], "identifications": []}, {"id": "003150", "name": "T\u00daNEL VELHO SENT. COPACABANA - 4 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96145362, "longitude": -43.19099758, "objects": [], "identifications": []}, {"id": "000196", "name": "ESTR. DOS BANDEIRANTES X R. ANDR\u00c9 ROCHA - BRT", "rtsp_url": "rtsp://ineo:telca2000@10.50.106.99/mpeg4/ch1/sub/av_stream", "update_interval": 120, "latitude": -22.929257, "longitude": -43.373999, "objects": [], "identifications": []}, {"id": "001518", "name": "R. ENG. FRANCELINO MOTA, 627-489 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.833729, "longitude": -43.309377, "objects": [], "identifications": []}, {"id": "000077", "name": "R. TEODORO DA SILVA X R. BAR\u00c3O DE S\u00c3O FRANCISCO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9186, "longitude": -43.251042, "objects": [], "identifications": []}, {"id": "001883", "name": "R. JOS\u00c9 DO PATROC\u00cdNIO, 320-390", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919014, "longitude": -43.262755, "objects": [], "identifications": []}, {"id": "003157", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96283953, "longitude": -43.19138361, "objects": [], "identifications": []}, {"id": "003757", "name": "AV. DOM H\u00e9LDER C\u00e2MARA 7000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88275869, "longitude": -43.29597301, "objects": [], "identifications": []}, {"id": "002039", "name": "PASTOR JOS\u00c9 SANTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.37.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839119, "longitude": -43.283395, "objects": [], "identifications": []}, {"id": "000572", "name": "ESTR. RIO DO A X ESTR. RIO S\u00c3O PAULO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894372, "longitude": -43.560072, "objects": [], "identifications": []}, {"id": "000158", "name": "AV. BRASIL X ENTRADA DE SANTA CRUZ", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893129, "longitude": -43.67449199, "objects": [], "identifications": []}, {"id": "003218", "name": "RUA JOAQUIM CARDOZO, 90 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.189/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.024275, "longitude": -43.457486, "objects": [], "identifications": []}, {"id": "001051", "name": "R. CAROLINA MEIER, 26 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90175597, "longitude": -43.27628366, "objects": [], "identifications": []}, {"id": "003412", "name": "ESTR. DOS BANDEIRANTES, 25.976 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.236/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98451517, "longitude": -43.50599765, "objects": [], "identifications": []}, {"id": "000846", "name": "AV. BORGES DE MEDEIROS X PARQUE DOS PATINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97027, "longitude": -43.217357, "objects": [], "identifications": []}, {"id": "004007", "name": "RUA CONDE DE BONFIM, 529 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9287197, "longitude": -43.2366668, "objects": [], "identifications": []}, {"id": "003633", "name": "PRA\u00e7A ALM. JOS\u00e9 JOAQUIM IN\u00e1CIO, 1899 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.197/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.874549, "longitude": -43.286168, "objects": [], "identifications": []}, {"id": "003720", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.236/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88078091, "longitude": -43.35325143, "objects": [], "identifications": []}, {"id": "003538", "name": "ESTR. DO RIO JEQUI\u00e1, 518", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82051363, "longitude": -43.17970018, "objects": [], "identifications": []}, {"id": "002502", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00658684, "longitude": -43.31368226, "objects": [], "identifications": []}, {"id": "004242", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 5800", "rtsp_url": "rtsp://admin:123smart@10.52.211.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88706032, "longitude": -43.28716575, "objects": [], "identifications": []}, {"id": "003683", "name": "ESTRADA EM\u00edLIO MAURELL FILHO 1900 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.880385, "longitude": -43.269244, "objects": [], "identifications": []}, {"id": "000278", "name": "R. TONELERO X R. SIQUEIRA CAMPOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.39.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.967156, "longitude": -43.18629, "objects": [], "identifications": []}, {"id": "001220", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96283956, "longitude": -43.16700998, "objects": [], "identifications": []}, {"id": "002135", "name": "ARACY CABRAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.19.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92023018, "longitude": -43.36834666, "objects": [], "identifications": []}, {"id": "003998", "name": "RUA CONDE DE BONFIM, 685 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.932264, "longitude": -43.240329, "objects": [], "identifications": []}, {"id": "001204", "name": "AV. ATL\u00c2NTICA X R. SOUZA LIMA - FIXA", "rtsp_url": "rtsp://10.52.252.122/", "update_interval": 120, "latitude": -22.981846, "longitude": -43.189783, "objects": [], "identifications": []}, {"id": "001086", "name": "AV. BORGES DE MEDEIROS X R. MARIA ANG\u00c9LICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96300703, "longitude": -43.20745826, "objects": [], "identifications": []}, {"id": "001584", "name": "AV. PRES.VARGAS X AV. RIO BRANCO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9011713, "longitude": -43.17903539, "objects": [], "identifications": []}, {"id": "004107", "name": "R. TONELERO, 36", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964655, "longitude": -43.180979, "objects": [], "identifications": []}, {"id": "003186", "name": "AV. GLAUCIO GIL, 1078 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01491631, "longitude": -43.46115229, "objects": [], "identifications": []}, {"id": "002508", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0014564, "longitude": -43.36574392, "objects": [], "identifications": []}, {"id": "003339", "name": "ESTRADA DO GALE\u00e3O . EM FRENTE A PARANAPUAN - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81516361, "longitude": -43.18799908, "objects": [], "identifications": []}, {"id": "002240", "name": "C\u00c2NDIDO MAGALH\u00c3ES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.55.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907631, "longitude": -43.56397519, "objects": [], "identifications": []}, {"id": "001621", "name": "RUA DO PASSEIO, 70 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914498, "longitude": -43.178182, "objects": [], "identifications": []}, {"id": "004066", "name": "ESTR. DOS BANDEIRANTES, 3300 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.172/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953559, "longitude": -43.375731, "objects": [], "identifications": []}, {"id": "002330", "name": "INTERLAGOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.8.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00101635, "longitude": -43.41776003, "objects": [], "identifications": []}, {"id": "001239", "name": "AV. ATL\u00c2NTICA X R BAR\u00c3O DE IPANEMA - FIXA", "rtsp_url": "rtsp://10.52.252.92/", "update_interval": 120, "latitude": -22.975697, "longitude": -43.187354, "objects": [], "identifications": []}, {"id": "003804", "name": "ESTR. DOS BANDEIRANTES, 802 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.930285, "longitude": -43.373434, "objects": [], "identifications": []}, {"id": "002256", "name": "CESAR\u00c3O I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.37.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934581, "longitude": -43.665326, "objects": [], "identifications": []}, {"id": "001400", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X ALT. BOTAFOGO PRAIA SHOPPING - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94824397, "longitude": -43.18201422, "objects": [], "identifications": []}, {"id": "000017", "name": "AV. BORGES DE MEDEIROS X AV. EPIT\u00c1CIO PESSOA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963021, "longitude": -43.204446, "objects": [], "identifications": []}, {"id": "000029", "name": "CORTE DO CANTAGALO X PRA\u00c7A EUG\u00caNIO JARDIM", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.211/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976515, "longitude": -43.194135, "objects": [], "identifications": []}, {"id": "002173", "name": "LOURENCO JORGE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.2.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99431524, "longitude": -43.36584331, "objects": [], "identifications": []}, {"id": "003788", "name": "AV. DELFIM MOREIRA X R. BARTOLOMEU MITRE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.123/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98725686, "longitude": -43.22228008, "objects": [], "identifications": []}, {"id": "003724", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES, 323-297 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881944, "longitude": -43.350054, "objects": [], "identifications": []}, {"id": "001428", "name": "AV. NIEMEYER 359 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99671382, "longitude": -43.23660219, "objects": [], "identifications": []}, {"id": "003293", "name": "ESTR. DOS BANDEIRANTES, 21717 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987968, "longitude": -43.481604, "objects": [], "identifications": []}, {"id": "003768", "name": "AV. DELFIM MOREIRA X R. BARTOLOMEU MITRE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.120/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98688031, "longitude": -43.22237263, "objects": [], "identifications": []}, {"id": "002209", "name": "SANTA EUG\u00caNIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.44.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916796, "longitude": -43.632772, "objects": [], "identifications": []}, {"id": "003981", "name": "R. CONDE DE BONFIM 297 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92319695, "longitude": -43.23089346, "objects": [], "identifications": []}, {"id": "003506", "name": "ESTR. DOS BANDEIRANTES, 8614 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977121, "longitude": -43.416883, "objects": [], "identifications": []}, {"id": "003297", "name": "ESTR. DOS BANDEIRANTES, 21361 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98717, "longitude": -43.47776, "objects": [], "identifications": []}, {"id": "001627", "name": "AV. MEM DE S\u00c1, 1565 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913334, "longitude": -43.179936, "objects": [], "identifications": []}, {"id": "004058", "name": "ESTR. DO MONTEIRO ALT. PARK SHOPPING", "rtsp_url": "rtsp://admin:123smart@10.52.216.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92752954, "longitude": -43.57236056, "objects": [], "identifications": []}, {"id": "001886", "name": "R. BAR\u00c3O DE IGUATEMI, 370 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913473, "longitude": -43.215065, "objects": [], "identifications": []}, {"id": "001711", "name": "T\u00daNEL NOEL ROSA - SA\u00cdDA VILA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91371616, "longitude": -43.25194227, "objects": [], "identifications": []}, {"id": "001431", "name": "AV. NIEMEYER 318 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.154/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99772069, "longitude": -43.23932507, "objects": [], "identifications": []}, {"id": "002402", "name": "CATEDRAL DO RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.2.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00403923, "longitude": -43.43417361, "objects": [], "identifications": []}, {"id": "000338", "name": "RUA BAR\u00c3O DE MESQUITA X RUA PAULA BRITO", "rtsp_url": "rtsp://10.50.224.210/338-VIDEO", "update_interval": 120, "latitude": -22.923931, "longitude": -43.251908, "objects": [], "identifications": []}, {"id": "003797", "name": "AV. MARACAN\u00e3 X RUA MARECHAL TROMPOWSKI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.936171, "longitude": -43.245977, "objects": [], "identifications": []}, {"id": "001811", "name": "ESTR. DAS FURNAS, 1042 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.11/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97178913, "longitude": -43.28336276, "objects": [], "identifications": []}, {"id": "004136", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.40/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85363694, "longitude": -43.38411086, "objects": [], "identifications": []}, {"id": "004016", "name": "ESTRADA DO GUERENGU\u00ea, 2 X ESTRADA DOS BANDEIRANTES - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.193/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93163492, "longitude": -43.3733483, "objects": [], "identifications": []}, {"id": "003762", "name": "R. GUILHERMINA, 239 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.230/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892897, "longitude": -43.301058, "objects": [], "identifications": []}, {"id": "003685", "name": "AV. PASTOR MARTIN LUTHER KING JR., 10974 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.826941, "longitude": -43.34739, "objects": [], "identifications": []}, {"id": "000504", "name": "R. BACAIRIS X R. APIAC\u00c1S - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920986, "longitude": -43.371674, "objects": [], "identifications": []}, {"id": "000083", "name": "R. ARQUIAS CORDEIRO X R. JOS\u00c9 DOS REIS (ENGENH\u00c3O)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895252, "longitude": -43.295713, "objects": [], "identifications": []}, {"id": "001212", "name": "AV. ATL\u00c2NTICA X R. FRANCISCO S\u00c1 - FIXA", "rtsp_url": "rtsp://10.52.252.126/", "update_interval": 120, "latitude": -22.982918, "longitude": -43.189372, "objects": [], "identifications": []}, {"id": "002400", "name": "CATEDRAL DO RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.2.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00387406, "longitude": -43.43406238, "objects": [], "identifications": []}, {"id": "004153", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85409777, "longitude": -43.38374996, "objects": [], "identifications": []}, {"id": "003476", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91180907, "longitude": -43.25227149, "objects": [], "identifications": []}, {"id": "004209", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 10238", "rtsp_url": "rtsp://admin:123smart@10.52.216.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882014, "longitude": -43.325516, "objects": [], "identifications": []}, {"id": "003459", "name": "ESTR. DOS BANDEIRANTES, 11059 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986607, "longitude": -43.432039, "objects": [], "identifications": []}, {"id": "003246", "name": "AV. SRG. DE MIL\u00edCIAS, 831 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.1/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8044862, "longitude": -43.3600062, "objects": [], "identifications": []}, {"id": "000268", "name": "R. DO CATETE X R. DAS LARANJEIRAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931059, "longitude": -43.177708, "objects": [], "identifications": []}, {"id": "002529", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83906453, "longitude": -43.23978736, "objects": [], "identifications": []}, {"id": "002094", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97330863, "longitude": -43.38234783, "objects": [], "identifications": []}, {"id": "001860", "name": "ESTR. DAS FURNAS, 3950 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984217, "longitude": -43.300005, "objects": [], "identifications": []}, {"id": "001679", "name": "EST. DO CABU\u00c7U, 2219", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91266423, "longitude": -43.54424946, "objects": [], "identifications": []}, {"id": "003676", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR , ALT. SHOP. NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.237/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87835657, "longitude": -43.27338113, "objects": [], "identifications": []}, {"id": "000230", "name": "R. S\u00c3O LUIZ GONZAGA X CAMPO DE S\u00c3O CRIST\u00d3V\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.146/sub", "update_interval": 120, "latitude": -22.89962, "longitude": -43.223047, "objects": [], "identifications": []}, {"id": "003385", "name": "ESTR. DOS BANDEIRANTES, 12427 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.991837, "longitude": -43.445642, "objects": [], "identifications": []}, {"id": "000078", "name": "AV. REI PEL\u00c9 X R. S\u00c3O FRANCISCO XAVIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908611, "longitude": -43.238374, "objects": [], "identifications": []}, {"id": "000324", "name": "R. POMPEU LOUREIRO X R. BOLIVAR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.975532, "longitude": -43.193532, "objects": [], "identifications": []}, {"id": "000220", "name": "AV. ALM. BARROSO X AV. GRA\u00c7A ARANHA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907556, "longitude": -43.174821, "objects": [], "identifications": []}, {"id": "000407", "name": "RUA CARDOSO DE MORAIS X R. DONA ISABEL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.175/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8660697, "longitude": -43.25566553, "objects": [], "identifications": []}, {"id": "003266", "name": "MONUMENTO PEDRO II - QUINTA DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90535, "longitude": -43.22477, "objects": [], "identifications": []}, {"id": "001989", "name": "ESTR. DO RIO MORTO, 3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.236/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986815, "longitude": -43.489588, "objects": [], "identifications": []}, {"id": "004167", "name": "PRAIA DO ZUMBI, 11", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.84/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.821096, "longitude": -43.173475, "objects": [], "identifications": []}, {"id": "003716", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.213/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882794, "longitude": -43.345176, "objects": [], "identifications": []}, {"id": "002332", "name": "INTERLAGOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.8.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00088045, "longitude": -43.41746037, "objects": [], "identifications": []}, {"id": "002165", "name": "VIA PARQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.4.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98427211, "longitude": -43.36567944, "objects": [], "identifications": []}, {"id": "000895", "name": "AV. DAS AM\u00c9RICAS, SA\u00cdDA DO T. DA GROTA FUNDA - SENTIDO GUARATIBA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.015903, "longitude": -43.517289, "objects": [], "identifications": []}, {"id": "001857", "name": "ESTR. DAS FURNAS, 3997-4055 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.71/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98243443, "longitude": -43.29986229, "objects": [], "identifications": []}, {"id": "000354", "name": "R. PROFESSOR MANOEL DE ABREU X R. FELIPE CAMAR\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915699, "longitude": -43.235321, "objects": [], "identifications": []}, {"id": "002523", "name": "MERCAD\u00c3O - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.27.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87039197, "longitude": -43.33553926, "objects": [], "identifications": []}, {"id": "000591", "name": "R. FELIPE CARDOSO X AV. ENG\u00ba GAST\u00c3O RANGEL", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92711, "longitude": -43.678165, "objects": [], "identifications": []}, {"id": "003798", "name": "MONUMENTO ALDIR BLANC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93622657, "longitude": -43.24591235, "objects": [], "identifications": []}, {"id": "002019", "name": "MAR\u00c9 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.44.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.847137, "longitude": -43.244025, "objects": [], "identifications": []}, {"id": "001716", "name": "AV. \u00c9DISON PASSOS, 346-398 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.40/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94731939, "longitude": -43.25925217, "objects": [], "identifications": []}, {"id": "001368", "name": "AV. PRINCESA ISABEL - COPACABANA- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96289349, "longitude": -43.1745425, "objects": [], "identifications": []}, {"id": "000537", "name": "AVENIDA ALFREDO BALTAZAR DA SILVEIRA X RUA ODILON DUARTE BRAGA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.126/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01200056, "longitude": -43.44374712, "objects": [], "identifications": []}, {"id": "003341", "name": "R. BOM RETIRO, 31 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80659819, "longitude": -43.1984414, "objects": [], "identifications": []}, {"id": "000588", "name": "R. FELIPE CARDOSO X AV. CES\u00c1RIO DE MELO (P\u00c7A. SANTA CRUZ)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.935591, "longitude": -43.666942, "objects": [], "identifications": []}, {"id": "003255", "name": "R. BENEDITO OTONI, 46 - S\u00e3O CRIST\u00f3V\u00e3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8995661, "longitude": -43.2146122, "objects": [], "identifications": []}, {"id": "001626", "name": "R. RIACHUELO X R. FRANCISCO MURAT\u00d3RI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914207, "longitude": -43.182463, "objects": [], "identifications": []}, {"id": "000758", "name": "AV. MARACANA X PRA\u00c7A LUIS LA SAIGNE", "rtsp_url": "rtsp://admin:admin@10.52.208.47/cam/realmonitor?channel=1&subtype=2&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921331, "longitude": -43.235703, "objects": [], "identifications": []}, {"id": "003502", "name": "ESTR. DOS BANDEIRANTES, 8484 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.55/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.974186, "longitude": -43.414674, "objects": [], "identifications": []}, {"id": "001739", "name": "AV. \u00c9DISON PASSOS, 2029 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.60/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954388, "longitude": -43.262788, "objects": [], "identifications": []}, {"id": "001683", "name": "RUA CONDE DE BONFIM, 1339 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946315, "longitude": -43.255448, "objects": [], "identifications": []}, {"id": "001138", "name": "R. MUNIZ BARRETO X R. MARQUES DE OLINDA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94362303, "longitude": -43.18365921, "objects": [], "identifications": []}, {"id": "003783", "name": "RUA REINALDO MATOS REI,10", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88620523, "longitude": -43.28879454, "objects": [], "identifications": []}, {"id": "003285", "name": "ESTRADA DO GALE\u00e3O PROX R. ESPUMAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81300069, "longitude": -43.21994918, "objects": [], "identifications": []}, {"id": "004056", "name": "ESTR. DO MONTEIRO, 1317 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.237/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93073, "longitude": -43.57411, "objects": [], "identifications": []}, {"id": "004054", "name": "ESTR. DO MONTEIRO, 1119 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.927637, "longitude": -43.572492, "objects": [], "identifications": []}, {"id": "001897", "name": "ESTR. DO MENDANHA, 2066 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.185/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87345, "longitude": -43.553065, "objects": [], "identifications": []}, {"id": "000305", "name": "AV. PASTEUR X ALT. INSTITUTO BENJAMIM CONSTANT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953009, "longitude": -43.172418, "objects": [], "identifications": []}, {"id": "003252", "name": "R. GEN. ROCA, 932 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.205/cam/realmonitor?channel=0&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92372365, "longitude": -43.23477908, "objects": [], "identifications": []}, {"id": "001544", "name": "AV. AMARO CAVALCANTI, 693 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897675, "longitude": -43.283768, "objects": [], "identifications": []}, {"id": "001670", "name": "R. DA ABOLI\u00c7\u00c3O, 058", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89004, "longitude": -43.29436, "objects": [], "identifications": []}, {"id": "001346", "name": "AV. HENRIQUE DODSWORTH, 64 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97678623, "longitude": -43.19543487, "objects": [], "identifications": []}, {"id": "003725", "name": "AV. ERNANI CARDOSO, 371-361", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882715, "longitude": -43.339471, "objects": [], "identifications": []}, {"id": "002358", "name": "BENVINDO DE NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.15.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01452039, "longitude": -43.4669724, "objects": [], "identifications": []}, {"id": "001718", "name": "AV. \u00c9DISON PASSOS, 603- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.42/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94925764, "longitude": -43.26003008, "objects": [], "identifications": []}, {"id": "003373", "name": "ESTR. DOS BANDEIRANTES, 13951 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987873, "longitude": -43.455468, "objects": [], "identifications": []}, {"id": "003313", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979432, "longitude": -43.230711, "objects": [], "identifications": []}, {"id": "002250", "name": "GAST\u00c3O RANGEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.34.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.927563, "longitude": -43.677554, "objects": [], "identifications": []}, {"id": "002034", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842129, "longitude": -43.276621, "objects": [], "identifications": []}, {"id": "001528", "name": "AV. FRANCISCO BICALHO, 2042 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90635727, "longitude": -43.21006306, "objects": [], "identifications": []}, {"id": "000044", "name": "RUA JARDIM BOT\u00c2NICO X RUA PACHECO LE\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96639, "longitude": -43.219492, "objects": [], "identifications": []}, {"id": "003307", "name": "RUA CAMBA\u00faBA, 1290 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8152141, "longitude": -43.2064024, "objects": [], "identifications": []}, {"id": "003641", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.205/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86952, "longitude": -43.291093, "objects": [], "identifications": []}, {"id": "004015", "name": "ESTRADA DO GUERENGU\u00ea, 2 X ESTRADA DOS BANDEIRANTES - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931525, "longitude": -43.373296, "objects": [], "identifications": []}, {"id": "003359", "name": "ESTR. DOS BANDEIRANTES, 15050 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.183/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982612, "longitude": -43.463208, "objects": [], "identifications": []}, {"id": "001845", "name": "ESTR. DAS FURNAS, 3006 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.60/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982214, "longitude": -43.295484, "objects": [], "identifications": []}, {"id": "004174", "name": "RUA LOUREN\u00e7O DA VEIGA, 40 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.823976, "longitude": -43.168124, "objects": [], "identifications": []}, {"id": "001650", "name": "ESTR. DAS CAPOEIRAS, 39 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.172/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895512, "longitude": -43.558826, "objects": [], "identifications": []}, {"id": "004009", "name": "ESTR. DOS BANDEIRANTES, 27629 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.991441, "longitude": -43.504588, "objects": [], "identifications": []}, {"id": "001311", "name": "AV. GILKA MACHADO X ESTR. DO PONTAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.03093407, "longitude": -43.47178059, "objects": [], "identifications": []}, {"id": "002467", "name": "TERMINAL RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.1.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00826972, "longitude": -43.43968878, "objects": [], "identifications": []}, {"id": "000596", "name": "AV. BRASIL X ESTR. DO CAMPINHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881187, "longitude": -43.632492, "objects": [], "identifications": []}, {"id": "004169", "name": "RUA FIGUEIRA DA FOZ, 123", "rtsp_url": "rtsp://admin:123smart@10.52.216.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8026143, "longitude": -43.2092311, "objects": [], "identifications": []}, {"id": "001942", "name": "BLOCO L - R. MATA MACHADO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9125257, "longitude": -43.2259951, "objects": [], "identifications": []}, {"id": "001582", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9067, "longitude": -43.196613, "objects": [], "identifications": []}, {"id": "004234", "name": "R. S\u00e1 FREIRE, 58 - LPR - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.32.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890419, "longitude": -43.221437, "objects": [], "identifications": []}, {"id": "003677", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 4806-4878", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.864583, "longitude": -43.305901, "objects": [], "identifications": []}, {"id": "002101", "name": "PEDRO CORREIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.8.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96739961, "longitude": -43.39052093, "objects": [], "identifications": []}, {"id": "003823", "name": "AV. JOAQUIM MAGALH\u00e3ES, 180 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891842, "longitude": -43.529575, "objects": [], "identifications": []}, {"id": "003298", "name": "ESTR. DOS BANDEIRANTES, 21361 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98711, "longitude": -43.47776, "objects": [], "identifications": []}, {"id": "001215", "name": "R. REAL GRANDEZA, 384 - BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95953612, "longitude": -43.19104971, "objects": [], "identifications": []}, {"id": "002306", "name": "RICARDO MARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.103.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00017993, "longitude": -43.34645197, "objects": [], "identifications": []}, {"id": "003533", "name": "ESTR. DO RIO JEQUI\u00e1, 501 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.96/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82010753, "longitude": -43.17842103, "objects": [], "identifications": []}, {"id": "000345", "name": "AV. MARACAN\u00c3 X MATA MACHADO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912302, "longitude": -43.22663, "objects": [], "identifications": []}, {"id": "001724", "name": "AV. \u00c9DISON PASSOS, 603- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.47/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949955, "longitude": -43.261717, "objects": [], "identifications": []}, {"id": "000557", "name": "AV. DE SANTA CRUZ X ESTR. DO REALENGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.118/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.877974, "longitude": -43.441604, "objects": [], "identifications": []}, {"id": "001453", "name": "PORT\u00c3O DO BRT - AV. CES\u00c1RIO DE MELLO, 8121 - COSMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.125/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915894, "longitude": -43.608132, "objects": [], "identifications": []}, {"id": "002255", "name": "PARQUE DAS ROSAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.102.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000125, "longitude": -43.352172, "objects": [], "identifications": []}, {"id": "003996", "name": "RUA CONDE DE BONFIM, 743 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.127/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933515, "longitude": -43.241798, "objects": [], "identifications": []}, {"id": "004247", "name": "R. ARQUIAS CORDEIRO X R. JOSE BONIFACIO", "rtsp_url": "rtsp://admin:123smart@10.52.211.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89741519, "longitude": -43.2832885, "objects": [], "identifications": []}, {"id": "000312", "name": "R. PEDRO AM\u00c9RICO X R. DO CATETE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923635, "longitude": -43.177375, "objects": [], "identifications": []}, {"id": "003204", "name": "AV. GLAUCIO GIL, 201 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0226615, "longitude": -43.45786633, "objects": [], "identifications": []}, {"id": "004279", "name": "RUA PINTO DE AZEVEDO 190", "rtsp_url": "rtsp://admin:123smart@10.52.245.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91189317, "longitude": -43.20411434, "objects": [], "identifications": []}, {"id": "002499", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00653747, "longitude": -43.31303855, "objects": [], "identifications": []}, {"id": "001209", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://10.52.252.120/", "update_interval": 120, "latitude": -22.980605, "longitude": -43.189594, "objects": [], "identifications": []}, {"id": "003631", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 2113 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.873178, "longitude": -43.287599, "objects": [], "identifications": []}, {"id": "002264", "name": "RECANTO DAS GAR\u00c7AS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.20.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.021074, "longitude": -43.49627, "objects": [], "identifications": []}, {"id": "000595", "name": "R. D. JO\u00c3O VI X R. SENADOR C\u00c2MARA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915512, "longitude": -43.684849, "objects": [], "identifications": []}, {"id": "001027", "name": "R. ARISTIDES CAIRE X R. SANTA F\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.100/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89946262, "longitude": -43.27859966, "objects": [], "identifications": []}, {"id": "000706", "name": "R. ENGENHEIRO TRAJANO DE MEDEIROS X R. CARINHANHA", "rtsp_url": "rtsp://admin:admin@10.52.208.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.872911, "longitude": -43.41286, "objects": [], "identifications": []}, {"id": "000137", "name": "R. IBIAPINA X R. MONSENHOR ALVES - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841588, "longitude": -43.274756, "objects": [], "identifications": []}, {"id": "003245", "name": "R. SRG. BASILEU DA COSTA X AV. SRG. DE MIL\u00edCIAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.254/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80469, "longitude": -43.36153, "objects": [], "identifications": []}, {"id": "001810", "name": "RUA ANAEL ROSA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.20/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971743, "longitude": -43.283226, "objects": [], "identifications": []}, {"id": "000067", "name": "PRAIA DE S\u00c3O CONRADO X AV. PROF. MENDES DE MORAIS", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.999993, "longitude": -43.269206, "objects": [], "identifications": []}, {"id": "004189", "name": "R. PIO DUTRA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.792821, "longitude": -43.174245, "objects": [], "identifications": []}, {"id": "001227", "name": "AV. NOSSA SRA DE COPACABANA X R. FIG. MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97015081, "longitude": -43.18597184, "objects": [], "identifications": []}, {"id": "003756", "name": "AV. DOM H\u00e9LDER C\u00e2MARA 7000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.234/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882797, "longitude": -43.296028, "objects": [], "identifications": []}, {"id": "003505", "name": "ESTR. DOS BANDEIRANTES, 8614 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.58/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97702, "longitude": -43.416811, "objects": [], "identifications": []}, {"id": "003189", "name": "AV. GLAUCIO GIL, 810 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.016661, "longitude": -43.460269, "objects": [], "identifications": []}, {"id": "001994", "name": "RUA ITACURU\u00c7\u00c1, 99 - TIJUCA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933836, "longitude": -43.238285, "objects": [], "identifications": []}, {"id": "001430", "name": "AV. NIEMEYER 318 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.997696, "longitude": -43.239254, "objects": [], "identifications": []}, {"id": "003837", "name": "ESTR. DOS BANDEIRANTES, 24499 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977285, "longitude": -43.497318, "objects": [], "identifications": []}, {"id": "003590", "name": "ESTR. DOS BANDEIRANTES, 7590 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96642619, "longitude": -43.41177551, "objects": [], "identifications": []}, {"id": "000279", "name": "R. MENA BARRETO X R. D\u00aa MARIANA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954951, "longitude": -43.187384, "objects": [], "identifications": []}, {"id": "002453", "name": "VENTURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.13.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94765, "longitude": -43.39196, "objects": [], "identifications": []}, {"id": "004119", "name": "AV. PRES. VARGAS ALT. CORREIOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90919052, "longitude": -43.20283578, "objects": [], "identifications": []}, {"id": "000212", "name": "AV. RIO BRANCO X R. EVARISTO DA VEIGA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909565, "longitude": -43.176126, "objects": [], "identifications": []}, {"id": "001639", "name": "AV. ARMANDO LOMBARDI, 675 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.83/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.006517, "longitude": -43.31126, "objects": [], "identifications": []}, {"id": "002027", "name": "PENHA I PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841666, "longitude": -43.277165, "objects": [], "identifications": []}, {"id": "002236", "name": "PINA RANGEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.53.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90766646, "longitude": -43.57611152, "objects": [], "identifications": []}, {"id": "001174", "name": "AV. ATL\u00c2NTICA X R. FIGUEIREDO DE MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971662, "longitude": -43.18428, "objects": [], "identifications": []}, {"id": "000845", "name": "JOQUEI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973291, "longitude": -43.225274, "objects": [], "identifications": []}, {"id": "001902", "name": "ESTR. DO MENDANHA, 3050 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.190/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.866407, "longitude": -43.551514, "objects": [], "identifications": []}, {"id": "003827", "name": "R. JOAQUIM SILVA, 93 X ESCADARIA SELAR\u00f3N - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91513446, "longitude": -43.17897429, "objects": [], "identifications": []}, {"id": "002192", "name": "CESAR\u00c3O III - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.39.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931727, "longitude": -43.657266, "objects": [], "identifications": []}, {"id": "001777", "name": "ESTR. VELHA DA TIJUCA, 2424 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96034921, "longitude": -43.27170348, "objects": [], "identifications": []}, {"id": "004135", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.39/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85360359, "longitude": -43.38417121, "objects": [], "identifications": []}, {"id": "001835", "name": "ESTR. DAS FURNAS, 168-260 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.51/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98005, "longitude": -43.293176, "objects": [], "identifications": []}, {"id": "003176", "name": "ESTR. DOS BANDEIRANTES, 8613", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.974649, "longitude": -43.414683, "objects": [], "identifications": []}, {"id": "001145", "name": "AUTO ESTR. LAGOA-BARRA X EST. DA G\u00c1VEA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99240733, "longitude": -43.25190403, "objects": [], "identifications": []}, {"id": "002184", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97228, "longitude": -43.40096, "objects": [], "identifications": []}, {"id": "003496", "name": "RUA CAMBA\u00faBA, 875- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.49/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8119613, "longitude": -43.2084123, "objects": [], "identifications": []}, {"id": "000264", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X ALT. BOTAFOGO PRAIA SHOPPING - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.948139, "longitude": -43.182033, "objects": [], "identifications": []}, {"id": "002295", "name": "BOSQUE MARAPENDI - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.151.107.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00368952, "longitude": -43.32301355, "objects": [], "identifications": []}, {"id": "001809", "name": "ESTR. DAS FURNAS, 775-681 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.17/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970419, "longitude": -43.281203, "objects": [], "identifications": []}, {"id": "002345", "name": "GELSON FONSECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.12.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00978007, "longitude": -43.44864289, "objects": [], "identifications": []}, {"id": "002225", "name": "GOLFE OLIMP\u00cdCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.7.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00002808, "longitude": -43.41219849, "objects": [], "identifications": []}, {"id": "003820", "name": "AV. JOAQUIM MAGALH\u00e3ES, 521 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890583, "longitude": -43.534361, "objects": [], "identifications": []}, {"id": "003230", "name": "AV. CANAL ARROIO PAVUNA X PEDRO PEREIRA PINTO", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.152/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.961361, "longitude": -43.381074, "objects": [], "identifications": []}, {"id": "002040", "name": "GUAPORE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.36.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83772, "longitude": -43.289513, "objects": [], "identifications": []}, {"id": "000842", "name": "AV. LINEU DE P. MACHADO X R. BATISTA DA COSTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964217, "longitude": -43.216124, "objects": [], "identifications": []}, {"id": "004072", "name": "ESTR. DOS BANDEIRANTES, 3914 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.178/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95629, "longitude": -43.378832, "objects": [], "identifications": []}, {"id": "003594", "name": "ESTR. DOS BANDEIRANTES, 8626 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9782, "longitude": -43.41774, "objects": [], "identifications": []}, {"id": "001577", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9074519, "longitude": -43.19798789, "objects": [], "identifications": []}, {"id": "003986", "name": "ESTR. DOS BANDEIRANTES, 23487 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.49/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97924223, "longitude": -43.49189917, "objects": [], "identifications": []}, {"id": "004129", "name": "R. DON\u00e1 DARC\u00ed VARGAS, 14", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.27/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.889885, "longitude": -43.229552, "objects": [], "identifications": []}, {"id": "003845", "name": "PRA\u00e7A ITAPEVI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902275, "longitude": -43.293229, "objects": [], "identifications": []}, {"id": "000513", "name": "AV. GEREM\u00c1RIO DANTAS X SOB LINHA AMARELA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93819, "longitude": -43.349368, "objects": [], "identifications": []}, {"id": "003731", "name": "AV. ERNANI CARDOSO, 190 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.221/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8823184, "longitude": -43.33441852, "objects": [], "identifications": []}, {"id": "003212", "name": "AV. AYRTON SENNA, 3437", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.47/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97971915, "longitude": -43.36540114, "objects": [], "identifications": []}, {"id": "003411", "name": "ESTR. DOS BANDEIRANTES, 25.976 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984509, "longitude": -43.506172, "objects": [], "identifications": []}, {"id": "001055", "name": "TERMINAL AM\u00c9RICO AYRES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90179144, "longitude": -43.27518341, "objects": [], "identifications": []}, {"id": "001691", "name": "AV. \u00c9DISON PASSOS, 4200 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951439, "longitude": -43.261532, "objects": [], "identifications": []}, {"id": "003172", "name": "LAGUNE BARRA HOTEL - AV. SALVADOR ALLENDE, 6.555", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979958, "longitude": -43.409981, "objects": [], "identifications": []}, {"id": "001641", "name": "RUA CONDE DE BONFIM - PRA\u00c7A SAENZ PE\u00d1A, 204 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.231/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925137, "longitude": -43.23246, "objects": [], "identifications": []}, {"id": "000178", "name": "VIADUTO ODUVALDO COZZI X S\u00c3O FRANCISCO XAVIER", "rtsp_url": "rtsp://10.52.25.3/178-VIDEO", "update_interval": 120, "latitude": -22.910702, "longitude": -43.224346, "objects": [], "identifications": []}, {"id": "002095", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97323663, "longitude": -43.38204742, "objects": [], "identifications": []}, {"id": "003145", "name": "ESTR. DO PONTAL X AV. ESTADO DA GUANABARA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.9/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.033393, "longitude": -43.492911, "objects": [], "identifications": []}, {"id": "000425", "name": "AV. BRASIL X RUA TEIXEIRA RIBEIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.79/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.856187, "longitude": -43.24768, "objects": [], "identifications": []}, {"id": "001146", "name": "R. IBIAPINA X R. MONSENHOR ALVES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.75/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84178054, "longitude": -43.27451741, "objects": [], "identifications": []}, {"id": "004081", "name": "ESTR. DOS BANDEIRANTES, 1902 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94057473, "longitude": -43.37282668, "objects": [], "identifications": []}, {"id": "002377", "name": "PONTAL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.23.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01628452, "longitude": -43.51601685, "objects": [], "identifications": []}, {"id": "000550", "name": "R. BERNARDO DE VASCONCELOS X PRA\u00c7A DO CANH\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.120/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.876301, "longitude": -43.430233, "objects": [], "identifications": []}, {"id": "002263", "name": "RECANTO DAS GAR\u00c7AS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.20.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.021028, "longitude": -43.496898, "objects": [], "identifications": []}, {"id": "003213", "name": "AV. MARACAN\u00e3 X S\u00e3O FRANCISCO XAVIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915998, "longitude": -43.229708, "objects": [], "identifications": []}, {"id": "000536", "name": "ESTR. DOS TR\u00caS RIOS X R. CMTE RUBENS SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93764629, "longitude": -43.33728808, "objects": [], "identifications": []}, {"id": "003672", "name": "AV. PASTOR MARTIN LUTHER KING JR, 467 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.234/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82959, "longitude": -43.345181, "objects": [], "identifications": []}, {"id": "000226", "name": "R. BENEDITO HIPOLITO X R. SANTANA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90737878, "longitude": -43.19426186, "objects": [], "identifications": []}, {"id": "001181", "name": "R. REAL GRANDEZA X R. ANIBAL REIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95904536, "longitude": -43.19118395, "objects": [], "identifications": []}, {"id": "002025", "name": "PENHA I PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841316, "longitude": -43.276501, "objects": [], "identifications": []}, {"id": "001648", "name": "RUA DONA MARIANA, N 02 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949766, "longitude": -43.18965, "objects": [], "identifications": []}, {"id": "001034", "name": "RUA MEDINA N\u00ba165 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.127/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90053367, "longitude": -43.281945, "objects": [], "identifications": []}, {"id": "001658", "name": "AV. MARACAN\u00c3, N\u00ba 196 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914047, "longitude": -43.227993, "objects": [], "identifications": []}, {"id": "004233", "name": "R. JOS\u00e9 CLEMENTE, 15 - LPR - FIXA", "rtsp_url": "rtsp://admin:smart123@10.52.32.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.888609, "longitude": -43.223128, "objects": [], "identifications": []}, {"id": "003424", "name": "ESTR. DOS BANDEIRANTES, 22667 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986421, "longitude": -43.48969, "objects": [], "identifications": []}, {"id": "000412", "name": "AV. NOVA YORK X AV. BRUXELAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.46/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.865291, "longitude": -43.252775, "objects": [], "identifications": []}, {"id": "001111", "name": "AV. D. HELDER C\u00c2MARA X R. HENRIQUE SCHEID - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8868231, "longitude": -43.28777193, "objects": [], "identifications": []}, {"id": "002141", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89771793, "longitude": -43.35224021, "objects": [], "identifications": []}, {"id": "003122", "name": "ESTR. DOS BANDEIRANTES, 5837", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96182402, "longitude": -43.39699792, "objects": [], "identifications": []}, {"id": "001197", "name": "AV ATLANTICA X R. JULIO DE CASTILHO - FIXA", "rtsp_url": "rtsp://10.52.252.179/", "update_interval": 120, "latitude": -22.98383, "longitude": -43.189629, "objects": [], "identifications": []}, {"id": "001578", "name": "AV. PRESIDENTE VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907436, "longitude": -43.19752, "objects": [], "identifications": []}, {"id": "003310", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.177/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979108, "longitude": -43.231871, "objects": [], "identifications": []}, {"id": "004275", "name": "AV. DAS AM\u00c9RICAS X R. FELIC\u00cdSSIMO CARDOSO - LPR - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.228/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00024907, "longitude": -43.35371153, "objects": [], "identifications": []}, {"id": "002416", "name": "MORRO DO OUTEIRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.9.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97127367, "longitude": -43.40119865, "objects": [], "identifications": []}, {"id": "001681", "name": "RUA CONDE DE BONFIM, 1037 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.247.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94007, "longitude": -43.249187, "objects": [], "identifications": []}, {"id": "001908", "name": "ESTR. RIO S\u00c3O PAULO, 1912 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882571, "longitude": -43.571383, "objects": [], "identifications": []}, {"id": "000069", "name": "AV. REI PEL\u00c9 X R. GENERAL CANABARRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910167, "longitude": -43.22163, "objects": [], "identifications": []}, {"id": "001986", "name": "ESTR. VER. ALCEU DE CARVALHO, 51 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.233/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9958392, "longitude": -43.495055, "objects": [], "identifications": []}, {"id": "001446", "name": "AV. NIEMEYER, 546-548 - S\u00c3O CONRADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.998808, "longitude": -43.25164, "objects": [], "identifications": []}, {"id": "004112", "name": "R. DOM PEDRITO, 200", "rtsp_url": "rtsp://admin:123smart@10.52.216.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904379, "longitude": -43.572908, "objects": [], "identifications": []}, {"id": "004051", "name": "ESTR. DO MONTEIRO, 930 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923681, "longitude": -43.567533, "objects": [], "identifications": []}, {"id": "001608", "name": "R. DO REZENDE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911989, "longitude": -43.183258, "objects": [], "identifications": []}, {"id": "003999", "name": "RUA CONDE DE BONFIM, 665 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931959, "longitude": -43.239685, "objects": [], "identifications": []}, {"id": "003687", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, ALT. METRO NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.247/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87944602, "longitude": -43.27191215, "objects": [], "identifications": []}, {"id": "000242", "name": "R. JARDIM BOTANICO X R. MARIA ANG\u00c9LICA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96065734, "longitude": -43.20797045, "objects": [], "identifications": []}, {"id": "000835", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X BOTAFOGO - FIXA", "rtsp_url": "rtsp://10.52.34.133/", "update_interval": 120, "latitude": -22.9496107, "longitude": -43.18063271, "objects": [], "identifications": []}, {"id": "003579", "name": "ESTR. DOS BANDEIRANTES, 5832 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9611289, "longitude": -43.3942711, "objects": [], "identifications": []}, {"id": "002405", "name": "TAPEBUIAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.3.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00039557, "longitude": -43.42995253, "objects": [], "identifications": []}, {"id": "001213", "name": "AV. ATL\u00c2NTICA X R. FRANCISCO S\u00c1 - FIXA", "rtsp_url": "rtsp://10.52.252.127/", "update_interval": 120, "latitude": -22.98259, "longitude": -43.189437, "objects": [], "identifications": []}, {"id": "001182", "name": "R. REAL GRANDEZA X R. ANIBAL REIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.167/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95917316, "longitude": -43.19112025, "objects": [], "identifications": []}, {"id": "000203", "name": "AV. PRES. VARGAS - ALT. DOS CORREIOS", "rtsp_url": "rtsp://admin:admin@10.52.34.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90951664, "longitude": -43.20381032, "objects": [], "identifications": []}, {"id": "002176", "name": "GALE\u00c3O TOM JOBIM 1 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.47.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81125714, "longitude": -43.2514816, "objects": [], "identifications": []}, {"id": "002441", "name": "MARECHAL FONTENELLE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88587, "longitude": -43.40056, "objects": [], "identifications": []}, {"id": "001026", "name": "R. ARISTIDES CAIRE X R. SANTA F\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.101/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89941568, "longitude": -43.27842867, "objects": [], "identifications": []}, {"id": "001367", "name": "AV. PRINCESA ISABEL - COPACABANA- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96297005, "longitude": -43.17471013, "objects": [], "identifications": []}, {"id": "001061", "name": "R. GENERAL HERCULANO GOMES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9089167, "longitude": -43.22255183, "objects": [], "identifications": []}, {"id": "000331", "name": "AV. EPITACIO PESSOA X ALT. DO PARQUE DA CATACUMBA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973053, "longitude": -43.203244, "objects": [], "identifications": []}, {"id": "001618", "name": "PRA\u00c7A PARIS - BOMBA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91542041, "longitude": -43.17619441, "objects": [], "identifications": []}, {"id": "001899", "name": "ESTR. DO MENDANHA, 2488 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.187/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.869131, "longitude": -43.553993, "objects": [], "identifications": []}, {"id": "003842", "name": "ESTR. DOS BANDEIRANTES, 25121 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977513, "longitude": -43.499562, "objects": [], "identifications": []}, {"id": "002138", "name": "IPASE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.21.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9047268, "longitude": -43.35704472, "objects": [], "identifications": []}, {"id": "004210", "name": "R. CERQUEIRA DALTRO, 31", "rtsp_url": "rtsp://admin:123smart@10.52.216.114/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881581, "longitude": -43.324594, "objects": [], "identifications": []}, {"id": "003110", "name": "AV. PASTOR MARTIN LUTHER KING JR, 11763 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.249/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.820197, "longitude": -43.352603, "objects": [], "identifications": []}, {"id": "002505", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00152061, "longitude": -43.3670743, "objects": [], "identifications": []}, {"id": "002244", "name": "PREFEITO ALIM PEDRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.57.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90367083, "longitude": -43.5663646, "objects": [], "identifications": []}, {"id": "000189", "name": "VD. PREF. NEGR\u00c3O DE LIMA X ESTA\u00c7\u00c3O BRT MADUREIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.57/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.877333, "longitude": -43.336211, "objects": [], "identifications": []}, {"id": "001267", "name": "AV. ALFREDO BALTAZAR DA SILVEIRA X AV. PEDRO MOURA - FIXA", "rtsp_url": "rtsp://10.52.209.121/", "update_interval": 120, "latitude": -23.01808157, "longitude": -43.45049403, "objects": [], "identifications": []}, {"id": "001878", "name": "R. DOM ROSALVO COSTA R\u00caGO, 90 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.210/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9875407, "longitude": -43.3020504, "objects": [], "identifications": []}, {"id": "000070", "name": "R. PEREIRA NUNES X R. BAR\u00c3O DE MESQUITA", "rtsp_url": "rtsp://10.50.224.151/070-VIDEO", "update_interval": 120, "latitude": -22.924089, "longitude": -43.236241, "objects": [], "identifications": []}, {"id": "003702", "name": "AV. LUCIO COSTA X AV. DO CONTORNO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02229573, "longitude": -43.44721846, "objects": [], "identifications": []}, {"id": "000322", "name": "R. GAL. SEVERIANO X P\u00c7A. OZANAN", "rtsp_url": "rtsp://10.52.38.27/", "update_interval": 120, "latitude": -22.95318721, "longitude": -43.17743397, "objects": [], "identifications": []}, {"id": "000095", "name": "R. PINHEIRO MACHADO ALTURA DA R. CARLOS DE CAMPOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93909, "longitude": -43.183244, "objects": [], "identifications": []}, {"id": "003745", "name": "PRA\u00e7A WALDIR VIEIRA", "rtsp_url": "rtsp://admin:123smart@10.50.106.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911377, "longitude": -43.387924, "objects": [], "identifications": []}, {"id": "003485", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90930388, "longitude": -43.25554917, "objects": [], "identifications": []}, {"id": "002296", "name": "BOSQUE MARAPENDI - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.107.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00355126, "longitude": -43.3232308, "objects": [], "identifications": []}, {"id": "000505", "name": "ESTR. DO TINDIBA X R. CAVIANA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918555, "longitude": -43.376051, "objects": [], "identifications": []}, {"id": "003673", "name": "AV. PASTOR MARTIN LUTHER KING JR, 7015 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.828781, "longitude": -43.345866, "objects": [], "identifications": []}, {"id": "001423", "name": "AV. NIEMEYER, 393 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000548, "longitude": -43.245929, "objects": [], "identifications": []}, {"id": "000090", "name": "AV. DOM HELDER C\u00c2MARA X R. GONZAGA DE CAMPOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887579, "longitude": -43.285181, "objects": [], "identifications": []}, {"id": "003664", "name": "AV. GENERAL C\u00e2NDIDO DA SILVA, 989 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.875543, "longitude": -43.279611, "objects": [], "identifications": []}, {"id": "002258", "name": "CESAR\u00c3O I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.37.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934843, "longitude": -43.665477, "objects": [], "identifications": []}, {"id": "000600", "name": "UERJ", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.156/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911703, "longitude": -43.236397, "objects": [], "identifications": []}, {"id": "000061", "name": "AV. L\u00daCIO COSTA X POSTO 5", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.234/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.010846, "longitude": -43.33168999, "objects": [], "identifications": []}, {"id": "001579", "name": "AV. PRESIDENTE VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90737626, "longitude": -43.19790286, "objects": [], "identifications": []}, {"id": "001327", "name": "AV. ATL\u00c2NTICA X RUA SIQUEIRA CAMPOS - FIXA", "rtsp_url": "rtsp://10.52.252.107/", "update_interval": 120, "latitude": -22.970784, "longitude": -43.182923, "objects": [], "identifications": []}, {"id": "002454", "name": "VENTURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.13.3/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94802, "longitude": -43.39161, "objects": [], "identifications": []}, {"id": "001595", "name": "AV. SALVADOR DE S\u00c1, ALTURA DO BPCHQ - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911806, "longitude": -43.195233, "objects": [], "identifications": []}, {"id": "002368", "name": "RECREIO SHOPPING - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.19.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01986619, "longitude": -43.48797792, "objects": [], "identifications": []}, {"id": "001729", "name": "AV. \u00c9DISON PASSOS, 583 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.50/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951311, "longitude": -43.259854, "objects": [], "identifications": []}, {"id": "002179", "name": "GALE\u00c3O TOM JOBIM 2 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.46.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81396243, "longitude": -43.24685587, "objects": [], "identifications": []}, {"id": "001872", "name": "ESTR. DAS FURNAS, 3046 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.74/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983721, "longitude": -43.295952, "objects": [], "identifications": []}, {"id": "000023", "name": "RUA BARATA RIBEIRO X RUA DUVIVIER", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963906, "longitude": -43.178505, "objects": [], "identifications": []}, {"id": "004008", "name": "R. CONDE DE BONFIM 302 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9233627, "longitude": -43.2316941, "objects": [], "identifications": []}, {"id": "000016", "name": "RUA JARDIM BOT\u00c2NICO (PR\u00d3XIMO AO PARQUE LAGE)", "rtsp_url": "rtsp://10.52.37.131/016-VIDEO", "update_interval": 120, "latitude": -22.961257, "longitude": -43.212939, "objects": [], "identifications": []}, {"id": "001040", "name": "AV. AMARO CAVALCANTI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90035459, "longitude": -43.27960348, "objects": [], "identifications": []}, {"id": "002103", "name": "REDE SARAH - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.6.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97340355, "longitude": -43.37663464, "objects": [], "identifications": []}, {"id": "003271", "name": "R. CAMPO DE S\u00e3O CRIST\u00f3V\u00e3O, 87 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89877, "longitude": -43.219888, "objects": [], "identifications": []}, {"id": "000146", "name": "AV. BRASIL X R. PARIS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.68/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.864467, "longitude": -43.248167, "objects": [], "identifications": []}, {"id": "001721", "name": "AV. \u00c9DISON PASSOS, 800", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949345, "longitude": -43.261769, "objects": [], "identifications": []}, {"id": "004228", "name": "VIADUTO DO GAS\u00f4METRO, 29 - LPR - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.30.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892369, "longitude": -43.216451, "objects": [], "identifications": []}, {"id": "002528", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8392697, "longitude": -43.23964789, "objects": [], "identifications": []}, {"id": "001786", "name": "R. BOA VISTA, 65 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962435, "longitude": -43.274715, "objects": [], "identifications": []}, {"id": "000191", "name": "R. CANDIDO BENICIO X R. BARONESA - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89659384, "longitude": -43.35131625, "objects": [], "identifications": []}, {"id": "004253", "name": "AV. DOM H\u00e9LDER C\u00e2MARA, 6088", "rtsp_url": "rtsp://admin:123smart@10.52.211.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885614, "longitude": -43.289901, "objects": [], "identifications": []}, {"id": "004106", "name": "LADEIRA DO LEME, 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.23.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.964417, "longitude": -43.180257, "objects": [], "identifications": []}, {"id": "003592", "name": "ESTR. DOS BANDEIRANTES, 7700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9676189, "longitude": -43.41295638, "objects": [], "identifications": []}, {"id": "000576", "name": "R. OLINDA ELLIS X ALT. CENTRO ESPORTIVO MI\u00c9CIMO DA SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914183, "longitude": -43.554338, "objects": [], "identifications": []}, {"id": "002432", "name": "OUTEIRO SANTO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.15.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.928239, "longitude": -43.395888, "objects": [], "identifications": []}, {"id": "001555", "name": "AV. BRASIL X ESTR. DA EQUITA\u00c7\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.862169, "longitude": -43.411317, "objects": [], "identifications": []}, {"id": "003323", "name": "COMPORTA RUA GEN. GARZON - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96756, "longitude": -43.217717, "objects": [], "identifications": []}, {"id": "003283", "name": "ESTRADA DO GALE\u00e3O X R CINQUENTA E DOIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81779262, "longitude": -43.22454742, "objects": [], "identifications": []}, {"id": "001894", "name": "ESTRADA DO PEDREGOSO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8754749, "longitude": -43.5548017, "objects": [], "identifications": []}, {"id": "001232", "name": "AV. ATL\u00c2NTICA X PONTA DO LEME - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962636, "longitude": -43.165424, "objects": [], "identifications": []}, {"id": "002360", "name": "GILKA MACHADO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.17.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01705473, "longitude": -43.47706168, "objects": [], "identifications": []}, {"id": "002125", "name": "ANDRE ROCHA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.17.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92974, "longitude": -43.373328, "objects": [], "identifications": []}, {"id": "000153", "name": "AV. BRASIL X ALTURA R. JO\u00c3O PAULO", "rtsp_url": "rtsp://10.52.208.143/153-VIDEO", "update_interval": 120, "latitude": -22.83251628, "longitude": -43.35410016, "objects": [], "identifications": []}, {"id": "003311", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:admin@10.52.37.178/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979376, "longitude": -43.231852, "objects": [], "identifications": []}, {"id": "001133", "name": "AV. BORGES DE MEDEIROS N\u00ba3709 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962791, "longitude": -43.206331, "objects": [], "identifications": []}, {"id": "003335", "name": "R. COMENDADOR GUERRA, 425 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80875435, "longitude": -43.37094428, "objects": [], "identifications": []}, {"id": "003192", "name": "AV. GLAUCIO GIL, 770 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018014, "longitude": -43.459753, "objects": [], "identifications": []}, {"id": "000580", "name": "ESTR. DO CAMPINHO X ESTR. SANTA MARIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.116/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894273, "longitude": -43.584931, "objects": [], "identifications": []}, {"id": "001343", "name": "AV. HENRIQUE DODSWORTH, 54 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97674518, "longitude": -43.19449397, "objects": [], "identifications": []}, {"id": "002183", "name": "PARQUE OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.7.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97325592, "longitude": -43.39378408, "objects": [], "identifications": []}, {"id": "003232", "name": "AV. EMBAIXADOR ABELARDO BUENO, 3300", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.198/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973004, "longitude": -43.401038, "objects": [], "identifications": []}, {"id": "004207", "name": "TERMINAL RODOVI\u00e1RIO NOSSA SRA. DO AMPARO, 80 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.111/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88151573, "longitude": -43.32544633, "objects": [], "identifications": []}, {"id": "004014", "name": "ESTR. DOS BANDEIRANTES, 27596 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.67/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99231633, "longitude": -43.5061466, "objects": [], "identifications": []}, {"id": "002422", "name": "MINHA PRAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.10.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96669204, "longitude": -43.39690042, "objects": [], "identifications": []}, {"id": "001747", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.68/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956529, "longitude": -43.267163, "objects": [], "identifications": []}, {"id": "001320", "name": "AV. ATL\u00c2NTICA X RUA HIL\u00c1RIO DE GOUV\u00caIA - FIXA", "rtsp_url": "rtsp://10.52.252.112/", "update_interval": 120, "latitude": -22.970092, "longitude": -43.182464, "objects": [], "identifications": []}, {"id": "004266", "name": "RUA ULYSSES GUIMAR\u00e3ES, 15 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.245.52/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91237194, "longitude": -43.20526662, "objects": [], "identifications": []}, {"id": "004154", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85412248, "longitude": -43.38368558, "objects": [], "identifications": []}, {"id": "001271", "name": "AV. LUCIO COSTA X AV. DO CONTORNO (FINAL DO ECO ORLA) - FIXA", "rtsp_url": "rtsp://10.52.209.125/", "update_interval": 120, "latitude": -23.02253377, "longitude": -43.4478986, "objects": [], "identifications": []}, {"id": "002038", "name": "PASTOR JOS\u00c9 SANTOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.37.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838975, "longitude": -43.283571, "objects": [], "identifications": []}, {"id": "001283", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://10.52.252.172/", "update_interval": 120, "latitude": -22.980503, "longitude": -43.189273, "objects": [], "identifications": []}, {"id": "001264", "name": "AV. LAURO SODR\u00c9 - BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95447735, "longitude": -43.17860102, "objects": [], "identifications": []}, {"id": "004201", "name": "RUA ULYSSES GUIMAR\u00e3ES, 108", "rtsp_url": "rtsp://admin:123smart@10.52.245.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91272, "longitude": -43.20614, "objects": [], "identifications": []}, {"id": "001244", "name": "AV. ATL\u00c2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.95/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97719918, "longitude": -43.18819, "objects": [], "identifications": []}, {"id": "000063", "name": "AV. DAS AM\u00c9RICAS X R. FELIC\u00cdSSIMO CARDOSO", "rtsp_url": "rtsp://admin:admin@10.50.106.70/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000096, "longitude": -43.353792, "objects": [], "identifications": []}, {"id": "001651", "name": "ESTR. DO MENDANHA, 5", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.173/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885149, "longitude": -43.557064, "objects": [], "identifications": []}, {"id": "000347", "name": "AV. MARACAN\u00c3 X R. JOS\u00c9 HIGINO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.141/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.92809138, "longitude": -43.23980877, "objects": [], "identifications": []}, {"id": "002150", "name": "PINTO TELES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.24.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88846097, "longitude": -43.34597015, "objects": [], "identifications": []}, {"id": "004057", "name": "ESTRADA DO MONTEIRO 1500 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.932809, "longitude": -43.574929, "objects": [], "identifications": []}, {"id": "003257", "name": "R. FONSECA T\u00e9LES X S\u00e3O CRIST\u00f3V\u00e3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902981, "longitude": -43.218469, "objects": [], "identifications": []}, {"id": "000122", "name": "AUTOESTRADA X ESTR. DO JO\u00c1 - PR\u00d3XIMO AO T\u00daNEL DE S\u00c3O CONRADO", "rtsp_url": "rtsp://admin:admin@10.50.106.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.998735, "longitude": -43.26893, "objects": [], "identifications": []}, {"id": "003199", "name": "AV. GLAUCIO GIL, 480 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.175/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.020665, "longitude": -43.45875, "objects": [], "identifications": []}, {"id": "002346", "name": "GELSON FONSECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.12.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0099136, "longitude": -43.44893307, "objects": [], "identifications": []}, {"id": "003413", "name": "ESTR. DOS BANDEIRANTES, 25976 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.237/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983798, "longitude": -43.506167, "objects": [], "identifications": []}, {"id": "002448", "name": "BOI\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.16.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9159, "longitude": -43.39795, "objects": [], "identifications": []}, {"id": "002151", "name": "CAMPINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.25.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88249078, "longitude": -43.34188378, "objects": [], "identifications": []}, {"id": "001186", "name": "AV. ATL\u00c2NTICA X R. MIGUEL LEMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97839395, "longitude": -43.18842829, "objects": [], "identifications": []}, {"id": "001031", "name": "R. 24 DE MAIO X R. C\u00d4NEGO TOBIAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.67/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902367, "longitude": -43.277573, "objects": [], "identifications": []}, {"id": "000117", "name": "R. JARDIM BOT\u00c2NICO ALTURA DA PRA\u00c7A SANTOS DUMONT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9744, "longitude": -43.226147, "objects": [], "identifications": []}, {"id": "003258", "name": "AV. PEDRO II, 187", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903464, "longitude": -43.215008, "objects": [], "identifications": []}, {"id": "001996", "name": "R. COSTA BASTOS X RIACHUELO 36", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9145919, "longitude": -43.189465, "objects": [], "identifications": []}, {"id": "002313", "name": "BARRA SHOPPING - PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.100.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99990609, "longitude": -43.36147524, "objects": [], "identifications": []}, {"id": "003414", "name": "ESTR. DOS BANDEIRANTES, 25976 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983798, "longitude": -43.5060758, "objects": [], "identifications": []}, {"id": "001451", "name": "PORT\u00c3O DO BRT - R. BARREIROS, 21 - RAMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85461937, "longitude": -43.25063933, "objects": [], "identifications": []}, {"id": "002185", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9721, "longitude": -43.40096, "objects": [], "identifications": []}, {"id": "001314", "name": "R. SANTA CLARA X AV. ATL\u00c2NTICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.972712, "longitude": -43.186115, "objects": [], "identifications": []}, {"id": "002202", "name": "CESARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.42.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920366, "longitude": -43.643231, "objects": [], "identifications": []}, {"id": "001988", "name": "ESTR. DO RIO MORTO, 410 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9889983, "longitude": -43.4919595, "objects": [], "identifications": []}, {"id": "003667", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 380 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.230/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83261, "longitude": -43.341671, "objects": [], "identifications": []}, {"id": "000098", "name": "AV. 31 DE MAR\u00c7O SA\u00cdDA DO T\u00daNEL SANTA B\u00c1RBARA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.919632, "longitude": -43.194175, "objects": [], "identifications": []}, {"id": "003130", "name": "ESTR. VEREADOR ALCEU DE CARVALHO, 2222 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.019721, "longitude": -43.492865, "objects": [], "identifications": []}, {"id": "001419", "name": "AV. NIEMEYER 683 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990873, "longitude": -43.231876, "objects": [], "identifications": []}, {"id": "001296", "name": "R. JOSEPH BLOCH, 30 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96670265, "longitude": -43.18886955, "objects": [], "identifications": []}, {"id": "001520", "name": "ESTR. DO QUITUNGO, 1919 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83622, "longitude": -43.307471, "objects": [], "identifications": []}, {"id": "000397", "name": "PARQUE MADUREIRA - QUADRAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.53/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86162286, "longitude": -43.34668336, "objects": [], "identifications": []}, {"id": "004053", "name": "ESTR. DO MONTEIRO, 1070 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.234/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.926151, "longitude": -43.571625, "objects": [], "identifications": []}, {"id": "002341", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0082844, "longitude": -43.4426875, "objects": [], "identifications": []}, {"id": "000262", "name": "R. S\u00c3O CLEMENTE X R. GUILHERMINA GUINLE", "rtsp_url": "rtsp://10.52.11.140/262-VIDEO", "update_interval": 120, "latitude": -22.94962, "longitude": -43.188759, "objects": [], "identifications": []}, {"id": "000219", "name": "AV. PRESIDENTE VARGAS X ALT. SAMB\u00d3DROMO - SENT. PRA\u00c7A DA BANDEIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907542, "longitude": -43.199565, "objects": [], "identifications": []}, {"id": "000145", "name": "AV. BRASIL X CANAL DO CUNHA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.880604, "longitude": -43.239655, "objects": [], "identifications": []}, {"id": "002463", "name": "LEILA DINIZ- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.12.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95225683, "longitude": -43.39004267, "objects": [], "identifications": []}, {"id": "001664", "name": "RUA CONDE DE BONFIM N\u00ba 482 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.50.224.208/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.926931, "longitude": -43.235722, "objects": [], "identifications": []}, {"id": "001997", "name": "R. DOS INVALIDOS, 224", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9143509, "longitude": -43.1840155, "objects": [], "identifications": []}, {"id": "003484", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9095559, "longitude": -43.25504493, "objects": [], "identifications": []}, {"id": "003544", "name": "PRAIA DO ZUMBI, 5 - ZUMBI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82126943, "longitude": -43.17330718, "objects": [], "identifications": []}, {"id": "002067", "name": "SANTA EFIGENIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.15.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93662697, "longitude": -43.37175191, "objects": [], "identifications": []}, {"id": "002299", "name": "PAULO MALTA REZENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.106.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00130523, "longitude": -43.32916194, "objects": [], "identifications": []}, {"id": "000205", "name": "R. DO RIACHUELO X AV. HENRIQUES VALADARES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.135/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913002, "longitude": -43.191236, "objects": [], "identifications": []}, {"id": "003455", "name": "ESTR. DOS BANDEIRANTES, 11460-11630 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989226, "longitude": -43.435108, "objects": [], "identifications": []}, {"id": "003188", "name": "AV. GLAUCIO GIL, 984 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01608143, "longitude": -43.46075788, "objects": [], "identifications": []}, {"id": "001203", "name": "AV. ATL\u00c2NTICA X R. SOUZA LIMA - FIXA", "rtsp_url": "rtsp://10.52.252.123/", "update_interval": 120, "latitude": -22.981578, "longitude": -43.189763, "objects": [], "identifications": []}, {"id": "002497", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97215558, "longitude": -43.40056511, "objects": [], "identifications": []}, {"id": "001602", "name": "AV. PRES. VARGAS, 1733 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906115, "longitude": -43.19265, "objects": [], "identifications": []}, {"id": "001532", "name": "AV. HEITOR BELTR\u00c3O, S/N - TIJUCA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920927, "longitude": -43.225786, "objects": [], "identifications": []}, {"id": "003296", "name": "ESTR. DOS BANDEIRANTES, 21577 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987546, "longitude": -43.479585, "objects": [], "identifications": []}, {"id": "003356", "name": "ESTR. DOS BANDEIRANTES, 16231 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982182, "longitude": -43.466654, "objects": [], "identifications": []}, {"id": "003598", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X ESTR. CEL. VIEIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.850609, "longitude": -43.31805, "objects": [], "identifications": []}, {"id": "002186", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97187, "longitude": -43.40096, "objects": [], "identifications": []}, {"id": "001020", "name": "MERGULH\u00c3O BARRA - FIXA", "rtsp_url": "rtsp://admin:cor12345@10.50.106.32/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99743134, "longitude": -43.36581862, "objects": [], "identifications": []}, {"id": "000138", "name": "ELEVADO PAULO DE FRONTIN - ALTURA DA RUA JO\u00c3O PAULO I", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91563, "longitude": -43.210022, "objects": [], "identifications": []}, {"id": "001993", "name": "R. URUGUAI, 453 - ANDARA\u00cd", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.53/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933642, "longitude": -43.240203, "objects": [], "identifications": []}, {"id": "003603", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X R. DONA MARIA ENFERMEIRA", "rtsp_url": "rtsp://admin2:7lanmstr@10.52.211.171/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854433, "longitude": -43.312986, "objects": [], "identifications": []}, {"id": "003433", "name": "ESTR. DOS BANDEIRANTES, 7416 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979823, "longitude": -43.50587, "objects": [], "identifications": []}, {"id": "002077", "name": "MERCK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.16.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93524096, "longitude": -43.37186184, "objects": [], "identifications": []}, {"id": "001466", "name": "AV. OLEG\u00c1RIO MACIEL X AV. GILBERTO AMADO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.66/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01186769, "longitude": -43.30502996, "objects": [], "identifications": []}, {"id": "004086", "name": "ESTR. DOS BANDEIRANTES, 4666 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.959139, "longitude": -43.386255, "objects": [], "identifications": []}, {"id": "003662", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 9202 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839605, "longitude": -43.337488, "objects": [], "identifications": []}, {"id": "002396", "name": "GENERAL OL\u00cdMPIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.35.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92255416, "longitude": -43.67953252, "objects": [], "identifications": []}, {"id": "003644", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 1", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.208/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.873752, "longitude": -43.286157, "objects": [], "identifications": []}, {"id": "000051", "name": "R. VISCONDE DE PIRAJ\u00c1 X R. MARIA QUIT\u00c9RIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984059, "longitude": -43.207227, "objects": [], "identifications": []}, {"id": "002200", "name": "TR\u00caS PONTES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.41.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925227, "longitude": -43.649772, "objects": [], "identifications": []}, {"id": "000510", "name": "ESTR. DOS BANDEIRANTES X AV. SALVADOR ALLENDE", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.960586, "longitude": -43.39178, "objects": [], "identifications": []}, {"id": "004073", "name": "ESTR. DOS BANDEIRANTES, 3914 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.179/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95632704, "longitude": -43.37888564, "objects": [], "identifications": []}, {"id": "002020", "name": "MAR\u00c9 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.44.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.846966, "longitude": -43.243391, "objects": [], "identifications": []}, {"id": "004175", "name": "ESTRADA DO GALE\u00e3O, 5800 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.92/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.820982, "longitude": -43.227867, "objects": [], "identifications": []}, {"id": "002464", "name": "COL\u00d4NIA / MUSEU BISPO DO ROS\u00c1RIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.14.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94041877, "longitude": -43.3946851, "objects": [], "identifications": []}, {"id": "003171", "name": "ESTR. DAS FURNAS, 2082 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.77/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978638, "longitude": -43.291767, "objects": [], "identifications": []}, {"id": "004101", "name": "AV. ATL\u00c2NTICA, 7 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.967521, "longitude": -43.178236, "objects": [], "identifications": []}, {"id": "002503", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00678928, "longitude": -43.31266838, "objects": [], "identifications": []}, {"id": "000147", "name": "AV. BRASIL X AV. BRIGADEIRO TROMPOWSKI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.69/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.847789, "longitude": -43.246994, "objects": [], "identifications": []}, {"id": "002047", "name": "PEDRO TAQUES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.34.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841507, "longitude": -43.298748, "objects": [], "identifications": []}, {"id": "000041", "name": "AV. MEM DE S\u00c1, 30 - ARCOS DA LAPA | AQUEDUTO DA CARIOCA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913628, "longitude": -43.178807, "objects": [], "identifications": []}, {"id": "002322", "name": "AM\u00c9RICAS PARK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.4.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00047574, "longitude": -43.38943918, "objects": [], "identifications": []}, {"id": "000257", "name": "AV. ATL\u00c2NTICA X R. ANCHIETA", "rtsp_url": "rtsp://10.52.31.30/257-VIDEO", "update_interval": 120, "latitude": -22.963323, "longitude": -43.170004, "objects": [], "identifications": []}, {"id": "003273", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 01 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97806987, "longitude": -43.19293536, "objects": [], "identifications": []}, {"id": "000308", "name": "PRAIA DO FLAMENGO X AV. OSWALDO CRUZ - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.938604, "longitude": -43.173695, "objects": [], "identifications": []}, {"id": "004139", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.43/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85379512, "longitude": -43.38380104, "objects": [], "identifications": []}, {"id": "002065", "name": "VILA QUEIROZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.29.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86119299, "longitude": -43.33019979, "objects": [], "identifications": []}, {"id": "003698", "name": "ESTR. DO GALE\u00e3O - BASE A\u00e9REA ILHA - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82896186, "longitude": -43.23560302, "objects": [], "identifications": []}, {"id": "002430", "name": "VILA MILITAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.21.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86239487, "longitude": -43.40088882, "objects": [], "identifications": []}, {"id": "000020", "name": "ATERRO X AV. OSWALDO CRUZ", "rtsp_url": "rtsp://admin:admin@10.52.35.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.942467, "longitude": -43.178155, "objects": [], "identifications": []}, {"id": "003796", "name": "PRA\u00e7A SIB\u00e9LUIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.185/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97844231, "longitude": -43.22659423, "objects": [], "identifications": []}, {"id": "003586", "name": "ESTR. DOS BANDEIRANTES, 6994 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96453157, "longitude": -43.40630667, "objects": [], "identifications": []}, {"id": "000292", "name": "AV. ATL\u00c2NTICA X R. SIQUEIRA CAMPOS", "rtsp_url": "rtsp://admin:admin@10.52.252.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970583, "longitude": -43.183404, "objects": [], "identifications": []}, {"id": "003337", "name": "ESTRADA DA BICA X ESTR. DO RIO JEQUI\u00e1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81659498, "longitude": -43.18749598, "objects": [], "identifications": []}, {"id": "000760", "name": "AV. MARECHAL RONDON X R. SOUSA DANTAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.48/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.905137, "longitude": -43.244102, "objects": [], "identifications": []}, {"id": "003995", "name": "RUA CONDE DE BONFIM, 773 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.126/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934289, "longitude": -43.242612, "objects": [], "identifications": []}, {"id": "003585", "name": "ESTR. DOS BANDEIRANTES, 6994 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96466, "longitude": -43.40665, "objects": [], "identifications": []}, {"id": "001456", "name": "PORT\u00c3O DO BRT - R. LEONARDO VILAS BOAS, 3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.216/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.965762, "longitude": -43.39112, "objects": [], "identifications": []}, {"id": "001440", "name": "AV. NIEMEYER 418 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.160/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000633, "longitude": -43.243912, "objects": [], "identifications": []}, {"id": "001256", "name": "AV. LAURO SODR\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95836433, "longitude": -43.1773748, "objects": [], "identifications": []}, {"id": "002328", "name": "RIO MAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.6.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99997364, "longitude": -43.40723597, "objects": [], "identifications": []}, {"id": "000497", "name": "EST. CEL. PEDRO CORR\u00caA X EST. DOS BANDEIRANTES", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.960245, "longitude": -43.389772, "objects": [], "identifications": []}, {"id": "002431", "name": "VILA MILITAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.21.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86210303, "longitude": -43.40035407, "objects": [], "identifications": []}, {"id": "001312", "name": "ESTRADA DO PONTAL EM FRENTE AO N.\u00ba 6870 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.03019931, "longitude": -43.47825567, "objects": [], "identifications": []}, {"id": "000457", "name": "AV. ERNANI CARDOSO X R. PADRE TEL\u00caMACO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.82/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882067, "longitude": -43.33202, "objects": [], "identifications": []}, {"id": "004080", "name": "ESTR. DOS BANDEIRANTES, 1902 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.940676, "longitude": -43.372824, "objects": [], "identifications": []}, {"id": "004042", "name": "R. ARTUR RIOS, 50 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89457972, "longitude": -43.53667938, "objects": [], "identifications": []}, {"id": "001882", "name": "AV. NAZAR\u00c9, 2330 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8259421, "longitude": -43.4013715, "objects": [], "identifications": []}, {"id": "002175", "name": "GALE\u00c3O TOM JOBIM 1 - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.47.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81079571, "longitude": -43.25201378, "objects": [], "identifications": []}, {"id": "001803", "name": "ESTR. DAS FURNAS, 572 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968776, "longitude": -43.278942, "objects": [], "identifications": []}, {"id": "001601", "name": "SANTA TERESA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908283, "longitude": -43.196967, "objects": [], "identifications": []}, {"id": "004229", "name": "AV. PEDRO II X R. S\u00c3O CRIST\u00d3V\u00c3O - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.28.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90519, "longitude": -43.21812, "objects": [], "identifications": []}, {"id": "002226", "name": "GOLFE OLIMP\u00cdCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.7.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00005924, "longitude": -43.41190637, "objects": [], "identifications": []}, {"id": "001941", "name": "R. PROF. EURICO RABELO, 51 BILHETERIA 2 DO MARACAN\u00c3", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914813, "longitude": -43.229594, "objects": [], "identifications": []}, {"id": "000019", "name": "RUA VOLUNT\u00c1RIOS DA P\u00c1TRIA X RUA REAL GRANDEZA", "rtsp_url": "rtsp://user:7lanmstr@10.52.210.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954405, "longitude": -43.192948, "objects": [], "identifications": []}, {"id": "001056", "name": "HOSPITAL SALGADO FILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.106/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90126856, "longitude": -43.27836554, "objects": [], "identifications": []}, {"id": "003682", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR , ALT. SHOP. NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87945816, "longitude": -43.27107526, "objects": [], "identifications": []}, {"id": "002030", "name": "PENHA I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.07/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842146, "longitude": -43.277616, "objects": [], "identifications": []}, {"id": "001771", "name": "AV. \u00c9DISON PASSOS, 4200 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95964727, "longitude": -43.26929764, "objects": [], "identifications": []}, {"id": "001362", "name": "AV. HENRIQUE DODSWORTH, 193 - COPACABANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97644324, "longitude": -43.19814559, "objects": [], "identifications": []}, {"id": "002024", "name": "CARDOSO DE MORAES - VI\u00daVA GARCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.42.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85744, "longitude": -43.258357, "objects": [], "identifications": []}, {"id": "001617", "name": "PRA\u00c7A PARIS - LAGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91610723, "longitude": -43.17616287, "objects": [], "identifications": []}, {"id": "001198", "name": "AV ATLANTICA X R. JULIO DE CASTILHO - FIXA", "rtsp_url": "rtsp://10.52.252.180/", "update_interval": 120, "latitude": -22.98404976, "longitude": -43.18953512, "objects": [], "identifications": []}, {"id": "003730", "name": "AV. ERNANI CARDOSO, 240", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.220/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88247282, "longitude": -43.33598949, "objects": [], "identifications": []}, {"id": "000313", "name": "R. DO CATETE X R. SILVEIRA MARTINS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925769, "longitude": -43.176602, "objects": [], "identifications": []}, {"id": "000088", "name": "R. ARISTIDES CAIRE X R. SANTA F\u00c9", "rtsp_url": "rtsp://10.52.209.99/088-VIDEO", "update_interval": 120, "latitude": -22.899336, "longitude": -43.278542, "objects": [], "identifications": []}, {"id": "004050", "name": "ESTR. DO MONTEIRO 636-664 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.231/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.921698, "longitude": -43.56387, "objects": [], "identifications": []}, {"id": "000057", "name": "AV. AYRTON SENNA X R. ABELARDO BUENO", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.122/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973546, "longitude": -43.364096, "objects": [], "identifications": []}, {"id": "000577", "name": "ESTR. DA CACHAMORRA X R. OLINDA ELLIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914464, "longitude": -43.549955, "objects": [], "identifications": []}, {"id": "000411", "name": "R. CEL. PEDRO CORREIA X R. AROAZES", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970977, "longitude": -43.388803, "objects": [], "identifications": []}, {"id": "001674", "name": "AV. BRASIL, 2385", "rtsp_url": "rtsp://admin:7LANMSTR@10.52.210.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893061, "longitude": -43.675072, "objects": [], "identifications": []}, {"id": "001800", "name": "ESTR. DAS FURNAS, 574 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968837, "longitude": -43.279005, "objects": [], "identifications": []}, {"id": "001788", "name": "R. BOA VISTA, 111-71 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96314255, "longitude": -43.2754886, "objects": [], "identifications": []}, {"id": "000535", "name": "ESTR. DOS BANDEIRANTES X ESTR. DA CURICICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96327796, "longitude": -43.40330797, "objects": [], "identifications": []}, {"id": "001533", "name": "AV. HEITOR BELTR\u00c3O, S/N - TIJUCA - FIXA", "rtsp_url": "rtsp://admin:admin@10.52.25.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920903, "longitude": -43.225935, "objects": [], "identifications": []}, {"id": "001262", "name": "AV. LAURO SODR\u00c9 - BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95382532, "longitude": -43.1787995, "objects": [], "identifications": []}, {"id": "001011", "name": "R. JOS DOS REIS X R. GENERAL CLARINDO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89232086, "longitude": -43.29481819, "objects": [], "identifications": []}, {"id": "003749", "name": "RUA REINALDO MATOS REIS, 10 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.173/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.886162, "longitude": -43.28893, "objects": [], "identifications": []}, {"id": "003149", "name": "T\u00daNEL VELHO SENT. COPACABANA - 3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96130556, "longitude": -43.19095164, "objects": [], "identifications": []}, {"id": "001101", "name": "R. OLINDA ELLIS X ALT. CENTRO ESPORTIVO MI\u00c9CIMO DA SILVA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91428182, "longitude": -43.55418511, "objects": [], "identifications": []}, {"id": "003106", "name": "R. HERCULANO PINHEIRO, 32.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.247/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8111681, "longitude": -43.3528656, "objects": [], "identifications": []}, {"id": "001078", "name": "RUA CONDE DE BONFIM X R. RADMAKER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93431949, "longitude": -43.24317483, "objects": [], "identifications": []}, {"id": "002520", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87773872, "longitude": -43.33668767, "objects": [], "identifications": []}, {"id": "001188", "name": "AV. ATL\u00c2NTICA 4100 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98495295, "longitude": -43.18933328, "objects": [], "identifications": []}, {"id": "001252", "name": "AV. LAURO SODR\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95665526, "longitude": -43.17775567, "objects": [], "identifications": []}, {"id": "000476", "name": "AV. LUCIO COSTA X R. GLAUCIO GIL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.024902, "longitude": -43.457215, "objects": [], "identifications": []}, {"id": "004194", "name": "R. NERI PINHEIRO, 395", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912651, "longitude": -43.202911, "objects": [], "identifications": []}, {"id": "001930", "name": "RUA MIGUEL LEMOS X RUA BARATA RIBEIRO - LPR - FIXA", "rtsp_url": "rtsp://admin:cet@10.52.20.208/", "update_interval": 120, "latitude": -22.97752295, "longitude": -43.19287925, "objects": [], "identifications": []}, {"id": "000249", "name": "R. GILBERTO CARDOSO X AV. AFR\u00c2NIO DE MELO FRANCO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979009, "longitude": -43.218498, "objects": [], "identifications": []}, {"id": "003674", "name": "ESTR. DOS TR\u00eaS RIOS X ESTR. DO GUANUMBI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.112/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.934194, "longitude": -43.328658, "objects": [], "identifications": []}, {"id": "003364", "name": "ESTR. DOS BANDEIRANTES, 13840 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984679, "longitude": -43.460939, "objects": [], "identifications": []}, {"id": "003540", "name": "R. MALDONADO, 46 - RIBEIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82544819, "longitude": -43.1718835, "objects": [], "identifications": []}, {"id": "001656", "name": "PRA\u00c7A JOS\u00c9 DE ALENCAR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.932673, "longitude": -43.177654, "objects": [], "identifications": []}, {"id": "004238", "name": "PARQUE GAROTA DE IPANEMA", "rtsp_url": "rtsp://admin:123smart@10.52.22.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989555, "longitude": -43.19098, "objects": [], "identifications": []}, {"id": "003637", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3416", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.867306, "longitude": -43.298537, "objects": [], "identifications": []}, {"id": "002227", "name": "GOLFE OLIMP\u00cdCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.7.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00002324, "longitude": -43.41249706, "objects": [], "identifications": []}, {"id": "001722", "name": "AV. \u00c9DISON PASSOS, 711 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949247, "longitude": -43.261025, "objects": [], "identifications": []}, {"id": "001671", "name": "AV. TEIXEIRA DE CASTRO - BRT - SANTA LUZIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.80/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85522758, "longitude": -43.25209337, "objects": [], "identifications": []}, {"id": "001355", "name": "R. DO CATETE X R. DAS LARANJEIRAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93093453, "longitude": -43.17780309, "objects": [], "identifications": []}, {"id": "001669", "name": "AV. AMARO CAVALCANTI, 693", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.39/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897682, "longitude": -43.284035, "objects": [], "identifications": []}, {"id": "002500", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.6/cam/realmonitor?channel=1&subtype=3&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00670042, "longitude": -43.31337114, "objects": [], "identifications": []}, {"id": "001461", "name": "AV. ARMANDO LOMBARDI 505 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00716749, "longitude": -43.30986177, "objects": [], "identifications": []}, {"id": "003612", "name": "ESTR. DOS TR\u00eaS RIOS, 920-998 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.108/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.936807, "longitude": -43.334757, "objects": [], "identifications": []}, {"id": "000901", "name": "ESTR. DOS BANDEIRANTES, 8085", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.69/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.972078, "longitude": -43.41415799, "objects": [], "identifications": []}, {"id": "003640", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3838 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.204/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86827, "longitude": -43.29494, "objects": [], "identifications": []}, {"id": "003425", "name": "ESTR. DOS BANDEIRANTES X R. MANHUA\u00e7U - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978412, "longitude": -43.492566, "objects": [], "identifications": []}, {"id": "002055", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852357, "longitude": -43.312151, "objects": [], "identifications": []}, {"id": "001736", "name": "AV. \u00c9DISON PASSOS, 1710-1874 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.57/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.952617, "longitude": -43.260783, "objects": [], "identifications": []}, {"id": "003276", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 04 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.201/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9795, "longitude": -43.19302, "objects": [], "identifications": []}, {"id": "003987", "name": "ESTR. DOS BANDEIRANTES, 23487 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97925766, "longitude": -43.49188575, "objects": [], "identifications": []}, {"id": "003229", "name": "ESTRADA DA CAROBA X R. LUC\u00edLIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.196/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.898398, "longitude": -43.555017, "objects": [], "identifications": []}, {"id": "002365", "name": "GUIOMAR NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.18.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01842747, "longitude": -43.48225951, "objects": [], "identifications": []}, {"id": "001317", "name": "AV. ATL\u00c2NTICA N 15- FIXA", "rtsp_url": "rtsp://10.52.252.194/", "update_interval": 120, "latitude": -22.96946624, "longitude": -43.18164624, "objects": [], "identifications": []}, {"id": "003703", "name": "AV. L\u00faCIO COSTA, 16.000", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02496997, "longitude": -43.45719857, "objects": [], "identifications": []}, {"id": "002102", "name": "PEDRO CORREIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.8.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96773789, "longitude": -43.3906047, "objects": [], "identifications": []}, {"id": "001693", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95131299, "longitude": -43.25870308, "objects": [], "identifications": []}, {"id": "002333", "name": "PEDRA DE ITA\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.9.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00306252, "longitude": -43.4243055, "objects": [], "identifications": []}, {"id": "001082", "name": "AV. DE SANTA CRUZ X ESTR. DO REALENGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.119/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87836939, "longitude": -43.44057403, "objects": [], "identifications": []}, {"id": "003103", "name": "R. MERC\u00daRIO, 1545", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8047819, "longitude": -43.3508921, "objects": [], "identifications": []}, {"id": "001758", "name": "AV. \u00c9DISON PASSOS, 3127 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957707, "longitude": -43.264287, "objects": [], "identifications": []}, {"id": "003719", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.235/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88085876, "longitude": -43.35315488, "objects": [], "identifications": []}, {"id": "001588", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90923, "longitude": -43.203407, "objects": [], "identifications": []}, {"id": "003984", "name": "RUA CONDE DE BONFIM, 1084 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.246.62/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94074, "longitude": -43.25037, "objects": [], "identifications": []}, {"id": "000239", "name": "R. VISCONDE DE ALBUQUERQUE X R. LE\u00d4NCIO CORR\u00caA", "rtsp_url": "rtsp://10.52.37.190/239-VIDEO", "update_interval": 120, "latitude": -22.98322, "longitude": -43.228159, "objects": [], "identifications": []}, {"id": "004001", "name": "ESTR. DOS BANDEIRANTES, 26825 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.58/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99060325, "longitude": -43.50299363, "objects": [], "identifications": []}, {"id": "004151", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85403599, "longitude": -43.38389481, "objects": [], "identifications": []}, {"id": "000840", "name": "AV. BORGES DE MEDEIROS X R. MARIA ANG\u00c9LICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.12.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96302, "longitude": -43.207585, "objects": [], "identifications": []}, {"id": "003567", "name": "RUA MORAVIA, 38", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.119/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80797853, "longitude": -43.18287491, "objects": [], "identifications": []}, {"id": "003588", "name": "ESTR. DOS BANDEIRANTES, 7276 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96587582, "longitude": -43.41036562, "objects": [], "identifications": []}, {"id": "002403", "name": "TAPEBUIAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.3.2/axis-media/media.amp?fps=15&resolution=1920x1080&compression=30", "update_interval": 120, "latitude": -23.00016448, "longitude": -43.42971181, "objects": [], "identifications": []}, {"id": "003426", "name": "ESTR. DOS BANDEIRANTES X R. MANHUA\u00e7U - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978191, "longitude": -43.492693, "objects": [], "identifications": []}, {"id": "002112", "name": "PRACA DO BANDOLIM - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.10.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95873944, "longitude": -43.3837118, "objects": [], "identifications": []}, {"id": "000037", "name": "ESTR. DO GALE\u00c3O - BASE A\u00c9REA ILHA - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8282255, "longitude": -43.23496326, "objects": [], "identifications": []}, {"id": "002060", "name": "MARAMBAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.31.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85287051, "longitude": -43.32007242, "objects": [], "identifications": []}, {"id": "002533", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83924, "longitude": -43.24014139, "objects": [], "identifications": []}, {"id": "003203", "name": "AV. GLAUCIO GIL, 201 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.179/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.022701, "longitude": -43.458038, "objects": [], "identifications": []}, {"id": "001468", "name": "PREFEITURA CASS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.2.70/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911074, "longitude": -43.206143, "objects": [], "identifications": []}, {"id": "003429", "name": "ESTR. DOS BANDEIRANTES X ESTRADA DO PACU\u00ed", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976424, "longitude": -43.494349, "objects": [], "identifications": []}, {"id": "003423", "name": "ESTR. DOS BANDEIRANTES X ESTR. DO RIO MORTO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986552, "longitude": -43.48961, "objects": [], "identifications": []}, {"id": "004160", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85427569, "longitude": -43.38333149, "objects": [], "identifications": []}, {"id": "003287", "name": "ESTRADA DO GALE\u00e3O, 3359", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.99/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.806501, "longitude": -43.214118, "objects": [], "identifications": []}, {"id": "002058", "name": "MARAMBAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.31.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8531621, "longitude": -43.32054273, "objects": [], "identifications": []}, {"id": "001369", "name": "AV. PRINCESA ISABEL - COPACABANA- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96304846, "longitude": -43.17461894, "objects": [], "identifications": []}, {"id": "001192", "name": "AV. ATL\u00c2NTICA 4146 - FIXA", "rtsp_url": "rtsp://10.52.21.14/", "update_interval": 120, "latitude": -22.9850357, "longitude": -43.1888934, "objects": [], "identifications": []}, {"id": "002228", "name": "ANA GONZAGA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.51.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911277, "longitude": -43.589421, "objects": [], "identifications": []}, {"id": "002319", "name": "NOVO LEBLON - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.3.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00044949, "longitude": -43.38285095, "objects": [], "identifications": []}, {"id": "003646", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR 4138 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.210/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86566, "longitude": -43.30442, "objects": [], "identifications": []}, {"id": "002280", "name": "VENDAS DE VARANDA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.30.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95087538, "longitude": -43.65080841, "objects": [], "identifications": []}, {"id": "000389", "name": "PARQUE DE MADUREIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86537704, "longitude": -43.34391449, "objects": [], "identifications": []}, {"id": "003147", "name": "T\u00daNEL VELHO SENT. COPACABANA - 1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.961226, "longitude": -43.19089, "objects": [], "identifications": []}, {"id": "002297", "name": "PAULO MALTA REZENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.106.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00141443, "longitude": -43.32881397, "objects": [], "identifications": []}, {"id": "003822", "name": "AV. JOAQUIM MAGALH\u00e3ES, 272 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891465, "longitude": -43.531213, "objects": [], "identifications": []}, {"id": "002189", "name": "CESAR\u00c3O II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.38.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93338089, "longitude": -43.66169345, "objects": [], "identifications": []}, {"id": "002089", "name": "MADUREIRA-MANACEIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.26.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87677851, "longitude": -43.33586691, "objects": [], "identifications": []}, {"id": "000384", "name": "R. DIAS DA CRUZ X R. VILELA TAVARES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.66/cam/realmonitor?channel=1&subtype=2&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904789, "longitude": -43.288912, "objects": [], "identifications": []}, {"id": "000493", "name": "ESTR. DE JACAREPAGU\u00c1 X R. TIROL", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94144, "longitude": -43.34115, "objects": [], "identifications": []}, {"id": "003102", "name": "AV. CEL. PHIDIAS T\u00c1VORA, 1095.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.807938, "longitude": -43.3447364, "objects": [], "identifications": []}, {"id": "001526", "name": "CAMPO S\u00c3O CRIST\u00d3V\u00c3O, 13 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895882, "longitude": -43.220764, "objects": [], "identifications": []}, {"id": "002224", "name": "INHOA\u00cdBA - BRT - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.151.50.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913497, "longitude": -43.595962, "objects": [], "identifications": []}, {"id": "000523", "name": "ESTR. TENENTE CORONEL MUNIZ DE ARAG\u00c3O X ESTR. DE JACAREPAGU\u00c1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94752956, "longitude": -43.3396749, "objects": [], "identifications": []}, {"id": "003990", "name": "ESTR. DOS BANDEIRANTES, 23436 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.53/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980666, "longitude": -43.490926, "objects": [], "identifications": []}, {"id": "003834", "name": "AV. PASTEUR ALT. PRA\u00e7A GENERAL TIB\u00faRCIO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95444247, "longitude": -43.16659597, "objects": [], "identifications": []}, {"id": "003312", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.179/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979495, "longitude": -43.23113, "objects": [], "identifications": []}, {"id": "003111", "name": "R. JOS\u00c9 HIGINO, 244 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92942444, "longitude": -43.23878652, "objects": [], "identifications": []}, {"id": "002221", "name": "VILAR CARIOCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.49.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914219, "longitude": -43.601666, "objects": [], "identifications": []}, {"id": "001748", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.69/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956651, "longitude": -43.267671, "objects": [], "identifications": []}, {"id": "002267", "name": "DOM BOSCO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.22.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018242, "longitude": -43.508985, "objects": [], "identifications": []}, {"id": "003843", "name": "ESTR. DOS BANDEIRANTES, 25121 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97749571, "longitude": -43.49965319, "objects": [], "identifications": []}, {"id": "001403", "name": "PRA\u00c7A NOSSA SENHORA AUXILIADORA 93 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977686, "longitude": -43.222394, "objects": [], "identifications": []}, {"id": "004196", "name": "RUA CORREIA VASQUES, 54", "rtsp_url": "rtsp://admin:123smart@10.52.33.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91157, "longitude": -43.20183, "objects": [], "identifications": []}, {"id": "001191", "name": "AV. ATL\u00c2NTICA 4146 - FIXA", "rtsp_url": "rtsp://10.52.21.13/", "update_interval": 120, "latitude": -22.984932, "longitude": -43.188939, "objects": [], "identifications": []}, {"id": "000482", "name": "AV. MIN. IVAN LINS X ALTURA DA PONTE DA JOATINGA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012498, "longitude": -43.29918299, "objects": [], "identifications": []}, {"id": "002513", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.1.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00141317, "longitude": -43.36456909, "objects": [], "identifications": []}, {"id": "001571", "name": "AV. AYRTON SENNA, 2000 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.50.106.39/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.997074, "longitude": -43.365981, "objects": [], "identifications": []}, {"id": "000214", "name": "R. SANTA ALEXANDRINA X R. DA ESTRELA", "rtsp_url": "rtsp://10.52.33.23/214-VIDEO", "update_interval": 120, "latitude": -22.925058, "longitude": -43.208885, "objects": [], "identifications": []}, {"id": "001057", "name": "AV. AMARO CAVALCANTI N\u00ba135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901128, "longitude": -43.278867, "objects": [], "identifications": []}, {"id": "000773", "name": "R. GENERAL HERCULANO GOMES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908976, "longitude": -43.222637, "objects": [], "identifications": []}, {"id": "000209", "name": "R. GEN. HERCULANO GOMES X R. ALM. BALTAZAR", "rtsp_url": "rtsp://admin:admin@10.52.28.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90910393, "longitude": -43.22229402, "objects": [], "identifications": []}, {"id": "002309", "name": "BARRA SHOPPING - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.100.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99996934, "longitude": -43.35946909, "objects": [], "identifications": []}, {"id": "001206", "name": "AVENIDA ATL\u00c2NTICA, 3958, EM FRENTE \u00c0, R. JULIO - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98350867, "longitude": -43.18949227, "objects": [], "identifications": []}, {"id": "000487", "name": "AV. GILKA MACHADO X ESTR. DO PONTAL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.130/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.031018, "longitude": -43.471851, "objects": [], "identifications": []}, {"id": "004026", "name": "ESTR. DOS BANDEIRANTES, 2091 - FIXA", "rtsp_url": "rtsp://user:123smart@10.50.106.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94434258, "longitude": -43.37199311, "objects": [], "identifications": []}, {"id": "001376", "name": "AV. ALFREDO BALTHAZAR DA SILVEIRA ALT. BARRA WORLD - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00940075, "longitude": -43.44059203, "objects": [], "identifications": []}, {"id": "000382", "name": "AV. DOM HELDER CAMARA X R. PEDRAS ALTAS X R. SILVA MOUR\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88668057, "longitude": -43.28010564, "objects": [], "identifications": []}, {"id": "000074", "name": "BOULEVARD 28 DE SETEMBRO X R. FELIPE CAMAR\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913827, "longitude": -43.235707, "objects": [], "identifications": []}, {"id": "001727", "name": "AV. NAZAR\u00c9, 2319-2125 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8268803, "longitude": -43.400622, "objects": [], "identifications": []}, {"id": "003830", "name": "AV. PASTEUR X R. RAMON FRANCO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.954387, "longitude": -43.167437, "objects": [], "identifications": []}, {"id": "000014", "name": "RUA S\u00c3O CLEMENTE X RUA MUNIZ DE BARRETO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94935, "longitude": -43.184177, "objects": [], "identifications": []}, {"id": "004265", "name": "AV. PRES. VARGAS, 2863", "rtsp_url": "rtsp://admin:123smart@10.52.34.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90883605, "longitude": -43.20135847, "objects": [], "identifications": []}, {"id": "000342", "name": "RUA VISC. DE SANTA IZABEL X BAR\u00c3O DE S\u00c3O FRANCISCO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916006, "longitude": -43.2515, "objects": [], "identifications": []}, {"id": "001733", "name": "AV. \u00c9DISON PASSOS, 1240-1410 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951032, "longitude": -43.258427, "objects": [], "identifications": []}, {"id": "000390", "name": "PARQUE MADUREIRA - PREDIO DA ADMINISTRA\u00c7\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.51/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86391126, "longitude": -43.34562848, "objects": [], "identifications": []}, {"id": "001194", "name": "AV. ATL\u00c2NTICA S/N - FIXA", "rtsp_url": "rtsp://10.52.252.177/", "update_interval": 120, "latitude": -22.98426572, "longitude": -43.18918705, "objects": [], "identifications": []}, {"id": "004261", "name": "PRA\u00c7A PARIS - BOMBA", "rtsp_url": "rtsp://admin:123smart@10.52.17.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91579593, "longitude": -43.17620513, "objects": [], "identifications": []}, {"id": "001585", "name": "AV. PRES. VARGAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909256, "longitude": -43.203505, "objects": [], "identifications": []}, {"id": "003355", "name": "RUA JOS\u00e9 DUARTE, 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.179/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98306, "longitude": -43.46928, "objects": [], "identifications": []}, {"id": "000419", "name": "AV. LOBO JUNIOR X RUA CUBA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.153/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.82914961, "longitude": -43.27677625, "objects": [], "identifications": []}, {"id": "004128", "name": "AV. ROBERTO DINAMITE, 183", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.890965, "longitude": -43.22916, "objects": [], "identifications": []}, {"id": "003234", "name": "ESTRADA BENVINDO DE NOVAES, 1180", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.199/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0012253, "longitude": -43.4536353, "objects": [], "identifications": []}, {"id": "004098", "name": "LARGO ALUNO HOR\u00e1CIO LUCAS X RUA LUIZ GAMA - BAR DOS CHICOS", "rtsp_url": "rtsp://admin:123smart@10.50.224.11/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915384, "longitude": -43.226567, "objects": [], "identifications": []}, {"id": "001801", "name": "ESTR. DAS FURNAS, 361 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.967892, "longitude": -43.279073, "objects": [], "identifications": []}, {"id": "004205", "name": "TERMINAL RODOVI\u00e1RIO NOSSA SRA. DO AMPARO, 177-143 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.118/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8811809, "longitude": -43.325386, "objects": [], "identifications": []}, {"id": "001255", "name": "AV. LAURO SODR\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95823097, "longitude": -43.17743381, "objects": [], "identifications": []}, {"id": "000452", "name": "AV. DOM H\u00c9LDER C\u00c2MARA X R. PDE MANOEL DA N\u00d3BREGA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.86/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885049, "longitude": -43.310734, "objects": [], "identifications": []}, {"id": "004127", "name": "R. S\u00e3O JANU\u00e1RIO, 832", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892849, "longitude": -43.227543, "objects": [], "identifications": []}, {"id": "004100", "name": "AV. ATL\u00c2NTICA, 22 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.47/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96694167, "longitude": -43.17722478, "objects": [], "identifications": []}, {"id": "002005", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012223, "longitude": -43.45876, "objects": [], "identifications": []}, {"id": "001907", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES , 1776 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.196/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.883704, "longitude": -43.570395, "objects": [], "identifications": []}, {"id": "001097", "name": "AV. BRAZ DE PINA X R CMTE. CONCEI\u00c7\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.94/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839921, "longitude": -43.281957, "objects": [], "identifications": []}, {"id": "000548", "name": "AV. BRASIL X RESTAURANTE ALDEIAS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.858247, "longitude": -43.501137, "objects": [], "identifications": []}, {"id": "002052", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85213453, "longitude": -43.3122167, "objects": [], "identifications": []}, {"id": "001469", "name": "PREFEITURA CASS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.2.71/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911094, "longitude": -43.206296, "objects": [], "identifications": []}, {"id": "001425", "name": "AV. NIEMEYER 204B - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99480022, "longitude": -43.23466871, "objects": [], "identifications": []}, {"id": "002004", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012114, "longitude": -43.45821, "objects": [], "identifications": []}, {"id": "001457", "name": "R. MARIZ E BARROS X R. FELISBERTO DE MENEZES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.36.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91260317, "longitude": -43.21603446, "objects": [], "identifications": []}, {"id": "000532", "name": "BURACO DO PADRE", "rtsp_url": "rtsp://admin:admin@10.52.210.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9029945, "longitude": -43.26851963, "objects": [], "identifications": []}, {"id": "003563", "name": "ESTR. DA CACUIA, 745 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.116/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.811116, "longitude": -43.184515, "objects": [], "identifications": []}, {"id": "000068", "name": "AUTOESTRADA LAGOA-BARRA EM FRENTE SHOPPING FASHION MALL", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.996514, "longitude": -43.260427, "objects": [], "identifications": []}, {"id": "001214", "name": "AV. ATL\u00c2NTICA X R. FRANCISCO S\u00c1 - FIXA", "rtsp_url": "rtsp://10.52.252.124/", "update_interval": 120, "latitude": -22.982599, "longitude": -43.1896, "objects": [], "identifications": []}, {"id": "000173", "name": "AV. BRASIL X GAE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887381, "longitude": -43.23122, "objects": [], "identifications": []}, {"id": "003256", "name": "R. FIGUEIRA LIMA X S\u00e3O CRIST\u00f3V\u00e3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.901123, "longitude": -43.216668, "objects": [], "identifications": []}, {"id": "001109", "name": "CONDE DE BONFIM X ALZIRA BRAND\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92460734, "longitude": -43.22441556, "objects": [], "identifications": []}, {"id": "003215", "name": "R. DEM\u00f3STENES MADUREIRA DE PINHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.187/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.023517, "longitude": -43.457761, "objects": [], "identifications": []}, {"id": "002516", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87754599, "longitude": -43.33705516, "objects": [], "identifications": []}, {"id": "002527", "name": "OTAVIANO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.28.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8658174, "longitude": -43.33442899, "objects": [], "identifications": []}, {"id": "002147", "name": "CAPITAO MENEZES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.23.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89295582, "longitude": -43.34859234, "objects": [], "identifications": []}, {"id": "001905", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES , 1674 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.194/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.885709, "longitude": -43.569153, "objects": [], "identifications": []}, {"id": "003978", "name": "RUA CONDE DE BONFIM, 1331 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.197/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94618134, "longitude": -43.25534062, "objects": [], "identifications": []}, {"id": "000333", "name": "R. CONDE DE BONFIM X R. ALMIRANTE COCHRANE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.242/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923061, "longitude": -43.231072, "objects": [], "identifications": []}, {"id": "000361", "name": "R. MARIZ E BARROS X R. CAMPOS SALES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.164/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914306, "longitude": -43.219056, "objects": [], "identifications": []}, {"id": "001037", "name": "R. ARQUIAS CORDEIRO X R. CORA\u00c7\u00c3O DE MARIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.98/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89919158, "longitude": -43.28047196, "objects": [], "identifications": []}, {"id": "004118", "name": "AV. NIEMEYER, 393", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99931595, "longitude": -43.24774696, "objects": [], "identifications": []}, {"id": "001750", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.71/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957128, "longitude": -43.268289, "objects": [], "identifications": []}, {"id": "002000", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012314, "longitude": -43.458156, "objects": [], "identifications": []}, {"id": "001770", "name": "AV. \u00c9DISON PASSOS, 4200 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.959349, "longitude": -43.26842, "objects": [], "identifications": []}, {"id": "002291", "name": "BOSQUE MARAPENDI - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.107.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00386122, "longitude": -43.32272939, "objects": [], "identifications": []}, {"id": "002440", "name": "PE. JO\u00e3O CRIBBIN / MARECHAL MALLET - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.19.3/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87601, "longitude": -43.40523, "objects": [], "identifications": []}, {"id": "001307", "name": "AV. GENARO DE CARVALHO X R. JOAQUIM JOSE COUTO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01355606, "longitude": -43.44689081, "objects": [], "identifications": []}, {"id": "002411", "name": "OLOF PALME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.5.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98217191, "longitude": -43.41045032, "objects": [], "identifications": []}, {"id": "001408", "name": "AV. BARTOLOMEU MITRE, 1099 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.14/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9783579, "longitude": -43.22478515, "objects": [], "identifications": []}, {"id": "001002", "name": "RUA BARATA RIBEIRO X R. PROFESSOR GAST\u00c3O BAHIANA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97781347, "longitude": -43.19295061, "objects": [], "identifications": []}, {"id": "003600", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X R. LU\u00edSA DE CARVALHO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.168/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85113, "longitude": -43.317752, "objects": [], "identifications": []}, {"id": "000602", "name": "CONDE DE BONFIM X ALZIRA BRAND\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.924532, "longitude": -43.224376, "objects": [], "identifications": []}, {"id": "003717", "name": "ESTRADA INTENDENTE MAGALH\u00e3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88291137, "longitude": -43.34499495, "objects": [], "identifications": []}, {"id": "001734", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.55/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951172, "longitude": -43.258405, "objects": [], "identifications": []}, {"id": "001043", "name": "R. DIAS DA CRUZ, 69 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90196755, "longitude": -43.27952225, "objects": [], "identifications": []}, {"id": "004030", "name": "AV. DE SANTA CRUZ, 12055 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892837, "longitude": -43.529942, "objects": [], "identifications": []}, {"id": "004074", "name": "ESTR. DOS BANDEIRANTES, 4148 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957668, "longitude": -43.380737, "objects": [], "identifications": []}, {"id": "003805", "name": "ESTR. DOS BANDEIRANTES, 802 - FIXA", "rtsp_url": "rtsp://admin:7lansmtr@10.50.106.60/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93050732, "longitude": -43.37338572, "objects": [], "identifications": []}, {"id": "004130", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85340831, "longitude": -43.38454536, "objects": [], "identifications": []}, {"id": "001838", "name": "ESTR. DAS FURNAS, 2258-2408 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.980298, "longitude": -43.292961, "objects": [], "identifications": []}, {"id": "000395", "name": "R. MEDINA X R. SILVA RABELO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.899907, "longitude": -43.281401, "objects": [], "identifications": []}, {"id": "002028", "name": "PENHA I - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.841913, "longitude": -43.277341, "objects": [], "identifications": []}, {"id": "002421", "name": "MINHA PRAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.10.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9670253, "longitude": -43.39723512, "objects": [], "identifications": []}, {"id": "003265", "name": "MONUMENTO BALAUSTRES DA MURADA DA GL\u00f3RIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.227/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.922646, "longitude": -43.172481, "objects": [], "identifications": []}, {"id": "001962", "name": "MONUMENTO MARIELLE FRANCO (LADO) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90632793, "longitude": -43.17619575, "objects": [], "identifications": []}, {"id": "003582", "name": "ESTR. DOS BANDEIRANTES, 5900 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96137, "longitude": -43.39573, "objects": [], "identifications": []}, {"id": "003504", "name": "ESTR. DOS BANDEIRANTES X R. PEDRO CALMON - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.57/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.975183, "longitude": -43.415097, "objects": [], "identifications": []}, {"id": "003116", "name": "R. JOS\u00c9 HIGINO, 110 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92680941, "longitude": -43.24001454, "objects": [], "identifications": []}, {"id": "002253", "name": "PARQUE DAS ROSAS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.102.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00001993, "longitude": -43.35246438, "objects": [], "identifications": []}, {"id": "001684", "name": "RUA CONDE BONFIM 1590 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946937, "longitude": -43.256866, "objects": [], "identifications": []}, {"id": "001470", "name": "AV. DO PEP X AV. OLEGRIO MACIEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.37/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0151925, "longitude": -43.3058818, "objects": [], "identifications": []}, {"id": "001119", "name": "MONUMENTO NOEL ROSA - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.26.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91362722, "longitude": -43.23541453, "objects": [], "identifications": []}, {"id": "000335", "name": "RUA CONDE DE BONFIM X RUA PINTO FIGUEIREDO", "rtsp_url": "rtsp://user:7lanmstr@10.50.224.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925631, "longitude": -43.23494, "objects": [], "identifications": []}, {"id": "003782", "name": "R. DR. PADILHA - ENGENH\u00e3O PORT\u00e3O LESTE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.51/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89427446, "longitude": -43.29014248, "objects": [], "identifications": []}, {"id": "001545", "name": "AV. AMARO CAVALCANTI, 693 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89761, "longitude": -43.28409, "objects": [], "identifications": []}, {"id": "004158", "name": "TERMINAL DEODORO 1 ANDAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85423368, "longitude": -43.38345757, "objects": [], "identifications": []}, {"id": "003278", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 06 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.210/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98044127, "longitude": -43.19275559, "objects": [], "identifications": []}, {"id": "000396", "name": "PARQUE DE MADUREIRA - PISTA DE SKATE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.56/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86239608, "longitude": -43.34684248, "objects": [], "identifications": []}, {"id": "002487", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88377696, "longitude": -43.39984515, "objects": [], "identifications": []}, {"id": "000079", "name": "R. TEODORO DA SILVA X R. ALEXANDRE CALAZA", "rtsp_url": "rtsp://admin:cor123@10.52.26.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920197, "longitude": -43.25966, "objects": [], "identifications": []}, {"id": "003225", "name": "ESTR. RIO S\u00e3O PAULO, 2172 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881164, "longitude": -43.57349, "objects": [], "identifications": []}, {"id": "000708", "name": "AV. DUQUE DE CAXIAS X TEN. NEPOMUCENO", "rtsp_url": "rtsp://admin:admin@10.52.208.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.867998, "longitude": -43.406686, "objects": [], "identifications": []}, {"id": "003391", "name": "ESTR. DOS BANDEIRANTES, 12179-12067 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989049, "longitude": -43.440787, "objects": [], "identifications": []}, {"id": "000054", "name": "AV. EMBAIXADOR ABELARDO BUENO X ESTR. CEL. PEDRO CORREA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.54/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.973309, "longitude": -43.385863, "objects": [], "identifications": []}, {"id": "001976", "name": "AV. TEOT\u00d4NIO VIL\u00c9LA, 842-930 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02335157, "longitude": -43.4926686, "objects": [], "identifications": []}, {"id": "000107", "name": "R. IBIAPINA X R. URANOS", "rtsp_url": "rtsp://10.52.216.72/", "update_interval": 120, "latitude": -22.845602, "longitude": -43.267863, "objects": [], "identifications": []}, {"id": "003214", "name": "R. DEM\u00f3STENES MADUREIRA DE PINHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.023417, "longitude": -43.457761, "objects": [], "identifications": []}, {"id": "001517", "name": "AV. MERITI, 2114 - BR\u00c1S DE PINA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.135/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.836701, "longitude": -43.308891, "objects": [], "identifications": []}, {"id": "002532", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83901012, "longitude": -43.24032647, "objects": [], "identifications": []}, {"id": "001438", "name": "AV. NIEMEYER 749 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.159/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000046, "longitude": -43.243214, "objects": [], "identifications": []}, {"id": "000368", "name": "R. CONDE DE BONFIM X R. BASILEIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.99/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.938841, "longitude": -43.247659, "objects": [], "identifications": []}, {"id": "001876", "name": "AV. \u00c9DISON PASSOS, 4271-4211 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.119/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96089212, "longitude": -43.27313529, "objects": [], "identifications": []}, {"id": "001699", "name": "AV. \u00c9DISON PASSOS, 1980 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953747, "longitude": -43.262329, "objects": [], "identifications": []}, {"id": "001335", "name": "RUA HENRIQUE OSWALD, 70 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.189/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9642891, "longitude": -43.19130276, "objects": [], "identifications": []}, {"id": "000111", "name": "AV. VENCESLAU BR\u00c1S PR\u00d3XIMO AO GMAR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950001, "longitude": -43.177674, "objects": [], "identifications": []}, {"id": "003263", "name": "MONUMENTO BALAUSTRES DA MURADA DA GL\u00f3RIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.225/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92261624, "longitude": -43.17240272, "objects": [], "identifications": []}, {"id": "002243", "name": "PREFEITO ALIM PEDRO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.57.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90370172, "longitude": -43.56661271, "objects": [], "identifications": []}, {"id": "001992", "name": "ESTR. DOS BANDEIRANTES, 22331 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988061, "longitude": -43.485957, "objects": [], "identifications": []}, {"id": "000571", "name": "AV. CES\u00c1RIO DE MELO X R. ARTUR RIOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.39/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902388, "longitude": -43.549064, "objects": [], "identifications": []}, {"id": "000512", "name": "AV. GEREM\u00c1RIO DANTAS X R. EDGAR WERNECK", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.936213, "longitude": -43.351901, "objects": [], "identifications": []}, {"id": "001593", "name": "AV. PRESIDENTE VARGAS 2014 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9066909, "longitude": -43.19675409, "objects": [], "identifications": []}, {"id": "003381", "name": "ESTR. DOS BANDEIRANTES, 12790 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.205/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.992776, "longitude": -43.448693, "objects": [], "identifications": []}, {"id": "003022", "name": "CFTV COR - ESTACIONAMENTO 3", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911874, "longitude": -43.20402, "objects": [], "identifications": []}, {"id": "000320", "name": "PRA\u00c7A VEREADOR ROCHA LE\u00c3O, 50 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96455461, "longitude": -43.19058382, "objects": [], "identifications": []}, {"id": "001675", "name": "R. PROFESSOR SOUZA MOREIRA X PRA\u00c7A JO\u00c3O WESLEI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910355, "longitude": -43.595242, "objects": [], "identifications": []}, {"id": "000771", "name": "AV. REI PELE X VIADUTO ODUVALDO COZZI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.190/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910868, "longitude": -43.226114, "objects": [], "identifications": []}, {"id": "002042", "name": "GUAPORE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.36.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.837683, "longitude": -43.290059, "objects": [], "identifications": []}, {"id": "004048", "name": "ESTR. DOS BANDEIRANTES, 3329 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95254434, "longitude": -43.37493474, "objects": [], "identifications": []}, {"id": "004287", "name": "AV. RIO BRANCO X R. EVARISTO DA VEIGA", "rtsp_url": "rtsp://admin:123smart@10.52.17.31/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909629, "longitude": -43.176542, "objects": [], "identifications": []}, {"id": "003678", "name": "AV. GEREM\u00e1RIO DANTAS, 1421", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.939825, "longitude": -43.343887, "objects": [], "identifications": []}, {"id": "001341", "name": "PRA\u00c7A EUG\u00caNIO JARDIM - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.217/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97645617, "longitude": -43.19373622, "objects": [], "identifications": []}, {"id": "003642", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3525 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.206/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.870179, "longitude": -43.28998, "objects": [], "identifications": []}, {"id": "000834", "name": "R. MARQU\u00caS DE ABRANTES X ALTURA DA P.DE BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94104, "longitude": -43.178764, "objects": [], "identifications": []}, {"id": "001767", "name": "AV. \u00c9DISON PASSOS, 4794 - FIXA", "rtsp_url": "rtsp://admin:admin@10.52.247.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958553, "longitude": -43.267638, "objects": [], "identifications": []}, {"id": "003158", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.137/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96279118, "longitude": -43.19136365, "objects": [], "identifications": []}, {"id": "001465", "name": "AV. \u00c9RICO VER\u00cdSSIMO X RUA FERNANDO DE MATTOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.65/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.011331, "longitude": -43.309703, "objects": [], "identifications": []}, {"id": "002021", "name": "PIRA OL\u00cdMPICA 2", "rtsp_url": "rtsp://10.52.15.4/2021-VIDEO", "update_interval": 120, "latitude": -22.90037933, "longitude": -43.17676935, "objects": [], "identifications": []}, {"id": "003123", "name": "AV. PASTOR MARTIN LUTHER KING JR., 7508 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84662418, "longitude": -43.32635235, "objects": [], "identifications": []}, {"id": "001326", "name": "AV. ATL\u00c2NTICA X RUA SIQUEIRA CAMPOS - FIXA", "rtsp_url": "rtsp://10.52.252.110/", "update_interval": 120, "latitude": -22.970505, "longitude": -43.182582, "objects": [], "identifications": []}, {"id": "000250", "name": "RUA MARQU\u00caS DE S\u00c3O VICENTE X R. VICE-GOV. RUBENS BERARDO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976922, "longitude": -43.23055, "objects": [], "identifications": []}, {"id": "001185", "name": "AV. ATL\u00c2NTICA X R. MIGUEL LEMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.198/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97841618, "longitude": -43.18870589, "objects": [], "identifications": []}, {"id": "003289", "name": "R.CAMPO DE S\u00e3O CRIST\u00f3V\u00e3O X R.FIGUEIRA DE MELO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89829678, "longitude": -43.21954664, "objects": [], "identifications": []}, {"id": "001254", "name": "AV. LAURO SODR\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95781111, "longitude": -43.177525, "objects": [], "identifications": []}, {"id": "001404", "name": "PRA\u00c7A NOSSA SENHORA AUXILIADORA 93 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97770575, "longitude": -43.22249592, "objects": [], "identifications": []}, {"id": "000290", "name": "AV. N. SRA. DE COPACABANA X R. CONSTANTE RAMOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.974051, "longitude": -43.189123, "objects": [], "identifications": []}, {"id": "003272", "name": "R. CAMPO DE S\u00e3O CRIST\u00f3V\u00e3O, 87 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.6/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89878976, "longitude": -43.21983301, "objects": [], "identifications": []}, {"id": "002152", "name": "CAMPINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.25.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8819292, "longitude": -43.3417911, "objects": [], "identifications": []}, {"id": "003806", "name": "AV. BRASIL X ESTA\u00e7\u00e3O PARADA DE LUCAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.92/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81607381, "longitude": -43.3009009, "objects": [], "identifications": []}, {"id": "003518", "name": "ESTR. DOS BANDEIRANTES, 8462 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.71/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971618, "longitude": -43.413996, "objects": [], "identifications": []}, {"id": "001013", "name": "R. DAS OFICINAS X R. HENRIQUE SCHEID", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.41/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89147164, "longitude": -43.29162305, "objects": [], "identifications": []}, {"id": "003712", "name": "AV. ERNANI CARDOSO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882895, "longitude": -43.341249, "objects": [], "identifications": []}, {"id": "001985", "name": "ESTR. VER. ALCEL DE CARVALHO, 2-222 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9974885, "longitude": -43.4947743, "objects": [], "identifications": []}, {"id": "002098", "name": "RIO II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.7.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97322551, "longitude": -43.3835092, "objects": [], "identifications": []}, {"id": "000071", "name": "S\u00c3O FRANCISCO XAVIER X HEITOR BELTR\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.27.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920765, "longitude": -43.222661, "objects": [], "identifications": []}, {"id": "001768", "name": "AV. \u00c9DISON PASSOS, 4114 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.88/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95929148, "longitude": -43.26812473, "objects": [], "identifications": []}, {"id": "003185", "name": "AV. GLAUCIO GIL, 1078 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.161/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.014862, "longitude": -43.460986, "objects": [], "identifications": []}, {"id": "003163", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 7 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.961207, "longitude": -43.190805, "objects": [], "identifications": []}, {"id": "002131", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92497272, "longitude": -43.37379687, "objects": [], "identifications": []}, {"id": "001880", "name": "R. AROEIRAS, 134 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.838045, "longitude": -43.3997706, "objects": [], "identifications": []}, {"id": "001990", "name": "ESTR. DOS BANDEIRANTES, 22289 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.237/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987349, "longitude": -43.48883, "objects": [], "identifications": []}, {"id": "003620", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 3779", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.184/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86687, "longitude": -43.30165, "objects": [], "identifications": []}, {"id": "000104", "name": "VIAS ELEVADAS PROF. ENG. RUFINO DE ALMEIDA ALTURA LEOPOLDINA PISTA SUPERIOR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906202, "longitude": -43.213831, "objects": [], "identifications": []}, {"id": "003452", "name": "ESTRADA DOS BANDEIRANTES, 11632 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.22/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98923, "longitude": -43.436909, "objects": [], "identifications": []}, {"id": "004069", "name": "ESTR. DOS BANDEIRANTES, 3586 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95437057, "longitude": -43.37625855, "objects": [], "identifications": []}, {"id": "001028", "name": "R. ARISTIDES CAIRE X R. SANTA F\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.103/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89960593, "longitude": -43.27806389, "objects": [], "identifications": []}, {"id": "004111", "name": "R. DOM PEDRITO, 163 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.44/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.903927, "longitude": -43.572717, "objects": [], "identifications": []}, {"id": "003547", "name": "ESTR. DO RIO JEQUI\u00e1, 1118", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.110/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.819184, "longitude": -43.182904, "objects": [], "identifications": []}, {"id": "003200", "name": "AV. GLAUCIO GIL, 480 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.020683, "longitude": -43.458901, "objects": [], "identifications": []}, {"id": "002051", "name": "VILA KOSMOS - NOSSA SENHORA DO CARMO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.33.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.850009, "longitude": -43.308189, "objects": [], "identifications": []}, {"id": "003681", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR , ALT. SHOP. NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879838, "longitude": -43.270106, "objects": [], "identifications": []}, {"id": "000277", "name": "RUA BARATA RIBEIRO X R. PRADO JUNIOR", "rtsp_url": "rtsp://admin:admin@10.52.31.32/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.962256, "longitude": -43.176012, "objects": [], "identifications": []}, {"id": "002016", "name": "SANTA LUZIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.43.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.854711, "longitude": -43.253977, "objects": [], "identifications": []}, {"id": "002140", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89833317, "longitude": -43.35275072, "objects": [], "identifications": []}, {"id": "001460", "name": "AV. ARMANDO LOMBARDI 669 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.33/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.007046, "longitude": -43.311794, "objects": [], "identifications": []}, {"id": "001690", "name": "AV. \u00c9DISON PASSOS, 4200 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.950155, "longitude": -43.262013, "objects": [], "identifications": []}, {"id": "000601", "name": "BARTOLOMEU DE GUSM\u00c3O - ACESSO AO MARACAN\u00c3", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909278, "longitude": -43.226288, "objects": [], "identifications": []}, {"id": "001154", "name": "R. VISCONDE DO RIO BRANCO X R. DOS INV\u00c1LIDOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90830653, "longitude": -43.18628424, "objects": [], "identifications": []}, {"id": "003848", "name": "ESTR. DOS BANDEIRANTES, 25422-25636 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97847111, "longitude": -43.50243195, "objects": [], "identifications": []}, {"id": "003180", "name": "AV. SALVADOR ALLENDE - BARRA DA TIJUCA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.157/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.997562, "longitude": -43.426382, "objects": [], "identifications": []}, {"id": "000089", "name": "AV. DOM HELDER C\u00c2MARA X VIADUTO CRIST\u00d3V\u00c3O COLOMBO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.883491, "longitude": -43.291715, "objects": [], "identifications": []}, {"id": "003334", "name": "ESTR. DO RIO JEQUI\u00e1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8164087, "longitude": -43.1865506, "objects": [], "identifications": []}, {"id": "002331", "name": "INTERLAGOS - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.8.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00085794, "longitude": -43.41711832, "objects": [], "identifications": []}, {"id": "002489", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88412291, "longitude": -43.39989879, "objects": [], "identifications": []}, {"id": "002073", "name": "DIVINA PROVIDENCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.14.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94043702, "longitude": -43.37245835, "objects": [], "identifications": []}, {"id": "003117", "name": "RUA DOIS, 61 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92570411, "longitude": -43.24021454, "objects": [], "identifications": []}, {"id": "001889", "name": "R. SOL\u00c2NEA, 299 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.177/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.881948, "longitude": -43.556315, "objects": [], "identifications": []}, {"id": "001710", "name": "T\u00daNEL NOEL ROSA - SA\u00cdDA VILA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91364966, "longitude": -43.2519458, "objects": [], "identifications": []}, {"id": "003591", "name": "ESTR. DOS BANDEIRANTES, 7700 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96753, "longitude": -43.41312, "objects": [], "identifications": []}, {"id": "002197", "name": "VILA PACI\u00caNCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.40.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.928573, "longitude": -43.654012, "objects": [], "identifications": []}, {"id": "003141", "name": "AV. DAS AM\u00c9RICAS X AV. AYRTON SENNA - CEBOL\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.87/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00016974, "longitude": -43.36926474, "objects": [], "identifications": []}, {"id": "004198", "name": "RUA CORREIA VASQUES, 250", "rtsp_url": "rtsp://admin:123smart@10.52.33.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91041, "longitude": -43.201338, "objects": [], "identifications": []}, {"id": "003510", "name": "ESTR. DOS BANDEIRANTES, 9399-9133 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98, "longitude": -43.421971, "objects": [], "identifications": []}, {"id": "004286", "name": "AV. RODRIGO OT\u00e1VIO, 165", "rtsp_url": "rtsp://admin:123smart@10.52.37.183/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9763801, "longitude": -43.2264813, "objects": [], "identifications": []}, {"id": "001666", "name": "AV. DOM H\u00c9LDER C\u00c2MARA, 6444", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.63/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.882782, "longitude": -43.292053, "objects": [], "identifications": []}, {"id": "000488", "name": "RUA OLOF PALM X ABRA\u00c3O JABOUR", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.978317, "longitude": -43.416542, "objects": [], "identifications": []}, {"id": "001565", "name": "COMLURB - RUA POMPEU LOUREIRO, 21 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.143/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.971893, "longitude": -43.191684, "objects": [], "identifications": []}, {"id": "001019", "name": "DESCIDA DO MERGULH\u00c3O X SENTIDO BARRA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99722394, "longitude": -43.36567915, "objects": [], "identifications": []}, {"id": "003320", "name": "PRAIA DA BICA PR\u00f3X. AV FRANCISCO ALVES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.123/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8187325, "longitude": -43.1998025, "objects": [], "identifications": []}, {"id": "000319", "name": "R. DA PASSAGEM X R. ARNALDO QUINTELA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95451562, "longitude": -43.18112382, "objects": [], "identifications": []}, {"id": "000195", "name": "AV. NELSON CARDOSO X ESTR. DO CAFUNDA - BRT", "rtsp_url": "rtsp://ineo:telca2000@10.50.106.96/mpeg4/ch1/sub/av_stream", "update_interval": 120, "latitude": -22.91846, "longitude": -43.36533, "objects": [], "identifications": []}, {"id": "002237", "name": "PARQUE ESPERAN\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.54.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90704999, "longitude": -43.57126295, "objects": [], "identifications": []}, {"id": "000062", "name": "AV. SERNAMBETIBA X PRA\u00c7A DO \u00d3", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012976, "longitude": -43.31833, "objects": [], "identifications": []}, {"id": "001414", "name": "AV. NIEMEYER 54 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990757, "longitude": -43.229449, "objects": [], "identifications": []}, {"id": "002410", "name": "OLOF PALME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.5.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98147953, "longitude": -43.40993679, "objects": [], "identifications": []}, {"id": "001549", "name": "AV. DOM H\u00c9LDER C\u00c2MARA, 5861 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.24/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88689, "longitude": -43.28782, "objects": [], "identifications": []}, {"id": "003347", "name": "R. ENG. ROZAURO ZAMBRANO, 74 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.817787, "longitude": -43.201544, "objects": [], "identifications": []}, {"id": "000414", "name": "AV. TEIXEIRA DE CASTRO X R. BARREIROS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.41/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.853566, "longitude": -43.252155, "objects": [], "identifications": []}, {"id": "002143", "name": "PRACA SECA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.22.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89728552, "longitude": -43.35188078, "objects": [], "identifications": []}, {"id": "000245", "name": "AV. DELFIM MOREIRA X AV. NIEMEYER", "rtsp_url": "rtsp://10.52.37.189/245-VIDEO", "update_interval": 120, "latitude": -22.9886597, "longitude": -43.22809797, "objects": [], "identifications": []}, {"id": "004099", "name": "AV. AYRTON SENNA, 5850 - EM FRENTE AO ESPA\u00c7O HALL", "rtsp_url": "rtsp://admin:123smart@10.50.106.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96025712, "longitude": -43.35735218, "objects": [], "identifications": []}, {"id": "002455", "name": "VENTURA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.13.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94786, "longitude": -43.39174, "objects": [], "identifications": []}, {"id": "000190", "name": "R. CANDIDO BENICIO X R. CAPIT\u00c3O MENEZES - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.102/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89238567, "longitude": -43.34816333, "objects": [], "identifications": []}, {"id": "000547", "name": "AV. BRASIL X ESTR. DA EQUITA\u00c7\u00c3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.862069, "longitude": -43.411317, "objects": [], "identifications": []}, {"id": "004239", "name": "AV. FRANCISCO BHERING, 200", "rtsp_url": "rtsp://admin:123smart@10.52.22.149/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98884877, "longitude": -43.19190216, "objects": [], "identifications": []}, {"id": "002491", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88439966, "longitude": -43.3999256, "objects": [], "identifications": []}, {"id": "003155", "name": "T\u00faNEL VELHO SENT. COPACABANA - 9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963251, "longitude": -43.191548, "objects": [], "identifications": []}, {"id": "001875", "name": "AV. \u00c9DISON PASSOS, 1175 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.195/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951577, "longitude": -43.260438, "objects": [], "identifications": []}, {"id": "001333", "name": "AV. ATL\u00c2NTICA, N 110 - FIXA", "rtsp_url": "rtsp://10.52.252.78/", "update_interval": 120, "latitude": -22.972292, "longitude": -43.184513, "objects": [], "identifications": []}, {"id": "001637", "name": "AV. DOM HELDER CAMARA X R. PEDRAS ALTAS X R. SILVA MOUR\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.27/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.886872, "longitude": -43.280339, "objects": [], "identifications": []}, {"id": "000330", "name": "R. PRUDENTE DE MORAIS X R. MARIA QUITERIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985163, "longitude": -43.207175, "objects": [], "identifications": []}, {"id": "003279", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 07 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98096, "longitude": -43.19261, "objects": [], "identifications": []}, {"id": "000073", "name": "R. CONDE DE BONFIM X R. GENERAL ROCCA", "rtsp_url": "rtsp://admin:cor12345@10.52.208.230/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.924669, "longitude": -43.233547, "objects": [], "identifications": []}, {"id": "000405", "name": "ABELARDO BUENO - EM FRENTE 3600", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97315994, "longitude": -43.39799721, "objects": [], "identifications": []}, {"id": "000567", "name": "AV. CES\u00c1RIO DE MELO X ALT. DO CAL\u00c7AD\u00c3O DE CAMPO GRANDE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906044, "longitude": -43.559783, "objects": [], "identifications": []}, {"id": "002241", "name": "C\u00c2NDIDO MAGALH\u00c3ES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.55.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90769338, "longitude": -43.56403486, "objects": [], "identifications": []}, {"id": "001600", "name": "VIADUTO S\u00c3O SEBASTI\u00c3O 1214 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908402, "longitude": -43.196919, "objects": [], "identifications": []}, {"id": "003778", "name": "PASSARELA ENGENH\u00e3O - PORT\u00e3O ALA SUL - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8950692, "longitude": -43.29262032, "objects": [], "identifications": []}, {"id": "003361", "name": "ESTR. DOS BANDEIRANTES, 14914 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.185/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982954, "longitude": -43.462664, "objects": [], "identifications": []}, {"id": "000289", "name": "AV. N. SRA. DE COPACABANA X R. S\u00c1 FERREIRA", "rtsp_url": "rtsp://10.52.21.44/289-VIDEO", "update_interval": 120, "latitude": -22.980866, "longitude": -43.191258, "objects": [], "identifications": []}, {"id": "002378", "name": "ILHA DE GUARATIBA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.24.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00927046, "longitude": -43.54013044, "objects": [], "identifications": []}, {"id": "003584", "name": "ESTR. DOS BANDEIRANTES, 5920 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.211.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96177052, "longitude": -43.39664635, "objects": [], "identifications": []}, {"id": "003747", "name": "AV. D. HELDER C\u00e2MARA X R. HENRIQUE SCHEID", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.89/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88683421, "longitude": -43.28773303, "objects": [], "identifications": []}, {"id": "003564", "name": "AV. PRES. ANTONIO CARLOS X R. ARA\u00faJO PORTO ALEGRE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.16.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.908099, "longitude": -43.172981, "objects": [], "identifications": []}, {"id": "002059", "name": "MARAMBAIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.31.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85304655, "longitude": -43.3202815, "objects": [], "identifications": []}, {"id": "000259", "name": "AV. BORGES DE MEDEIROS X ALTURA DO PARQUE DOS PATINS", "rtsp_url": "rtsp://admin:admin@10.52.11.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.970898, "longitude": -43.217291, "objects": [], "identifications": []}, {"id": "003167", "name": "AV. EMBAIXADOR ABELARDO BUENO, N\u00ba 4801", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9732631, "longitude": -43.3994164, "objects": [], "identifications": []}, {"id": "003262", "name": "MONUMENTO BALAUSTRES DA MURADA DA GL\u00f3RIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.224/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.922804, "longitude": -43.172565, "objects": [], "identifications": []}, {"id": "001697", "name": "AV. RADIAL OESTE, 2088-2092 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.252.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911037, "longitude": -43.226156, "objects": [], "identifications": []}, {"id": "001365", "name": "AV. PRINCESA ISABEL PROX AUGUSTO RIO COPA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96174077, "longitude": -43.17527541, "objects": [], "identifications": []}, {"id": "004137", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.41/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8536765, "longitude": -43.3839982, "objects": [], "identifications": []}, {"id": "003743", "name": "PRA\u00e7A WALDIR VIEIRA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912245, "longitude": -43.388554, "objects": [], "identifications": []}, {"id": "003686", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 1335 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842324, "longitude": -43.335184, "objects": [], "identifications": []}, {"id": "003144", "name": "AV. PASTOR MARTIN LUTHER KING JR., 7508 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.114/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84656485, "longitude": -43.32654546, "objects": [], "identifications": []}, {"id": "000458", "name": "AV. D. HELDER C\u00c2MARA X R. CER. DALTRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.85/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88216538, "longitude": -43.32467071, "objects": [], "identifications": []}, {"id": "002367", "name": "RECREIO SHOPPING - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.19.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01948341, "longitude": -43.48649484, "objects": [], "identifications": []}, {"id": "001140", "name": "AV. ATL\u00c2NTICA X R. REP. DO PERU - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.252.189/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96923966, "longitude": -43.18086438, "objects": [], "identifications": []}, {"id": "003121", "name": "ESTR. CEL. PEDRO CORR\u00caA, 232 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96177, "longitude": -43.390449, "objects": [], "identifications": []}, {"id": "004021", "name": "ESTR. DOS BANDEIRANTES, 1458 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93668, "longitude": -43.37202, "objects": [], "identifications": []}, {"id": "001573", "name": "AV. AYRTON SENNA, 2000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.52/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.996678, "longitude": -43.365629, "objects": [], "identifications": []}, {"id": "003654", "name": "AV. PASTOR MARTIN LUTHER KING JUNIOR 70", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.218/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.874771, "longitude": -43.280598, "objects": [], "identifications": []}, {"id": "002389", "name": "MAGAR\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.28.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96864525, "longitude": -43.62203359, "objects": [], "identifications": []}, {"id": "001263", "name": "AV. LAURO SODR\u00c9 - BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95442302, "longitude": -43.17844276, "objects": [], "identifications": []}, {"id": "000533", "name": "R. ANDR\u00c9 ROCHA X R. MAL. JOS\u00c9 BEVIL\u00c1QUA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92365833, "longitude": -43.36903261, "objects": [], "identifications": []}, {"id": "001765", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.85/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95806, "longitude": -43.266845, "objects": [], "identifications": []}, {"id": "003227", "name": "RUA AROAZES, 730", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97107634, "longitude": -43.39274418, "objects": [], "identifications": []}, {"id": "001630", "name": "AV. GABRIELA PRADO MAIA RIBEIRO, 289B - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.228/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923471, "longitude": -43.230543, "objects": [], "identifications": []}, {"id": "001589", "name": "AV. PRES. VARGAS, 2863 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.34.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90857, "longitude": -43.201632, "objects": [], "identifications": []}, {"id": "003389", "name": "ESTR. DOS BANDEIRANTES, 12250 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.213/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989562, "longitude": -43.442276, "objects": [], "identifications": []}, {"id": "003330", "name": "ESTRADA DO GALE\u00e3O X ESTR. DA CACUIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8119983, "longitude": -43.1915522, "objects": [], "identifications": []}, {"id": "002107", "name": "CENTRO METROPOLITANO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.5.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97341395, "longitude": -43.36530881, "objects": [], "identifications": []}, {"id": "001614", "name": "R. DO LAVRADIO, 206D - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91371, "longitude": -43.181538, "objects": [], "identifications": []}, {"id": "001375", "name": "AV. ALFREDO BALTHAZAR DA SILVEIRA ALT. BARRA WORLD - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0092773, "longitude": -43.44044451, "objects": [], "identifications": []}, {"id": "000092", "name": "AV. BRASIL X VIADUTO ATAULFO ALVES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887434, "longitude": -43.23249, "objects": [], "identifications": []}, {"id": "001280", "name": "AV. ATL\u00c2NTICA X R. ALM. GON\u00c7ALVES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.115/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979815, "longitude": -43.189406, "objects": [], "identifications": []}, {"id": "001542", "name": "AV. MARACAN\u00c3 X S\u00c3O FRANCISCO XAVIER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91624, "longitude": -43.229786, "objects": [], "identifications": []}, {"id": "001816", "name": "R. BOA VISTA, 1302-1456 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.9/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97422, "longitude": -43.285824, "objects": [], "identifications": []}, {"id": "000291", "name": "AV. ATL\u00c2NTICA X R. REP. DO PERU - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.188/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.969131, "longitude": -43.180741, "objects": [], "identifications": []}, {"id": "004164", "name": "AV. MAESTRO PAULO E SILVA 400 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.81/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80177, "longitude": -43.20228, "objects": [], "identifications": []}, {"id": "003104", "name": "R. NETUNO 714 A 794.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8055026, "longitude": -43.35682072, "objects": [], "identifications": []}, {"id": "002188", "name": "TERMINAL CENTRO OL\u00cdMPICO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.8.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97174, "longitude": -43.4006, "objects": [], "identifications": []}, {"id": "001178", "name": "AV. ATL\u00c2NTICA X R. ANCHIETA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96356008, "longitude": -43.16962312, "objects": [], "identifications": []}, {"id": "001974", "name": "RUA MINISTRO TAVARES DE LIRA, 17-1", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.931026, "longitude": -43.179298, "objects": [], "identifications": []}, {"id": "003242", "name": "ESTRADA BENVINDO DE NOVAES, 880 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.207/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9941285, "longitude": -43.44790195, "objects": [], "identifications": []}, {"id": "004060", "name": "ESTR. DO MONTEIRO, 519 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918806, "longitude": -43.563246, "objects": [], "identifications": []}, {"id": "001008", "name": "AV. RIO BRANCO X R. EVARISTO DA VEIGA - FIXA", "rtsp_url": "rtsp://admin:admin@10.52.17.30/axis-media/media.amp?fps=15&resolution=1280x960&compression=70", "update_interval": 120, "latitude": -22.90951799, "longitude": -43.17603413, "objects": [], "identifications": []}, {"id": "000299", "name": "PRAIA DE BOTAFOGO X R. VISC. DE OURO PRETO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.29/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946188, "longitude": -43.182567, "objects": [], "identifications": []}, {"id": "004134", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.38/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85355663, "longitude": -43.38425571, "objects": [], "identifications": []}, {"id": "000525", "name": "ESTR. DE JACAREPAGU\u00c1 X ESTR.DO ENGENHO D\u00c1GUA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955084, "longitude": -43.337384, "objects": [], "identifications": []}, {"id": "001972", "name": "R. S\u00c3O CLEMENTE, 466", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95274741, "longitude": -43.19648248, "objects": [], "identifications": []}, {"id": "000526", "name": "ESTR. DO TINDIBA X P\u00c7A JAURU", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916678, "longitude": -43.377478, "objects": [], "identifications": []}, {"id": "003420", "name": "ESTR. DOS BANDEIRANTES, 25997", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984334, "longitude": -43.505867, "objects": [], "identifications": []}, {"id": "003261", "name": "MONUMENTO PEDRO I - PRA\u00e7A TIRADENTES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906505, "longitude": -43.182908, "objects": [], "identifications": []}, {"id": "001895", "name": "ESTR. DO MENDANHA, 1532-1666 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.183/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8750096, "longitude": -43.5544452, "objects": [], "identifications": []}, {"id": "004036", "name": "ESTR. DOS BANDEIRANTES, 2830 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94919844, "longitude": -43.37284723, "objects": [], "identifications": []}, {"id": "002129", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92356956, "longitude": -43.37383979, "objects": [], "identifications": []}, {"id": "001761", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.81/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958377, "longitude": -43.26524, "objects": [], "identifications": []}, {"id": "001118", "name": "BOULEVARD 28 DE SETEMBRO - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.26.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91369517, "longitude": -43.23550774, "objects": [], "identifications": []}, {"id": "004197", "name": "RUA AFONSO CAVALCANTI 20", "rtsp_url": "rtsp://admin:123smart@10.52.19.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.909937, "longitude": -43.202483, "objects": [], "identifications": []}, {"id": "003125", "name": "ESTR. CEL. PEDRO CORR\u00caA, 22 - FIXA", "rtsp_url": "rtsp://admin:7LANMSTR@10.50.106.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.965315, "longitude": -43.390481, "objects": [], "identifications": []}, {"id": "002301", "name": "AFR\u00c2NIO COSTA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.105.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00055929, "longitude": -43.33552018, "objects": [], "identifications": []}, {"id": "003723", "name": "RUA MARIA JOS\u00e9, 987 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87929497, "longitude": -43.35161386, "objects": [], "identifications": []}, {"id": "003447", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9130557, "longitude": -43.25192761, "objects": [], "identifications": []}, {"id": "004224", "name": "AV. DO PEP\u00ea 159", "rtsp_url": "rtsp://admin:123smart@10.50.106.107/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.014218, "longitude": -43.29786, "objects": [], "identifications": []}, {"id": "002163", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83972949, "longitude": -43.2392563, "objects": [], "identifications": []}, {"id": "003655", "name": "AV. PASTOR MARTIN LUTHER KING JUNIOR X R. CMTE. CLARE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.846218, "longitude": -43.327648, "objects": [], "identifications": []}, {"id": "003379", "name": "ESTR. DOS BANDEIRANTES, 13595-13257 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.203/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99182, "longitude": -43.451088, "objects": [], "identifications": []}, {"id": "001318", "name": "AV. ATL\u00c2NTICA N 18- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.215/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96978234, "longitude": -43.18191379, "objects": [], "identifications": []}, {"id": "003224", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES, 2595 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.875719, "longitude": -43.575257, "objects": [], "identifications": []}, {"id": "003175", "name": "AV. SALVADOR ALLENDE 4700", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.963908, "longitude": -43.394301, "objects": [], "identifications": []}, {"id": "001898", "name": "ESTR. DO MENDANHA, 2132 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.871624, "longitude": -43.554288, "objects": [], "identifications": []}, {"id": "003566", "name": "ESTR. DA CACUIA X R. MORAVIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.118/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80820096, "longitude": -43.18255613, "objects": [], "identifications": []}, {"id": "003807", "name": "AV. BRASIL X ESTA\u00e7\u00e3O PARADA DE LUCAS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81601941, "longitude": -43.30109938, "objects": [], "identifications": []}, {"id": "000790", "name": "AV. SALVADOR DE S\u00c1 X R. FREI CANECA (LARGO DO EST\u00c1CIO)", "rtsp_url": "rtsp://admin:admin@10.52.33.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913196, "longitude": -43.202951, "objects": [], "identifications": []}, {"id": "004131", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85344664, "longitude": -43.38448235, "objects": [], "identifications": []}, {"id": "001261", "name": "AV. LAURO SODR\u00c9, 191 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.28/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95385495, "longitude": -43.17866539, "objects": [], "identifications": []}, {"id": "003832", "name": "AV. PASTEUR X R. RAMON FRANCO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.21/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95446232, "longitude": -43.16744503, "objects": [], "identifications": []}, {"id": "002436", "name": "LEILA DINIZ- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.12.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953103, "longitude": -43.390691, "objects": [], "identifications": []}, {"id": "002401", "name": "CATEDRAL DO RECREIO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.2.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00362998, "longitude": -43.4337458, "objects": [], "identifications": []}, {"id": "003284", "name": "ESTRADA DO GALE\u00e3O PROX R. RIO DE JANEIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.96/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.81580995, "longitude": -43.22240442, "objects": [], "identifications": []}, {"id": "002462", "name": "AV SALVADOR ALLENDE EM FRENTE BRT - RIOCENTRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.6.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97611109, "longitude": -43.40580522, "objects": [], "identifications": []}, {"id": "001287", "name": "AV. ATL\u00c2NTICA X RUA SANTA CLARA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.192/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97347696, "longitude": -43.18581746, "objects": [], "identifications": []}, {"id": "004251", "name": "R. HON\u00d3RIO, 548", "rtsp_url": "rtsp://admin:123smart@10.52.211.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891765, "longitude": -43.282792, "objects": [], "identifications": []}, {"id": "002066", "name": "VILA QUEIROZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.29.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86152911, "longitude": -43.33050019, "objects": [], "identifications": []}, {"id": "001844", "name": "ESTR. DAS FURNAS, 3001 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.61/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.982523, "longitude": -43.295625, "objects": [], "identifications": []}, {"id": "002114", "name": "PRACA DO BANDOLIM - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.10.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95859639, "longitude": -43.38309386, "objects": [], "identifications": []}, {"id": "001246", "name": "AV. ATL\u00c2NTICA X CONSTANTE RAMOS - FIXA", "rtsp_url": "rtsp://10.52.252.87/", "update_interval": 120, "latitude": -22.975264, "longitude": -43.187382, "objects": [], "identifications": []}, {"id": "003374", "name": "ESTR. DOS BANDEIRANTES, 13833 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.198/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.988371, "longitude": -43.454566, "objects": [], "identifications": []}, {"id": "002149", "name": "PINTO TELES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.24.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88872955, "longitude": -43.34608448, "objects": [], "identifications": []}, {"id": "001039", "name": "R. SILVA RABELO 39 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.131/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90087673, "longitude": -43.28048183, "objects": [], "identifications": []}, {"id": "001321", "name": "AV. ATL\u00c2NTICA X RUA HIL\u00c1RIO DE GOUV\u00caIA - FIXA", "rtsp_url": "rtsp://10.52.252.111/", "update_interval": 120, "latitude": -22.970215, "longitude": -43.182637, "objects": [], "identifications": []}, {"id": "003260", "name": "MONUMENTO PEDRO I - PRA\u00e7A TIRADENTES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.907288, "longitude": -43.182869, "objects": [], "identifications": []}, {"id": "003207", "name": "AV. DAS AM\u00e9RICAS - PROX BRT INTERLAGOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.182/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0011545, "longitude": -43.41825536, "objects": [], "identifications": []}, {"id": "004024", "name": "AV. BRASIL, ALT. BRT IGREJINHA - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.32.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88939676, "longitude": -43.21918384, "objects": [], "identifications": []}, {"id": "003115", "name": "AV. MARACAN\u00c3, 1281 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.24.144/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92957837, "longitude": -43.24094689, "objects": [], "identifications": []}, {"id": "002238", "name": "PARQUE ESPERAN\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.54.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90682098, "longitude": -43.57206154, "objects": [], "identifications": []}, {"id": "000003", "name": "AV. PRES. VARGAS X P\u00c7A DA REP\u00daBLICA", "rtsp_url": "rtsp://admin2:7lanmstr@10.52.16.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.904902, "longitude": -43.190353, "objects": [], "identifications": []}, {"id": "002127", "name": "TAQUARA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.18.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9236394, "longitude": -43.37404468, "objects": [], "identifications": []}, {"id": "001862", "name": "ESTR. DAS FURNAS, 4087 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98474297, "longitude": -43.30035618, "objects": [], "identifications": []}, {"id": "001433", "name": "AV. NIEMEYER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.156/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000618, "longitude": -43.245103, "objects": [], "identifications": []}, {"id": "001372", "name": "AV. NOSSA SRA. DE COPACABANA, 68 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96381158, "longitude": -43.17406976, "objects": [], "identifications": []}, {"id": "003326", "name": "LARGO DA PAVUNA, 97 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.148/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80604516, "longitude": -43.36676706, "objects": [], "identifications": []}, {"id": "000724", "name": "AV. BRASIL X R. MARCOS DE MACEDO", "rtsp_url": "rtsp://admin:admin@10.52.208.59/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.843844, "longitude": -43.37525, "objects": [], "identifications": []}, {"id": "001920", "name": "ESTR. DO MENDANHA, 4517 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.205/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8625515, "longitude": -43.5420935, "objects": [], "identifications": []}, {"id": "001575", "name": "AV. FRANCISCO BICALHO - IML - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90634047, "longitude": -43.21024614, "objects": [], "identifications": []}, {"id": "001546", "name": "R. MANUEL MIRANDA, 57 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.250/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902372, "longitude": -43.265198, "objects": [], "identifications": []}, {"id": "001668", "name": "R. DONA TERESA, 161", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.40/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.893032, "longitude": -43.288075, "objects": [], "identifications": []}, {"id": "003989", "name": "ESTR. DOS BANDEIRANTES, 23551 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.52/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97982545, "longitude": -43.49144978, "objects": [], "identifications": []}, {"id": "003650", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 1020", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.214/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84734, "longitude": -43.3244, "objects": [], "identifications": []}, {"id": "004115", "name": "R. COXILHA, 60 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.78/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90381201, "longitude": -43.57356194, "objects": [], "identifications": []}, {"id": "003453", "name": "ESTRADA DOS BANDEIRANTES, 11632 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98933, "longitude": -43.436909, "objects": [], "identifications": []}, {"id": "002162", "name": "TERMINAL FUND\u00c3O - AROLDO MELODIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.45.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.83982343, "longitude": -43.23911415, "objects": [], "identifications": []}, {"id": "002449", "name": "BOI\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.16.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91543, "longitude": -43.39823, "objects": [], "identifications": []}, {"id": "003344", "name": "R. REP\u00faBLICA \u00c1RABE DA S\u00edRIA, 2289 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8041552, "longitude": -43.2045045, "objects": [], "identifications": []}, {"id": "002372", "name": "NOTRE DAME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.21.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02061049, "longitude": -43.5002661, "objects": [], "identifications": []}, {"id": "002056", "name": "VICENTE DE CARVALHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.32.06/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852557, "longitude": -43.312151, "objects": [], "identifications": []}, {"id": "001373", "name": "AV. NOSSA SRA. DE COPACABANA, AV PRINCESA ISABEL - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96402212, "longitude": -43.17374588, "objects": [], "identifications": []}, {"id": "000715", "name": "AV. BRASIL X R. GERICIN\u00d3", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.72/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85906, "longitude": -43.405754, "objects": [], "identifications": []}, {"id": "004067", "name": "ESTR. DOS BANDEIRANTES, 3300 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.173/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95363432, "longitude": -43.37574306, "objects": [], "identifications": []}, {"id": "003254", "name": "R. BENEDITO OTONI X R. SANTOS LIMA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.30.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.896795, "longitude": -43.216514, "objects": [], "identifications": []}, {"id": "001939", "name": "R. GEN. GUSTAVO CORDEIRO DE FARIAS, 571- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.6/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.897392, "longitude": -43.2381424, "objects": [], "identifications": []}, {"id": "001344", "name": "AV. HENRIQUE DODSWORTH, 54 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.976518, "longitude": -43.194384, "objects": [], "identifications": []}, {"id": "001033", "name": "RUA ANA BARBOSA N\u00ba12 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90179872, "longitude": -43.28070045, "objects": [], "identifications": []}, {"id": "004199", "name": "RUA ULYSSES GUIMAR\u00e3ES, 300 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.245.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91173012, "longitude": -43.20345721, "objects": [], "identifications": []}, {"id": "000462", "name": "ESTR. DO PORTELA X R. FIRMINO FRAGOSO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.47/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87055933, "longitude": -43.34197092, "objects": [], "identifications": []}, {"id": "004029", "name": "ESTR. DOS BANDEIRANTES, 2508 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94624569, "longitude": -43.37200516, "objects": [], "identifications": []}, {"id": "002076", "name": "MERCK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.16.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93540177, "longitude": -43.37173581, "objects": [], "identifications": []}, {"id": "000404", "name": "ESTRADA DO GALE\u00c3O X ALT. RUA VINTE DE JANEIRO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.145/Streaming/Channels/101?transportmode=unicast&profile=Profile_1", "update_interval": 120, "latitude": -22.822964, "longitude": -43.230965, "objects": [], "identifications": []}, {"id": "003309", "name": "AV. PADRE LEONEL FRANCA - TERMINAL DA PUC - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.176/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979047, "longitude": -43.230644, "objects": [], "identifications": []}, {"id": "000490", "name": "AV. SALVADOR ALLENDE (RIO CENTRO)", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.115/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981034, "longitude": -43.409686, "objects": [], "identifications": []}, {"id": "004011", "name": "ESTR. DOS BANDEIRANTES, 26971 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.64/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989425, "longitude": -43.503284, "objects": [], "identifications": []}, {"id": "003209", "name": "ROD. LUIZ HENRIQUE REZENDE NOVAES, 3941 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.184/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.868432, "longitude": -43.584167, "objects": [], "identifications": []}, {"id": "002481", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88484449, "longitude": -43.39936641, "objects": [], "identifications": []}, {"id": "003378", "name": "ESTR. DOS BANDEIRANTES, 13595-13257 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.202/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99172, "longitude": -43.451088, "objects": [], "identifications": []}, {"id": "003988", "name": "ESTR. DOS BANDEIRANTES, 23551 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.51/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9797631, "longitude": -43.49149269, "objects": [], "identifications": []}, {"id": "003546", "name": "RUA FERNANDES DA FONSECA - RIBEIRA 7", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.109/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82538, "longitude": -43.169337, "objects": [], "identifications": []}, {"id": "003766", "name": "AV. DOM H\u00e9LDER C\u00e2MARA 7765 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.229/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.886123, "longitude": -43.302425, "objects": [], "identifications": []}, {"id": "000121", "name": "PRA\u00c7A BADEN POWELL", "rtsp_url": "rtsp://admin:admin@10.52.37.186/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.981412, "longitude": -43.22647, "objects": [], "identifications": []}, {"id": "001766", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.247.86/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958669, "longitude": -43.267636, "objects": [], "identifications": []}, {"id": "001226", "name": "AV. NOSSA SRA DE COPACABANA X R. FIG. MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.196/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97024033, "longitude": -43.18610193, "objects": [], "identifications": []}, {"id": "002193", "name": "CESAR\u00c3O III - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.39.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93162, "longitude": -43.656978, "objects": [], "identifications": []}, {"id": "001432", "name": "AV. NIEMEYER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.155/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000616, "longitude": -43.245274, "objects": [], "identifications": []}, {"id": "000357", "name": "BOULEVARD 28 DE SETEMBRO X R. GONZAGA BASTOS", "rtsp_url": "rtsp://10.52.26.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915393, "longitude": -43.242037, "objects": [], "identifications": []}, {"id": "001967", "name": "AV. AUGUSTO SEVERO N 1755", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9146656, "longitude": -43.1762009, "objects": [], "identifications": []}, {"id": "002522", "name": "MERCAD\u00c3O - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.27.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87050319, "longitude": -43.33564924, "objects": [], "identifications": []}, {"id": "002082", "name": "TANQUE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.20.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91509607, "longitude": -43.36115194, "objects": [], "identifications": []}, {"id": "001412", "name": "AV. BR\u00c1S DE PINA X R. PE. ROSER X AV. MERITI (LARGO DO BIC\u00c3O) - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.141/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.839037, "longitude": -43.311611, "objects": [], "identifications": []}, {"id": "002340", "name": "SALVADOR ALLENDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.11.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00843517, "longitude": -43.4433858, "objects": [], "identifications": []}, {"id": "000747", "name": "R. GOI\u00c1S X R. GUINEZA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8954167, "longitude": -43.29856869, "objects": [], "identifications": []}, {"id": "002390", "name": "MAGAR\u00c7A - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.28.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96858351, "longitude": -43.62177073, "objects": [], "identifications": []}, {"id": "004103", "name": "AV. ATL\u00c2NTICA, 1702", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.35/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9677873, "longitude": -43.1787878, "objects": [], "identifications": []}, {"id": "003840", "name": "ESTR. DOS BANDEIRANTES, 24179 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97664, "longitude": -43.495579, "objects": [], "identifications": []}, {"id": "001193", "name": "AV. ATL\u00c2NTICA 4146 - FIXA", "rtsp_url": "rtsp://10.52.21.15/", "update_interval": 120, "latitude": -22.98510731, "longitude": -43.18899532, "objects": [], "identifications": []}, {"id": "001756", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957585, "longitude": -43.264546, "objects": [], "identifications": []}, {"id": "001238", "name": "AV. ATL\u00c2NTICA X R BOLIVAR - FIXA", "rtsp_url": "rtsp://10.52.252.94/", "update_interval": 120, "latitude": -22.976221, "longitude": -43.187967, "objects": [], "identifications": []}, {"id": "001587", "name": "AV. PRES. VARGAS, 2135 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.243/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9065088, "longitude": -43.19450859, "objects": [], "identifications": []}, {"id": "003100", "name": "AV. PASTOR MARTIN LUTHER KING J\u00daNIOR, 8888 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.241/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8274106, "longitude": -43.347624, "objects": [], "identifications": []}, {"id": "002078", "name": "MERCK - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.16.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93499704, "longitude": -43.37201499, "objects": [], "identifications": []}, {"id": "003445", "name": "T\u00faNEL NOEL ROSA SENT. DEL CASTILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91364458, "longitude": -43.25179475, "objects": [], "identifications": []}, {"id": "000713", "name": "AV. DUQUE DE CAXIAS X AV. GAL. GOMES CARNEIRO", "rtsp_url": "rtsp://admin:admin@10.52.208.79/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.862207, "longitude": -43.394428, "objects": [], "identifications": []}, {"id": "003534", "name": "PRAIA DO JEQUI\u00e1, 3- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.97/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82541349, "longitude": -43.17240039, "objects": [], "identifications": []}, {"id": "003331", "name": "PARQUE COL\u00faMBIA X AV CEL. PHIDIAS T\u00e1VORA- FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.808826, "longitude": -43.341769, "objects": [], "identifications": []}, {"id": "003194", "name": "AV. GLAUCIO GIL, 680 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.170/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.018927, "longitude": -43.459577, "objects": [], "identifications": []}, {"id": "001223", "name": "R. BARATA RIBEIRO, 450", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.163/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9692008, "longitude": -43.18674173, "objects": [], "identifications": []}, {"id": "003668", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 1250 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.231/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.833056, "longitude": -43.341346, "objects": [], "identifications": []}, {"id": "003829", "name": "AV. MEM DE S\u00e1, 30 - ARCOS DA LAPA | AQUEDUTO DA CARIOCA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91315888, "longitude": -43.1799138, "objects": [], "identifications": []}, {"id": "000293", "name": "AV. ATL\u00c2NTICA X R. MIGUEL LEMOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.196/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97817912, "longitude": -43.1885624, "objects": [], "identifications": []}, {"id": "003303", "name": "ESTR. DOS BANDEIRANTES,20265 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.113/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983681, "longitude": -43.470621, "objects": [], "identifications": []}, {"id": "000498", "name": "AV. CES\u00c1RIO DE MELLO X R. ADOLFO LEMOS", "rtsp_url": "rtsp://user:7lanmstr@10.52.208.14/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913834, "longitude": -43.59748, "objects": [], "identifications": []}, {"id": "000373", "name": "AV. DOM HELDER C\u00c2MARA X R. DA ABOLI\u00c7\u00c3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.91/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.884797, "longitude": -43.298447, "objects": [], "identifications": []}, {"id": "000085", "name": "R. DIAS DA CRUZ X R. ANA BARBOSA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.142/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902057, "longitude": -43.280339, "objects": [], "identifications": []}, {"id": "001572", "name": "AV. AYRTON SENNA, 2000 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.40/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9969612, "longitude": -43.3658624, "objects": [], "identifications": []}, {"id": "002249", "name": "GAST\u00c3O RANGEL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.34.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92777928, "longitude": -43.67731911, "objects": [], "identifications": []}, {"id": "002379", "name": "ILHA DE GUARATIBA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.24.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0094308, "longitude": -43.53987271, "objects": [], "identifications": []}, {"id": "003366", "name": "ESTR. DOS BANDEIRANTES, 14603-14485 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.190/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985465, "longitude": -43.460122, "objects": [], "identifications": []}, {"id": "001129", "name": "R. ANDR\u00c9 ROCHA X R. MAL. JOS\u00c9 BEVIL\u00c1QUA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.146/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92372071, "longitude": -43.36910034, "objects": [], "identifications": []}, {"id": "003336", "name": "PRA\u00e7A NOSSA SRA. DAS DORES, 232", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80883537, "longitude": -43.3698123, "objects": [], "identifications": []}, {"id": "002033", "name": "PENHA II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.39.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.842029, "longitude": -43.276621, "objects": [], "identifications": []}, {"id": "004027", "name": "ESTR. DOS BANDEIRANTES, 2091 - FIXA", "rtsp_url": "rtsp://user:123smart@10.50.106.217/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94420055, "longitude": -43.3720159, "objects": [], "identifications": []}, {"id": "004125", "name": "R. FRANCISCO PALHETA, 40", "rtsp_url": "rtsp://admin:123smart@10.52.32.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89062, "longitude": -43.2272, "objects": [], "identifications": []}, {"id": "001339", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS X BOTAFOGO - FIXA", "rtsp_url": "rtsp://10.52.34.131/", "update_interval": 120, "latitude": -22.94982805, "longitude": -43.18052206, "objects": [], "identifications": []}, {"id": "004032", "name": "ESTR. DOS BANDEIRANTES, 2593 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.220/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.948442, "longitude": -43.372597, "objects": [], "identifications": []}, {"id": "003748", "name": "RUA REINALDO MATOS REIS, 10 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.172/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88609403, "longitude": -43.28884014, "objects": [], "identifications": []}, {"id": "002457", "name": "SANTA CRUZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.36.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91710787, "longitude": -43.68353475, "objects": [], "identifications": []}, {"id": "003129", "name": "ESTR. VEREADOR ALCEU DE CARVALHO, 190", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.020425, "longitude": -43.492627, "objects": [], "identifications": []}, {"id": "001107", "name": "ESTR. DO CAMPINHO X ESTR. SANTA MARIA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.117/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89411486, "longitude": -43.58504097, "objects": [], "identifications": []}, {"id": "000266", "name": "R. DAS LARANJEIRAS X PRA\u00c7A DAVID BEN GURION", "rtsp_url": "rtsp://admin:7lanmstr@10.52.14.145/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.93817201, "longitude": -43.1906269, "objects": [], "identifications": []}, {"id": "001363", "name": "PRA\u00c7A BENEDITO CERQUEIRA, S/N - LAGOA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.240/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97662, "longitude": -43.197809, "objects": [], "identifications": []}, {"id": "000295", "name": "AV. N. SRA. DE COPACABANA X R. MIGUEL LEMOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.21.50/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.977952, "longitude": -43.190786, "objects": [], "identifications": []}, {"id": "003758", "name": "RUA GOI\u00e1S X RUA GUILHERMINA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.177/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895303, "longitude": -43.301011, "objects": [], "identifications": []}, {"id": "003751", "name": "AV. DOM H\u00e9LDER C\u00e2MARA X ALTURA LINHA AMARELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.99/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88484684, "longitude": -43.29069927, "objects": [], "identifications": []}, {"id": "003160", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 4 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96220181, "longitude": -43.19116781, "objects": [], "identifications": []}, {"id": "003539", "name": "PRAIA DO ZUMBI, 25 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.102/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82129583, "longitude": -43.17415738, "objects": [], "identifications": []}, {"id": "003980", "name": "R. CONDE DE BONFIM 301 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92336, "longitude": -43.2311, "objects": [], "identifications": []}, {"id": "003688", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, ALT. METRO NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.248/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87924338, "longitude": -43.27238555, "objects": [], "identifications": []}, {"id": "002121", "name": "RECANTO DAS PALMEIRAS - JARDIM SAO LUIZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.13.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94821246, "longitude": -43.37238414, "objects": [], "identifications": []}, {"id": "000055", "name": "AV. NELSON CARDOSO X ESTRADA DOS BANDEIRANTES - BRT", "rtsp_url": "rtsp://admin:admin@10.50.106.93/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.923148, "longitude": -43.373789, "objects": [], "identifications": []}, {"id": "004250", "name": "RUA PIAUI 119", "rtsp_url": "rtsp://admin:123smart@10.52.211.40/cam/realmonitor?channel=1&subtype=2&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89414126, "longitude": -43.28737618, "objects": [], "identifications": []}, {"id": "003632", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 2091 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.196/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.873479, "longitude": -43.287288, "objects": [], "identifications": []}, {"id": "001173", "name": "AV. ATL\u00c2NTICA X R. FIGUEIREDO DE MAGALH\u00c3ES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.73/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97176, "longitude": -43.184409, "objects": [], "identifications": []}, {"id": "004168", "name": "RUA HAROLDO L\u00d4BO, 400", "rtsp_url": "rtsp://admin:123smart@10.52.216.85/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8023177, "longitude": -43.2093106, "objects": [], "identifications": []}, {"id": "002217", "name": "ICURANA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.48.03/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915082, "longitude": -43.605526, "objects": [], "identifications": []}, {"id": "002207", "name": "SANTA EUG\u00caNIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.44.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.916755, "longitude": -43.63245, "objects": [], "identifications": []}, {"id": "000124", "name": "PRA\u00c7A TIRADENTES X AV. PASSOS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.17.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906274, "longitude": -43.18229, "objects": [], "identifications": []}, {"id": "000072", "name": "R. CONDE DE BONFIM X R. URUGUAI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.932703, "longitude": -43.241217, "objects": [], "identifications": []}, {"id": "004052", "name": "ESTR. DO MONTEIRO, 670 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.233/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925033, "longitude": -43.570476, "objects": [], "identifications": []}, {"id": "001701", "name": "ESTR. VELHA DA TIJUCA, 1251 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.955542, "longitude": -43.265244, "objects": [], "identifications": []}, {"id": "003386", "name": "ESTR. DOS BANDEIRANTES, 12310 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.210/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990033, "longitude": -43.443091, "objects": [], "identifications": []}, {"id": "001970", "name": "ESTR. DO PONTAL, 1100 - RECREIO DOS BANDEIRANTES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.03338719, "longitude": -43.49205107, "objects": [], "identifications": []}, {"id": "001660", "name": "R. PROF. EUR\u00cdCO RAB\u00caLO, 177 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.139/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912978, "longitude": -43.232722, "objects": [], "identifications": []}, {"id": "001210", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://10.52.252.121/", "update_interval": 120, "latitude": -22.98075439, "longitude": -43.18962618, "objects": [], "identifications": []}, {"id": "000114", "name": "AV. BORGES DE MEDEIROS ALTURA DA R. J. J. SEABRA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96485, "longitude": -43.21552, "objects": [], "identifications": []}, {"id": "001975", "name": "ESTR. VER. ALCEU DE CARVALHO, 902 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.222/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.02558292, "longitude": -43.4925374, "objects": [], "identifications": []}, {"id": "001754", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.74/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.956703, "longitude": -43.26591, "objects": [], "identifications": []}, {"id": "001147", "name": "R. IBIAPINA X R. MONSENHOR ALVES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.76/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84186379, "longitude": -43.27420118, "objects": [], "identifications": []}, {"id": "003795", "name": "PRA\u00e7A SIB\u00e9LUIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97840648, "longitude": -43.22674309, "objects": [], "identifications": []}, {"id": "002349", "name": "GUIGNARD - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.13.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01077161, "longitude": -43.45225572, "objects": [], "identifications": []}, {"id": "003161", "name": "T\u00faNEL VELHO SENT. BOTAFOGO - 5 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96182065, "longitude": -43.19105804, "objects": [], "identifications": []}, {"id": "003819", "name": "AV. CES\u00e1RIO DE MELO, 4158 X BRT PARQUE ESPERAN\u00e7A", "rtsp_url": "rtsp://admin:7lanmstr@10.151.54.05/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90678137, "longitude": -43.57211049, "objects": [], "identifications": []}, {"id": "002308", "name": "RICARDO MARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.103.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00021272, "longitude": -43.34622113, "objects": [], "identifications": []}, {"id": "001386", "name": "R. DIAS DA CRUZ X R. ANA BARBOSA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.129/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90204711, "longitude": -43.28024646, "objects": [], "identifications": []}, {"id": "003824", "name": "AV. JOAQUIM MAGALH\u00e3ES, 2 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.23/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89216675, "longitude": -43.52918524, "objects": [], "identifications": []}, {"id": "002190", "name": "CESAR\u00c3O II - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.38.03/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.933539, "longitude": -43.662207, "objects": [], "identifications": []}, {"id": "002488", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.10/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88398453, "longitude": -43.3998827, "objects": [], "identifications": []}, {"id": "000127", "name": "AV. ARMANDO LOMBARDI ACESSO BARRA POINT", "rtsp_url": "rtsp://10.50.106.98/127-VIDEO", "update_interval": 120, "latitude": -23.0066676, "longitude": -43.30903886, "objects": [], "identifications": []}, {"id": "001266", "name": "AV. ALFREDO BALTAZAR DA SILVEIRA X AV. PEDRO MOURA - FIXA", "rtsp_url": "rtsp://10.52.209.120/", "update_interval": 120, "latitude": -23.01793098, "longitude": -43.4507247, "objects": [], "identifications": []}, {"id": "004055", "name": "ESTR. DO MONTEIRO, 2 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.236/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92879, "longitude": -43.573596, "objects": [], "identifications": []}, {"id": "001516", "name": "AV. MERITI, 2114 - BR\u00c1S DE PINA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.836601, "longitude": -43.308891, "objects": [], "identifications": []}, {"id": "001424", "name": "AV. NIEMEYER 204B - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.994778, "longitude": -43.234833, "objects": [], "identifications": []}, {"id": "001059", "name": "PRA\u00c7A JARDIM DO M\u00c9IER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90018106, "longitude": -43.27859743, "objects": [], "identifications": []}, {"id": "003997", "name": "RUA CONDE DE BONFIM, 703-697 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.244.128/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.932398, "longitude": -43.240868, "objects": [], "identifications": []}, {"id": "000381", "name": "R. ARISTIDES CAIRE X R. CAPIT\u00c3O REZENDE", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895291, "longitude": -43.274074, "objects": [], "identifications": []}, {"id": "002223", "name": "INHOA\u00cdBA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.50.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.913215, "longitude": -43.595354, "objects": [], "identifications": []}, {"id": "001269", "name": "AV. LUCIO COSTA X AV. DO CONTORNO (FINAL DO ECO ORLA) - FIXA", "rtsp_url": "rtsp://10.52.209.123/", "update_interval": 120, "latitude": -23.02245848, "longitude": -43.4475888, "objects": [], "identifications": []}, {"id": "001659", "name": "R. PROF. EURICO RABELO, 51 BILHETERIA 2 DO MARACAN\u00c3 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.136/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914711, "longitude": -43.229761, "objects": [], "identifications": []}, {"id": "003669", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 8395 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.232/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.843194, "longitude": -43.333895, "objects": [], "identifications": []}, {"id": "001141", "name": "AV. BORGES DE MEDEIROS X PARQUE DOS PATINS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.11.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97015701, "longitude": -43.21741533, "objects": [], "identifications": []}, {"id": "002338", "name": "PONT\u00d5ES/BARRASUL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.10.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00561029, "longitude": -43.43223424, "objects": [], "identifications": []}, {"id": "001401", "name": "R. MARIO CARVALHO X AV. PST M. LUTHER KING JR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.153/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85220167, "longitude": -43.31612186, "objects": [], "identifications": []}, {"id": "000064", "name": "AV. AM\u00c9RICAS X ESTA\u00c7\u00c3O BRT AFR\u00c2NIO COSTA", "rtsp_url": "rtsp://admin:admin@10.50.106.19/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000824, "longitude": -43.331445, "objects": [], "identifications": []}, {"id": "003679", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR , ALT. SHOP. NOVA AMERICA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.239/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879834, "longitude": -43.27039, "objects": [], "identifications": []}, {"id": "004193", "name": "AV. SALVADOR DE S\u00e1, 214", "rtsp_url": "rtsp://admin:7lanmstr@10.52.33.25/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.911943, "longitude": -43.202715, "objects": [], "identifications": []}, {"id": "003437", "name": "R. REP\u00faBLICA \u00c1RABE DA S\u00edRIA, 2716", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.252/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80473162, "longitude": -43.20805224, "objects": [], "identifications": []}, {"id": "002026", "name": "PENHA I PARADOR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.38.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84142691, "longitude": -43.27735112, "objects": [], "identifications": []}, {"id": "003290", "name": "PRA\u00e7A PADRE C\u00edCERO X R. CAMPO DE S\u00e3O CRIST\u00f3V\u00e3O", "rtsp_url": "rtsp://admin:7lanmstr@10.52.32.5/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89673643, "longitude": -43.22126191, "objects": [], "identifications": []}, {"id": "002498", "name": "TERMINAL JD. OCE\u00c2NICO- BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.108.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.0066313, "longitude": -43.31200859, "objects": [], "identifications": []}, {"id": "000306", "name": "AV. PASTEUR X R. VENCESLAU", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.17/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95134, "longitude": -43.175154, "objects": [], "identifications": []}, {"id": "003627", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.863936, "longitude": -43.306273, "objects": [], "identifications": []}, {"id": "003568", "name": "PRAIA DA OLARIA X R. MAREANTE - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.120/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80545516, "longitude": -43.18115732, "objects": [], "identifications": []}, {"id": "001429", "name": "AV. NIEMEYER 359 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99667, "longitude": -43.236511, "objects": [], "identifications": []}, {"id": "001774", "name": "AV. \u00c9DISON PASSOS, 4272", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.94/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96040846, "longitude": -43.27018003, "objects": [], "identifications": []}, {"id": "000109", "name": "R. IBIAPINA X R. TOMAZ RIBEIRO - BRT", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.85/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.84268, "longitude": -43.271842, "objects": [], "identifications": []}, {"id": "000126", "name": "AUTOESTRADA LAGOA-BARRA X R. MARIA LUIZA PITANGA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.012415, "longitude": -43.293128, "objects": [], "identifications": []}, {"id": "004092", "name": "AV. ATL\u00e2NTICA, 22 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.31.42/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.966379, "longitude": -43.17618, "objects": [], "identifications": []}, {"id": "002201", "name": "CESARINHO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.42.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.920447, "longitude": -43.643516, "objects": [], "identifications": []}, {"id": "004235", "name": "R. CONDE DE LEOPOLDINA, 432", "rtsp_url": "rtsp://admin:123smart@10.52.32.30/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.891665, "longitude": -43.220498, "objects": [], "identifications": []}, {"id": "001354", "name": "COPACABANA PROX. POSTO 5 - FIXA", "rtsp_url": "rtsp://10.52.252.171/", "update_interval": 120, "latitude": -22.98054127, "longitude": -43.18910536, "objects": [], "identifications": []}, {"id": "001663", "name": "AV. RADIAL OESTE, 2088", "rtsp_url": "rtsp://admin:7lanmstr@10.52.252.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.910937, "longitude": -43.226156, "objects": [], "identifications": []}, {"id": "000369", "name": "R. CONDE DE BONFIM X R. DOS ARA\u00daJOS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.7/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925154, "longitude": -43.225606, "objects": [], "identifications": []}, {"id": "003846", "name": "PRA\u00e7A ITAPEVI - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902568, "longitude": -43.293274, "objects": [], "identifications": []}, {"id": "001352", "name": "AV. DAS NA\u00c7\u00d5ES UNIDAS - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.34.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95062486, "longitude": -43.17995823, "objects": [], "identifications": []}, {"id": "002493", "name": "TERMINAL SULACAP - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.18.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88470113, "longitude": -43.39997387, "objects": [], "identifications": []}, {"id": "003722", "name": "RUA MARIA JOS\u00e9, 987 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.238/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.879379, "longitude": -43.351638, "objects": [], "identifications": []}, {"id": "003616", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X RUA ITAPUCA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.180/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86402737, "longitude": -43.30732944, "objects": [], "identifications": []}, {"id": "003318", "name": "RIO MARACAN\u00e3 ALT. DA R. DEPUTADO SOARES FILHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.25.132/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.918432, "longitude": -43.232287, "objects": [], "identifications": []}, {"id": "000174", "name": "AV. DAS AMERICAS X NOVO LEBLON", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000582, "longitude": -43.382231, "objects": [], "identifications": []}, {"id": "001216", "name": "R. REAL GRANDEZA, 384 - BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.165/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95974357, "longitude": -43.1909156, "objects": [], "identifications": []}, {"id": "003742", "name": "PRA\u00e7A WALDIR VIEIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.75/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91231, "longitude": -43.388107, "objects": [], "identifications": []}, {"id": "000094", "name": "LARGO DA CANCELA X R. S\u00c3O LUIZ GONZAGA", "rtsp_url": "rtsp://admin:admin@10.52.210.147/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90029, "longitude": -43.225348, "objects": [], "identifications": []}, {"id": "002424", "name": "ASA BRANCA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.11.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96306548, "longitude": -43.39356192, "objects": [], "identifications": []}, {"id": "004005", "name": "RUA CONDE DE BONFIM, 425 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.212/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925821, "longitude": -43.234967, "objects": [], "identifications": []}, {"id": "001397", "name": "R. MARQU\u00caS DE ABRANTES X ALTURA DA P.DE BOTAFOGO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.35.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94092884, "longitude": -43.17873851, "objects": [], "identifications": []}, {"id": "001717", "name": "AV. \u00c9DISON PASSOS, 565-515 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.41/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.947475, "longitude": -43.259279, "objects": [], "identifications": []}, {"id": "000325", "name": "R. VISC. SILVA X LARGO DO IBAM", "rtsp_url": "rtsp://admin:admin@10.52.12.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.958226, "longitude": -43.196848, "objects": [], "identifications": []}, {"id": "003814", "name": "AV. CES\u00e1RIO DE MELO, 276 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.216.15/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89327411, "longitude": -43.53955187, "objects": [], "identifications": []}, {"id": "003750", "name": "AV. DOM H\u00e9LDER C\u00e2MARA X ALTURA LINHA AMARELA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.216/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.884748, "longitude": -43.29071, "objects": [], "identifications": []}, {"id": "002274", "name": "TERMINAL CAMPO GRANDE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.56.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90169173, "longitude": -43.55449447, "objects": [], "identifications": []}, {"id": "001413", "name": "VD. PREF. NEGR\u00c3O DE LIMA X ESTA\u00c7\u00c3O BRT MADUREIRA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.58/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87761719, "longitude": -43.33638936, "objects": [], "identifications": []}, {"id": "000418", "name": "R. LEOPOLDINA REGO X R. DR. ALFREDO BARCELOS", "rtsp_url": "rtsp://10.52.210.81/418-VIDEO", "update_interval": 120, "latitude": -22.847387, "longitude": -43.265759, "objects": [], "identifications": []}, {"id": "001653", "name": "ESTR. DO MENDANHA, 651 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.175/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.883682, "longitude": -43.556782, "objects": [], "identifications": []}, {"id": "003777", "name": "PASSARELA ENGENH\u00e3O - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.90/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.895152, "longitude": -43.295265, "objects": [], "identifications": []}, {"id": "003370", "name": "ESTR. DOS BANDEIRANTES, 14040 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.194/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.987046, "longitude": -43.456313, "objects": [], "identifications": []}, {"id": "002002", "name": "GLAUCIO GIL - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.14.4/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01242, "longitude": -43.45847, "objects": [], "identifications": []}, {"id": "001885", "name": "PRACA JARDIM DO M\u00c9IER - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.105/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.90015, "longitude": -43.278465, "objects": [], "identifications": []}, {"id": "001667", "name": "GALP\u00c3O DO ENGENH\u00c3O - R. JOS\u00c9 DOS REIS", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.894555, "longitude": -43.295494, "objects": [], "identifications": []}, {"id": "000093", "name": "R. SENADOR BERNARDO MONTEIRO X R. S\u00c3O LUIZ GONZAGA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.892969, "longitude": -43.239578, "objects": [], "identifications": []}, {"id": "001415", "name": "AV. NIEMEYER 54 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.140/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.990761, "longitude": -43.22956, "objects": [], "identifications": []}, {"id": "002329", "name": "RIO MAR - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.6.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00000006, "longitude": -43.40656574, "objects": [], "identifications": []}, {"id": "002123", "name": "RECANTO DAS PALMEIRAS - JARDIM SAO LUIZ - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.13.04/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.94859265, "longitude": -43.3724939, "objects": [], "identifications": []}, {"id": "003282", "name": "ESTR. DO GALE\u00e3O X AV. QUATRO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.94/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.82001445, "longitude": -43.22697693, "objects": [], "identifications": []}, {"id": "000613", "name": "POSTO 7", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.133/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.989201, "longitude": -43.191494, "objects": [], "identifications": []}, {"id": "004089", "name": "ESTR. DO MONTEIRO, 11 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.245/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91426413, "longitude": -43.5632458, "objects": [], "identifications": []}, {"id": "003105", "name": "R. SARGENTO ANT\u00d4NIO ERNESTO.", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.246/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.80749956, "longitude": -43.35605595, "objects": [], "identifications": []}, {"id": "000318", "name": "R. GAL. POLIDORO X R. DA PASSAGEM", "rtsp_url": "rtsp://admin:cor12345@10.52.13.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95212, "longitude": -43.182288, "objects": [], "identifications": []}, {"id": "003548", "name": "MONUMENTO GENERAL OS\u00d3RIO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.15.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.902897, "longitude": -43.174804, "objects": [], "identifications": []}, {"id": "002517", "name": "TERMINAL PAULO PORTELA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.50.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.87756946, "longitude": -43.33695457, "objects": [], "identifications": []}, {"id": "000282", "name": "AV. N. SRA. DE COPACABANA X R. HIL\u00c1RIO DE GOUVEIA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.39.133/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.968746, "longitude": -43.183737, "objects": [], "identifications": []}, {"id": "003401", "name": "R. FIGUEIREDO CAMARGO X R. SIDNEI", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8715036, "longitude": -43.4557122, "objects": [], "identifications": []}, {"id": "000031", "name": "AV. VIEIRA SOUTO X RUA RAINHA ELIZABETH", "rtsp_url": "rtsp://admin:7lanmstr@10.52.22.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.986892, "longitude": -43.197786, "objects": [], "identifications": []}, {"id": "000263", "name": "PRAIA DE BOTAFOGO X R. PROF. ALFREDO GOMES", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.12/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.947694, "longitude": -43.182621, "objects": [], "identifications": []}, {"id": "004102", "name": "AV. ATL\u00c2NTICA, 7 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.31.49/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96749136, "longitude": -43.17817565, "objects": [], "identifications": []}, {"id": "003340", "name": "ESTRADA DO GALE\u00e3O X RUA IACO", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.162/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8136348, "longitude": -43.1894917, "objects": [], "identifications": []}, {"id": "003275", "name": "T\u00faNEL PREFEITO S\u00e1 FREIRE ALVIM 03 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.202/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.97923, "longitude": -43.19306, "objects": [], "identifications": []}, {"id": "001646", "name": "RUA VOLUNT\u00c1RIOS DA P\u00c1TRIA E/F 190 - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.52.13.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.953112, "longitude": -43.189045, "objects": [], "identifications": []}, {"id": "001564", "name": "COMLURB - R. S\u00c3O CLEMENTE, 47 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.13.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.949332, "longitude": -43.183939, "objects": [], "identifications": []}, {"id": "003729", "name": "AV. ERNANI CARDOSO, 240 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.219/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88244811, "longitude": -43.33545841, "objects": [], "identifications": []}, {"id": "000040", "name": "PRA\u00c7A TIRADENTES", "rtsp_url": "rtsp://admin:admin@10.52.17.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906984, "longitude": -43.182051, "objects": [], "identifications": []}, {"id": "002364", "name": "GUIOMAR NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.18.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01857266, "longitude": -43.48288696, "objects": [], "identifications": []}, {"id": "002216", "name": "ICURANA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.48.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915123, "longitude": -43.605826, "objects": [], "identifications": []}, {"id": "004063", "name": "ESTR. DO MONTEIRO, 206 - FIXA", "rtsp_url": "rtsp://user:123smart@10.52.216.244/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9121137, "longitude": -43.56476241, "objects": [], "identifications": []}, {"id": "000738", "name": "AV. VICENTE DE CARVALHO X R. SOLDADO SERVINO MENGAROA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.254/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.847473, "longitude": -43.305032, "objects": [], "identifications": []}, {"id": "002433", "name": "OUTEIRO SANTO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.15.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.928209, "longitude": -43.395845, "objects": [], "identifications": []}, {"id": "002409", "name": "OLOF PALME - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.5.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.98180178, "longitude": -43.41019139, "objects": [], "identifications": []}, {"id": "001241", "name": "AV. ATL\u00c2NTICA X R. XAVIER DA SILVEIRA - FIXA", "rtsp_url": "rtsp://10.52.252.97/", "update_interval": 120, "latitude": -22.976967, "longitude": -43.188076, "objects": [], "identifications": []}, {"id": "000283", "name": "AV. NOSSA SENHORA DE COPACABANA X REPUBLICA NO PERU", "rtsp_url": "rtsp://admin:7lanmstr@10.52.39.134/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96739308, "longitude": -43.18194752, "objects": [], "identifications": []}, {"id": "001695", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.26/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951593, "longitude": -43.25919, "objects": [], "identifications": []}, {"id": "000517", "name": "AV. CES\u00c1RIO DE MELLO X VIADUTO DE PACI\u00caNCIA", "rtsp_url": "rtsp://user:7lanmstr@10.52.208.13/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.915809, "longitude": -43.628979, "objects": [], "identifications": []}, {"id": "003253", "name": "R. GEN. ROCA, 894", "rtsp_url": "rtsp://admin:7lanmstr@10.50.224.150/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.92391641, "longitude": -43.23449197, "objects": [], "identifications": []}, {"id": "003601", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR X R. ENG. MARIO CARVALHO - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.169/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.852564, "longitude": -43.315701, "objects": [], "identifications": []}, {"id": "001685", "name": "R. MAL. PILSUDSKI, 94 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.16/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.946085, "longitude": -43.258206, "objects": [], "identifications": []}, {"id": "001783", "name": "PRA\u00c7A AFONSO VISEU - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.151/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96140364, "longitude": -43.27338554, "objects": [], "identifications": []}, {"id": "004258", "name": "R. MANOEL VITORINO, 57", "rtsp_url": "rtsp://admin:123smart@10.52.216.2/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8953457, "longitude": -43.30295273, "objects": [], "identifications": []}, {"id": "004246", "name": "R. AMARO CAVALCANTI, 975 X VIADUTO DE TODOS OS SANTOS", "rtsp_url": "rtsp://admin:123smart@10.52.211.36/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89726351, "longitude": -43.28582696, "objects": [], "identifications": []}, {"id": "002359", "name": "BENVINDO DE NOVAES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.15.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.01436015, "longitude": -43.46682487, "objects": [], "identifications": []}, {"id": "001603", "name": "AV. PRES. VARGAS, 1733 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.19.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.906054, "longitude": -43.192677, "objects": [], "identifications": []}, {"id": "003774", "name": "RUA HENRIQUE SCHEID, N\u00ba 580", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.79/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88724442, "longitude": -43.2880453, "objects": [], "identifications": []}, {"id": "001199", "name": "AV. ATL\u00c2NTICA, 4240 - FIXA", "rtsp_url": "rtsp://10.52.21.17/", "update_interval": 120, "latitude": -22.986276, "longitude": -43.188942, "objects": [], "identifications": []}, {"id": "001437", "name": "AV. NIEMEYER 400 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.37.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.000065, "longitude": -43.241909, "objects": [], "identifications": []}, {"id": "004043", "name": "ESTR. DOS BANDEIRANTES, 3786 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.226/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.951027, "longitude": -43.373808, "objects": [], "identifications": []}, {"id": "002444", "name": "MARECHAL FONTENELLE - EXPRESSO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.17.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.887184, "longitude": -43.40087, "objects": [], "identifications": []}, {"id": "003365", "name": "ESTR. DOS BANDEIRANTES, 13840 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.189/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.984779, "longitude": -43.460939, "objects": [], "identifications": []}, {"id": "002510", "name": "TERMINAL ALVORADA - BRT - FIXA", "rtsp_url": "rtsp://user:7lanmstr@10.152.1.8/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00146133, "longitude": -43.36529866, "objects": [], "identifications": []}, {"id": "001971", "name": "ESTR. VER. ALCEU DE CARVALHO, 126", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.220/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.032262, "longitude": -43.492225, "objects": [], "identifications": []}, {"id": "003244", "name": "ESTR. DOS BANDEIRANTES, 8325 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.209.209/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.99282561, "longitude": -43.44777903, "objects": [], "identifications": []}, {"id": "001120", "name": "RUA S\u00c3O FRANCISCO XAVIER 478 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.26.135/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.91340611, "longitude": -43.23527841, "objects": [], "identifications": []}, {"id": "001115", "name": "MONUMENTO PORT\u00c3O DA QUINTA DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.28.138/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9048972, "longitude": -43.22047886, "objects": [], "identifications": []}, {"id": "002196", "name": "VILA PACI\u00caNCIA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.40.03/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.928256, "longitude": -43.653555, "objects": [], "identifications": []}, {"id": "001253", "name": "AV. LAURO SODR\u00c9 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.38.5/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95730728, "longitude": -43.17764302, "objects": [], "identifications": []}, {"id": "004141", "name": "TERMINAL DEODORO T\u00c9RREO - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.153.22.45/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.85388406, "longitude": -43.38354218, "objects": [], "identifications": []}, {"id": "003531", "name": "ESTR. DO RIO JEQUI\u00e1 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.92/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.820521, "longitude": -43.179965, "objects": [], "identifications": []}, {"id": "003362", "name": "ESTR. DOS BANDEIRANTES, 14732-14772 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.186/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.983833, "longitude": -43.461807, "objects": [], "identifications": []}, {"id": "000066", "name": "R. ARMANDO LOMBARDI X AV. MIN. IVAN LINS", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.007514, "longitude": -43.304474, "objects": [], "identifications": []}, {"id": "004187", "name": "PRAIA DA GUANABARA, 535 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.52.216.104/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.79356599, "longitude": -43.17016695, "objects": [], "identifications": []}, {"id": "003660", "name": "AV. PASTOR MARTIN LUTHER KING J\u00faNIOR, 7269 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.223/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.86566, "longitude": -43.30442, "objects": [], "identifications": []}, {"id": "001705", "name": "ALTO DA BOA VISTA - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.247.34/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.957254, "longitude": -43.267586, "objects": [], "identifications": []}, {"id": "002335", "name": "PEDRA DE ITA\u00daNA - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.9.4/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -23.00291775, "longitude": -43.42403134, "objects": [], "identifications": []}, {"id": "002198", "name": "TR\u00caS PONTES - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.151.41.02/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.925685, "longitude": -43.650038, "objects": [], "identifications": []}, {"id": "004241", "name": "R. DEGAS X R. CACHAMBI", "rtsp_url": "rtsp://admin:123smart@10.52.211.18/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.88340619, "longitude": -43.27990169, "objects": [], "identifications": []}, {"id": "001221", "name": "R. TONELERO X R. FIGUEIREDO MAGALHAES - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.20.152/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.96790369, "longitude": -43.18778206, "objects": [], "identifications": []}, {"id": "001634", "name": "ESTR. DA CACHAMORRA X R. OLINDA ELLIS - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.158/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.914529, "longitude": -43.550027, "objects": [], "identifications": []}, {"id": "000200", "name": "ESTR. CEL. PEDRO CORR\u00caA X ESTA\u00c7\u00c3O BRT PEDRO CORR\u00caA", "rtsp_url": "rtsp://admin:7lanmstr@10.50.106.20/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.967397, "longitude": -43.390732, "objects": [], "identifications": []}, {"id": "003507", "name": "ESTR. DOS BANDEIRANTES, 275 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.211.60/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.979051, "longitude": -43.419163, "objects": [], "identifications": []}, {"id": "003286", "name": "ESTRADA DO GALE\u00e3O, 837", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.98/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.8096719, "longitude": -43.2156804, "objects": [], "identifications": []}, {"id": "003367", "name": "ESTR. DOS BANDEIRANTES, 14603-14485 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.210.191/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.985565, "longitude": -43.460122, "objects": [], "identifications": []}, {"id": "003403", "name": "R. GEN. GUSTAVO CORDEIRO DE FARIAS, 346", "rtsp_url": "rtsp://admin:7lanmstr@10.52.29.10/cam/realmonitor?channel=1&subtype=1&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.89658355, "longitude": -43.23965004, "objects": [], "identifications": []}, {"id": "001609", "name": "AV. GOMES FREIRE, 758 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.18.11/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.912689, "longitude": -43.183125, "objects": [], "identifications": []}, {"id": "004079", "name": "ESTR. DOS BANDEIRANTES, 4926 - FIXA", "rtsp_url": "rtsp://admin:123smart@10.50.106.166/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.95950357, "longitude": -43.38790395, "objects": [], "identifications": []}, {"id": "001914", "name": "ESTRADA RIO S\u00c3O PAULO, 1115 - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.52.208.199/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.889992, "longitude": -43.566186, "objects": [], "identifications": []}, {"id": "002137", "name": "IPASE - BRT - FIXA", "rtsp_url": "rtsp://admin:7lanmstr@10.152.21.3/cam/realmonitor?channel=1&subtype=0&unicast=true&proto=Onvif", "update_interval": 120, "latitude": -22.9050023, "longitude": -43.35715962, "objects": [], "identifications": []}] \ No newline at end of file